/* ============================================================
   MAP'S ENTERPRISE — INDEX PAGE STYLES
   Full-size imagery, cinematic slider, animated gallery
   ============================================================ */

/* ---- NAV override for index (full-width) ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  border-bottom: none;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(30, 96, 255, 0.15);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-inner .logo h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.nav-inner .logo span { color: rgba(255,255,255,0.7); }
.nav-inner .nav-links a { color: rgba(255,255,255,0.85); }
.nav-inner .nav-links a:hover,
.nav-inner .nav-links a.active { color: var(--neon-blue); }

/* Mobile menu styles for index page */
@media (max-width: 768px) {
  .nav-inner {
    position: relative;
  }
  .nav-inner .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-inner .nav-links.active {
    max-height: 400px;
    padding: 8px 24px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .nav-inner .nav-links li {
    width: 100%;
  }
  .nav-inner .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-inner .nav-links li:last-child a {
    border-bottom: none;
  }
}

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: slideZoom 8s ease-in-out infinite alternate;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
@keyframes slideZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.slide {
  inset: 0;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}
.slide.active { opacity: 1; z-index: 2; animation: slideZoom 8s ease-in-out infinite alternate; }
.slide.prev   { opacity: 0; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  z-index: 3;
  bottom: 14%;
  left: 8%;
  max-width: 620px;
  animation: slideUp 0.9s cubic-bezier(0.4,0,0.2,1) both;
}
.slide:not(.active) .slide-content { animation: none; opacity: 0; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-badge {
  display: inline-block;
  background: rgba(30,96,255,0.18);
  border: 1px solid rgba(0,191,255,0.4);
  color: #00bfff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.slide-title em {
  font-style: italic;
  background: linear-gradient(135deg, #fff 30%, var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.slide-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.slide-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(30,96,255,0.4);
  letter-spacing: 0.4px;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,191,255,0.5);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Slider nav buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.slider-btn:hover {
  background: var(--primary-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0,191,255,0.4);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.dot.active {
  background: var(--neon-blue);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px var(--neon-blue);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ---- TICKER / MARQUEE ---- */
.ticker-wrap {
  background: var(--primary-blue);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 36px;
  border-right: 2px solid rgba(255,255,255,0.3);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- FEATURES STRIP ---- */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 64px auto;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.3s ease;
}
.feature-pill:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,96,255,0.15);
}
.pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30,96,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(30,96,255,0.2);
}
.pill-icon i {
  font-size: 1.4rem;
  color: var(--neon-blue);
  filter: drop-shadow(0 0 8px rgba(0,191,255,0.4));
}
.feature-pill h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.feature-pill p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ---- SECTION HEADER ---- */
.showcase-section {
  margin: 0 auto 80px;
}
.section-header {
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: rgba(30,96,255,0.12);
  border: 1px solid rgba(30,96,255,0.25);
  color: var(--neon-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--neon-blue));
  border-radius: 3px;
  box-shadow: 0 0 8px var(--neon-blue);
}
.section-sub {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
}
.section-footer {
  text-align: center;
  margin-top: 52px;
}

/* ---- MASONRY PRODUCT GRID (Full-size images) ---- */
.products-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: 20px;
  perspective: 1200px;
}

/* First card spans 2 columns + 2 rows = hero card */
.products-masonry .product-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
/* 4th card taller */
.products-masonry .product-card:nth-child(4) {
  grid-row: span 2;
}

.product-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  animation: cardFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.product-card:nth-child(2n) { animation-delay: 0.5s; }
.product-card:nth-child(3n) { animation-delay: 1s; }
.product-card:nth-child(4n) { animation-delay: 1.5s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.product-card:hover {
  transform: translateY(-12px) scale(1.02) rotateX(4deg) rotateY(-4deg);
  box-shadow: -15px 25px 40px rgba(0,0,0,0.4),
              0 0 30px rgba(30,96,255,0.3);
  border-color: var(--neon-blue);
  z-index: 5;
}

/* Full-size image */
.product-img {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  filter: none; /* no colour change */
}
.product-card:hover .product-img img {
  transform: scale(1.07);
}

/* Shimmer overlay on hover */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,96,255,0.0) 0%,
    rgba(0,191,255,0.06) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.product-card:hover .product-img::after { opacity: 1; }

