* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "EditorsNoteRegular";
  src: url("https://pub-ff4e13f8831046b685884cc06b487236.r2.dev/Fonts/font.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  background: #fff9f0;
  color: #07141f;
}

html {
  scroll-behavior: smooth;
}

main {
  flex: 1;
}

.sukie-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem 1rem 1rem;
  font-family: "EditorsNoteRegular", sans-serif;
  font-size: clamp(0.5rem, 2vw, 0.8rem);
  margin: 50px;
  font-weight: 400;
}

.sukie-intro h2 {
  max-width: 1000px;
}

.sukie-collection-title {
  display: flex;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 50px;
  justify-content: center;
  align-items: center;
  color: #0a457b;
}

.sukie-features-container {
  background: #ffeab5;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 100px 0px 40px 0px;
}

.sukie-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}

.sukie-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sukie-icon svg {
  width: 100%;
  height: 100%;
  color: #1a4d7a;
}

.sukie-feature-text {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .sukie-intro {
    padding: 1rem 1rem 1rem 1rem;
    margin: 30px 10px 30px 10px;
  }
  .sukie-features-container {
    margin: 60px 0px 40px 0px;
    flex-direction: column;
    gap: 30px;
  }

  .sukie-feature-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    background: rgba(26, 77, 122, 0.2);
    margin: 30px auto 0;
  }
}

/* ========================================
   IMPROVED GALLERY SECTION
   ======================================== */

.sukie-gallery-section {
  min-height: 300vh;
  background: linear-gradient(135deg, #0a1929 0%, #162338 100%);
  position: relative;
}

.sukie-gallery-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
}

.sukie-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.sukie-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sukie-slide.exiting {
  opacity: 0;
  transform: translateY(-20px);
}

.sukie-slide-content {
  display: flex;
  gap: 3rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
}

.sukie-text-content {
  color: white;
  max-width: 450px;
  flex-shrink: 0;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.sukie-slide.active .sukie-text-content {
  transform: translateX(0);
  opacity: 1;
}

.sukie-collection-number {
  font-size: 0.65rem;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.6;
  color: #ffeab5;
}

.sukie-main-title {
  font-family: "EditorsNoteRegular", sans-serif;
  font-size: 4.5rem;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffeab5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sukie-subtitle {
  font-size: 0.9rem;
  letter-spacing: 5px;
  margin-bottom: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.6;
}

.sukie-price {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.sukie-cta-button {
  display: inline-block;
  padding: 1.3rem 3.5rem;
  border: 1px solid rgba(255, 234, 181, 0.3);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.7rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

.sukie-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 234, 181, 0.2), transparent);
  transition: left 0.5s ease;
}

.sukie-cta-button:hover::before {
  left: 100%;
}

.sukie-cta-button:hover {
  background: rgba(255, 234, 181, 0.1);
  border-color: #ffeab5;
  box-shadow: 0 10px 30px rgba(255, 234, 181, 0.2);
}

.sukie-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  transform: translateX(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.sukie-slide.active .sukie-image-content {
  transform: translateX(0);
  opacity: 1;
}

.sukie-image-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  max-width: 350px;
  width: 100%;
  border-radius: 4px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sukie-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 234, 181, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.sukie-image-wrapper:hover::after {
  opacity: 1;
}

.sukie-image-wrapper:hover {
  transform: scale(1.02);
}

.sukie-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sukie-image-wrapper:hover img {
  transform: scale(1.05);
}

.sukie-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.sukie-scroll-dots {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.sukie-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.sukie-dot:hover {
  background: rgba(255, 234, 181, 0.6);
  transform: scale(1.2);
}

.sukie-dot.active {
  background: #ffeab5;
  transform: scale(1.3);
}

.sukie-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 234, 181, 0.6), transparent);
  animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
  0%, 100% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Progress bar */
.sukie-progress-bar {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.sukie-progress-item {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.4s ease;
}

.sukie-progress-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #ffeab5;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sukie-progress-item.active::after {
  height: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .sukie-slide-content {
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .sukie-main-title {
    font-size: 4rem;
  }

  .sukie-image-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 1200px) {
  .sukie-main-title {
    font-size: 3.5rem;
  }

  .sukie-image-wrapper {
    max-width: 320px;
  }

  .sukie-text-content {
    max-width: 400px;
  }

  .sukie-slide-content {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .sukie-slide-content {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
  }

  .sukie-text-content {
    text-align: center;
    max-width: 100%;
    transform: translateY(-20px);
  }

  .sukie-slide.active .sukie-text-content {
    transform: translateY(0);
  }

  .sukie-main-title {
    font-size: 4.5rem;
  }

  .sukie-image-content {
    justify-content: center;
    transform: translateY(20px);
  }

  .sukie-slide.active .sukie-image-content {
    transform: translateY(0);
  }

  .sukie-image-wrapper {
    max-width: 350px;
  }

  .sukie-progress-bar {
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sukie-main-title {
    font-size: 3.5rem;
  }

  .sukie-price {
    font-size: 1.8rem;
  }

  .sukie-subtitle {
    font-size: 0.8rem;
    margin-bottom: 2rem;
  }

  .sukie-image-wrapper {
    max-width: 300px;
  }

  .sukie-progress-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .sukie-main-title {
    font-size: 2.8rem;
    letter-spacing: -2px;
  }

  .sukie-price {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .sukie-cta-button {
    padding: 1.1rem 2.5rem;
    font-size: 0.65rem;
  }

  .sukie-image-wrapper {
    max-width: 280px;
  }

  .sukie-slide-content {
    gap: 2rem;
  }

  .sukie-scroll-indicator {
    bottom: 2rem;
    font-size: 0.6rem;
  }
  .sukie-scroll-indicator span{
    display: none;
  }
}