/* ============================================
   HOME.CSS — Shop homepage styles
   ============================================ */

/* ---- Hero Slider ---- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--surface);
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-slider__slide.active {
  opacity: 1;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.55) 32%, rgba(10,10,10,0.15) 60%, rgba(10,10,10,0.35) 100%);
}

.hero-slider__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 var(--space-6) var(--space-16);
}

.hero-slider__script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--accent);
  transform: rotate(-3deg);
  text-shadow: 0 1px 2px rgba(10,10,10,0.9), 0 3px 26px rgba(10,10,10,0.95);
}

.hero-slider__title {
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: var(--space-6);
  color: var(--white);
}

/* Hero always sits on a dark-scrimmed photo — keep it fixed-light regardless of theme */
.hero-slider .btn--primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero-slider .btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--space-6);
  display: flex;
  gap: var(--space-2);
  align-items: center;
  justify-content: center;
}

.hero-slider__dot {
  width: 20px;
  height: 2px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(245, 243, 238, 0.45);
  transition: all 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-slider__dot.active {
  width: 46px;
  background: var(--accent);
}

/* ---- Marquee ---- */
.marquee {
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
  padding: var(--space-3) 0;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: var(--space-12);
  animation: cl8-marquee 26s linear infinite;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes cl8-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Statement ---- */
.statement {
  padding: var(--space-24) var(--space-6);
  max-width: 1180px;
  margin: 0 auto;
}

.statement__script {
  transform: rotate(-2deg);
  display: inline-block;
}

.statement__text {
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: var(--space-4);
  max-width: 20ch;
}

/* ---- Featured Drop ---- */
.product-feature {
  padding: 0;
  background: none;
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.product-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.product-feature__image {
  padding: 0;
  border: none;
  background: var(--surface);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-feature__image:hover img {
  transform: scale(1.03);
}

.product-feature__body {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw;
  border-left: 1px solid var(--border);
}

.product-feature__name {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: var(--space-4) 0 0;
}

.product-feature__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: var(--space-6) 0 0;
  max-width: 26em;
}

.product-feature__ctas {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

/* ---- Image Row ---- */
.image-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.image-row img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ---- About Teaser ---- */
.about-teaser {
  padding: var(--space-24) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.about-teaser__label {
  display: block;
  margin-bottom: var(--space-4);
}

.about-teaser__headline {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  text-transform: uppercase;
  max-width: 640px;
  margin: 0 auto var(--space-8);
  line-height: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .product-feature__inner {
    grid-template-columns: 1fr;
  }

  .product-feature__body {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .image-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 480px;
  }
}