/* Quick-view eye icon */
.product-img .quick-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.product-card:hover .product-img .quick-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Product tag badge */
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.65);
  color: var(--neon-blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,191,255,0.25);
  z-index: 4;
}

/* Product info overlay at bottom */
.product-info {
  padding: 20px 22px;
  background: linear-gradient(to top, var(--bg-card) 80%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}
.product-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--neon-blue);
  flex-shrink: 0;
}
.product-price::before { content: 'K'; font-size: 0.9rem; }

.add-to-cart {
  position: absolute;
  bottom: 68px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: none;
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(30,96,255,0.4);
  z-index: 6;
}
.product-card:hover .add-to-cart {
  opacity: 1;
  transform: scale(1);
}
.add-to-cart:hover {
  background: var(--neon-blue);
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0,191,255,0.5);
}
.add-to-cart i { color: #fff; font-size: 1rem; }

/* ---- TRADING GALLERY ---- */
.trading-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.trading-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease;
  animation: tradingFloat 5s ease-in-out infinite;
  border: 2px solid var(--border-light);
}
.trading-item:nth-child(2n) { animation-delay: 0.3s; }
.trading-item:nth-child(3n) { animation-delay: 0.6s; }
.trading-item:nth-child(4n) { animation-delay: 0.9s; }
@keyframes tradingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.trading-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5),
              0 0 40px rgba(30,96,255,0.4);
  z-index: 10;
  border-color: var(--neon-blue);
}
.trading-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
  animation: tradingPulse 4s ease-in-out infinite;
}
.trading-item:nth-child(2n) img { animation-delay: 1s; }
.trading-item:nth-child(3n) img { animation-delay: 2s; }
@keyframes tradingPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.trading-item:hover img { transform: scale(1.1); }
.trading-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ---- LOOKBOOK STRIP ---- */
.lookbook-section {
  margin: 0 0 80px;
  overflow: hidden;
}
.lookbook-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.lookbook-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.lookbook-header a {
  color: var(--neon-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.lookbook-header a:hover { opacity: 0.7; }

.lookbook-track {
  display: flex;
  gap: 16px;
  animation: lookbookScroll 28s linear infinite;
  width: max-content;
  will-change: transform;
}
.lookbook-track:hover { animation-play-state: paused; }

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

.lookbook-item {
  flex-shrink: 0;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease;
  animation: lookbookFloat 5s ease-in-out infinite;
}
.lookbook-item:nth-child(2n) { animation-delay: 0.3s; }
.lookbook-item:nth-child(3n) { animation-delay: 0.6s; }
.lookbook-item:nth-child(4n) { animation-delay: 0.9s; }
@keyframes lookbookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.lookbook-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4),
              0 0 25px rgba(30,96,255,0.3);
  z-index: 10;
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: none;
  transition: transform 0.5s ease;
  animation: imagePulse 4s ease-in-out infinite;
}
.lookbook-item:nth-child(2n) img { animation-delay: 1s; }
.lookbook-item:nth-child(3n) img { animation-delay: 2s; }
@keyframes imagePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.lookbook-item:hover img { transform: scale(1.08); }

