/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #ede3d7, #3b3b3b);
  color: #000;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 80px 0;
  z-index: 10;
}

.logo {
  font-size: 28px;
  font-weight: 600;
  max-width: 140px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  gap: 80px;
}

/* LEFT */
.hero-left {
  flex: 1;
}

.product-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* CTA BUTTON */
.cta-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.cta-btn span {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.4s ease;
  z-index: 0;
}
.product-title span{
  color: white;
}

.cta-btn:hover span {
  left: 0;
}

.cta-btn:hover {
  color: #000;
}

.cta-btn {
  z-index: 1;
}

.cta-btn span {
  z-index: -1;
}

/* RIGHT */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 550px;
}

.shoe {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.shoe.active {
  opacity: 1;
}

/* ARROWS */
.arrows {
  display: flex;
  gap: 48px;
  margin-top: 1px;
}

.arrow {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.arrow:hover {
  transform: scale(1.15);
  opacity: 0.6;
}
.arrow {
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.arrow:hover::after {
  width: 20px;
}


/* MOBILE */
@media (max-width: 767px) {
  .site-header {
    padding: 24px;
    text-align: center;
  }

  .logo {
    margin: 0 auto;
  }

  /* HERO LAYOUT */
  .hero {
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px; /* reduced from 40px */
  }

  .hero-left {
    text-align: left;
    width: 100%;
  }

  .hero-right {
    width: 100%;
  }

  .arrows {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-left {
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    order: 2;
  }
}
@media (max-width: 767px) {

  /* Flatten hero-left ONLY on mobile */
  .hero-left {
    display: contents;
  }

  .product-title {
    order: 1;
    text-align: center;
  }

  .hero-right {
    order: 2;
  }

  .cta-btn {
  order: 3;
  margin: 10px auto 0; /* ← adjust this and it WILL move */
}
}
@media (max-width: 767px) {
  .product-title {
    margin-top: 64px;
  }
}