.lookbook-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* ---- OFFERS BANNER ---- */
.offers-banner-new {
  display: flex;
  align-items: center;
  gap: 64px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--deep-blue) 100%);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 64px 56px;
  margin: 0 auto 80px;
  overflow: hidden;
  position: relative;
  animation: bannerGlow 4s ease-in-out infinite;
}
@keyframes bannerGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(30,96,255,0.1); }
  50% { box-shadow: 0 0 50px rgba(30,96,255,0.25); }
}
.offers-banner-new::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,96,255,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: gradientMove 8s ease-in-out infinite;
}
@keyframes gradientMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}
.offers-text {
  flex: 1;
  min-width: 280px;
  z-index: 2;
}
.offers-tag {
  display: inline-block;
  background: rgba(30,96,255,0.12);
  border: 1px solid rgba(30,96,255,0.25);
  color: var(--neon-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.offers-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.offers-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.offers-images {
  flex: 0 0 auto;
  z-index: 2;
}
.offers-img-stack {
  position: relative;
  width: 340px;
  height: 420px;
}
.stack-img {
  position: absolute;
  width: 240px;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  border: 3px solid var(--bg-card);
  filter: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.stack-back {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
  filter: brightness(0.85);
  animation: stackFloat 6s ease-in-out infinite;
}
.stack-front {
  bottom: 0;
  right: 0;
  transform: rotate(6deg);
  z-index: 2;
  animation: stackFloat 6s ease-in-out infinite 0.5s;
}
@keyframes stackFloat {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}
.stack-front {
  bottom: 0;
  right: 0;
  transform: rotate(6deg);
  z-index: 2;
}
@keyframes stackFloatFront {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-10px); }
}
.offers-banner-new:hover .stack-back {
  transform: rotate(-10deg) translateY(-15px);
}
.offers-banner-new:hover .stack-front {
  transform: rotate(10deg) translateY(-15px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .products-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .products-masonry .product-card:first-child { grid-column: span 2; grid-row: span 1; }
  .products-masonry .product-card:nth-child(4) { grid-row: span 1; }
  .offers-banner-new { gap: 40px; padding: 48px 36px; }
  .offers-img-stack { width: 280px; height: 360px; }
  .stack-img { width: 200px; height: 280px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 14px 20px; }
  .slide-content { left: 5%; bottom: 12%; max-width: 92%; }
  .slide-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .slide-desc { font-size: 0.95rem; margin-bottom: 24px; }
  .features-strip { grid-template-columns: 1fr 1fr; gap: 14px; margin: 40px auto; }
  .products-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 12px;
  }
  .products-masonry .product-card:first-child { grid-column: span 2; }
  .products-masonry .product-card:nth-child(4) { grid-row: span 1; }
  .add-to-cart { opacity: 1; transform: scale(1); bottom: 58px; }
  .offers-banner-new { flex-direction: column; padding: 40px 24px; gap: 36px; text-align: center; }
  .offers-text p { margin-left: auto; margin-right: auto; }
  .offers-images { width: 100%; display: flex; justify-content: center; }
  .offers-img-stack { width: 280px; height: 300px; }
  .stack-img { width: 180px; height: 240px; }
  .slider-btn { width: 42px; height: 42px; font-size: 0.95rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .scroll-hint { display: none; }
  .lookbook-item { width: 200px; height: 280px; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .features-strip { grid-template-columns: 1fr; }
  .products-masonry { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .products-masonry .product-card:first-child { grid-column: span 1; }
  .slide-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .offers-img-stack { width: 240px; height: 260px; }
  .stack-img { width: 160px; height: 210px; }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
  padding: 24px;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 90vh;
  gap: 12px;
}
.lightbox-img-wrap img {
  max-height: 82vh;
  max-width: 80vw;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  display: block;
  filter: none; /* preserve original colours */
  animation: lbFadeIn 0.35s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.lightbox-nav:hover {
  background: var(--primary-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 18px rgba(0,191,255,0.4);
}

/* ---- SCROLL REVEAL ---- */
.reveal-pending {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-pending.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delay for siblings */
.products-masonry .product-card.reveal-pending:nth-child(2) { transition-delay: 0.08s; }
.products-masonry .product-card.reveal-pending:nth-child(3) { transition-delay: 0.16s; }
.products-masonry .product-card.reveal-pending:nth-child(4) { transition-delay: 0.24s; }
.products-masonry .product-card.reveal-pending:nth-child(5) { transition-delay: 0.32s; }
.products-masonry .product-card.reveal-pending:nth-child(6) { transition-delay: 0.40s; }
.features-strip .feature-pill.reveal-pending:nth-child(2) { transition-delay: 0.1s; }
.features-strip .feature-pill.reveal-pending:nth-child(3) { transition-delay: 0.2s; }
.features-strip .feature-pill.reveal-pending:nth-child(4) { transition-delay: 0.3s; }
