/* ===== TRUST BAR ===== */
.trust-bar {
  background: #191918; padding: 30px 16px;
  position: relative; z-index: 60;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.trust-item img { width: 40px; height: 40px; opacity: 0.85; }
.trust-item span {
  color: #aaa; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; text-align: center;
}
.trust-item img { filter: invert(0.7); }

/* ===== SECTION LABELS (shared) ===== */
.section-label {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  text-align: center; margin-bottom: 12px;
}
.section-title {
  font-size: 26px; font-weight: 700;
  text-align: center; margin-bottom: 40px;
}

/* ===== AWARDS — Mobile: vertical stack, Desktop: horizontal scroll-jack ===== */
.awards-horizontal {
  position: relative;
  height: 300vh;
  z-index: 60;
}
.awards-track {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.awards-slides {
  display: flex;
  flex-direction: row;
  height: 100%;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.awards-slide {
  min-width: 100vw;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 16px 40px;
}
.awards-slide.slide-light { background: #f5f5f5; }
.awards-slide.slide-dark { background: #191918; }

/* Slide inner — stacked: frame top, text bottom */
.slide-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  justify-content: center;
}

.slide-frame {
  width: 55%;
  max-width: 280px;
  flex-shrink: 0;
  height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-frame img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .slide-frame img { filter: drop-shadow(0 15px 35px rgba(0,0,0,0.35)); }
  .slide-dark .slide-frame img { filter: drop-shadow(0 15px 35px rgba(255,255,255,0.08)) drop-shadow(0 5px 15px rgba(0,0,0,0.4)); }
}

/* Duo uses same fixed height container */
.slide-frames-duo {
  height: 42vh;
  align-items: center;
}
.slide-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.slide-product-name {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.slide-light .slide-product-name { color: #111; }
.slide-dark .slide-product-name { color: #fff; }

.slide-price {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.slide-light .slide-price { color: #111; }
.slide-dark .slide-price { color: #fff; }

.slide-dimensions {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #6b6b6b;
  letter-spacing: -0.04em;
}
.slide-desc {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.04em;
  max-width: 400px;
}
.slide-light .slide-desc { color: #666; }
.slide-dark .slide-desc { color: #aaa; }

.btn-slide {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  margin-top: 6px;
  align-self: center;
}
.btn-slide-dark { border: 2px solid #FFC864; color: #FFC864; }
.btn-slide-dark:hover { background: #FFC864; color: #191918; }
.btn-slide-light { border: 2px solid #111; color: #111; }
.btn-slide-light:hover { background: #111; color: #fff; }

/* Slide 3: dual frames — side by side with tilt */
.slide-frames-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 80%;
  max-width: 500px;
  flex-shrink: 0;
}
.slide-frames-duo img {
  width: 52%;
  max-height: 100%;
  object-fit: contain;
}
.slide-frames-duo img:first-child {
  transform: rotate(-6deg) translateX(8%);
  z-index: 1;
}
.slide-frames-duo img:last-child {
  transform: rotate(6deg) translateX(-8%);
  z-index: 2;
}

/* Slide 4: overview — sticky scroll-driven animation */
.awards-overview {
  position: relative;
  z-index: 60;
  background: #191918;
  display: none; /* Hidden on mobile — shown via desktop override */
}
.awards-overview-sticky {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  background: #191918;
  min-height: 100vh;
  padding: 60px 0;
}
.awards-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.awards-overview-inner .overview-split {
  margin-top: auto;
  margin-bottom: auto;
}

/* ===== PRODUCT CAROUSEL — Featured left + thumbnails stacked right ===== */
.product-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  justify-content: center;
}
/* Featured (big) product */
.carousel-featured {
  position: relative;
  width: 55%;
  max-width: 300px;
  flex-shrink: 0;
}
.carousel-featured-frame {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.carousel-featured-frame img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.carousel-featured-name {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.04em;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}
.carousel-featured-price {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #FFC864;
  letter-spacing: -0.04em;
  transition: opacity 0.3s ease;
}
.btn-carousel-cta {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid #FFC864;
  color: #FFC864;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
}
.btn-carousel-cta:hover { background: #FFC864; color: #191918; }
/* Animating state */
.carousel-featured-frame.swapping img {
  transform: scale(0.8) translateY(30px);
  opacity: 0;
}
.carousel-featured-frame.swapping .carousel-featured-name,
.carousel-featured-frame.swapping .carousel-featured-price { opacity: 0; }

/* Thumbnails — stacked vertically beside featured */
.carousel-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.carousel-thumb {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.carousel-thumb:hover { transform: translateY(-4px); border-color: rgba(255,200,100,0.2); }
.carousel-thumb img {
  width: 50px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.carousel-thumb:hover img,
.carousel-thumb.active img { opacity: 1; }
.carousel-thumb-name {
  font-family: 'Circular Std', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.carousel-thumb:hover .carousel-thumb-name { color: #fff; }
.carousel-thumb-price {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.04em;
}

/* Overview split layout — mobile: stacked, desktop: side by side */
.overview-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
/* Text reveal — hidden on mobile (desktop shows it inline) */
.overview-text-reveal {
  display: none;
}

/* Mobile slide 4 — text reveals then carousel appears on same screen */
.mobile-overview-wrapper {
  display: none; /* Removed — desktop layout applies everywhere */
}
.mobile-overview-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile-text-intro {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 60px 24px;
  gap: 8px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
}
.mobile-text-intro.text-hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}
.mobile-text-intro .reveal-line-mobile {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mobile-text-intro .reveal-line-mobile.visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-text-intro .reveal-line-mobile.accent {
  color: #FFC864;
}
.mobile-carousel-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  padding: 20px;
}
.mobile-carousel-layer.carousel-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 3;
}
.mobile-carousel-layer .carousel-thumb {
  flex-direction: column;
  text-align: center;
  padding: 6px;
  gap: 4px;
}
.mobile-carousel-layer .carousel-thumbs {
  flex-direction: column;
  gap: 8px;
}
.mobile-carousel-layer .carousel-thumb {
  flex-direction: row;
  text-align: left;
  gap: 8px;
}
.mobile-carousel-layer .carousel-thumb img {
  width: 55px;
  flex-shrink: 0;
}

.btn-overview {
  display: inline-block;
  padding: 8px 18px;
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #FFC864;
  color: #FFC864;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-overview:hover { background: #FFC864; color: #191918; }

/* Trust badges — scrolling marquee on mobile */
.overview-trust {
  margin-top: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.overview-trust-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.overview-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.overview-trust-item img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  filter: invert(1);
}
.trust-icon {
  font-size: 14px;
  opacity: 0.6;
}
.overview-trust-item span {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Scroll progress dots (3 dots now) */
.awards-dots {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.awards-dot {
  width: 8px; height: 8px;
  padding: 8px;
  background-clip: content-box;
  min-width: 24px; min-height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.awards-dots.on-dark .awards-dot {
  background: rgba(255,255,255,0.2);
}
.awards-dot.active {
  background: #111;
  transform: scale(1.4);
}
.awards-dots.on-dark .awards-dot.active {
  background: #fff;
}

/* ===== RECOMPENSES — from scratch ===== */
.recompenses {
  background: #191918;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 60;
  overflow: hidden;
}
/* Title block */
.reco-header {
  padding: 80px 138px 16px;
}
.reco-title {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}
.reco-subtitle {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
/* Two blocks row */
.recompenses-sticky {
  flex: 1;
  display: flex;
  padding: 18px 138px 58px;
  gap: 24px;
  min-height: 0;
}
/* Left block = 4 videos in 2x2 grid */
.reco-left {
  flex: 1;
  min-height: 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.video-cell {
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.video-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-cell-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 8px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  pointer-events: none;
}
.video-cell-handle {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 10px;
  color: #fff;
}
.video-cell-sub {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}
.video-cell-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.video-cell.playing .video-cell-play { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
.video-cell-play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
/* Right block = photo parallax, same height as left */
.reco-right {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.reco-wall-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.reco-wall-frame img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  min-height: 180%;
  object-fit: cover;
  will-change: transform;
}
/* Trust band — bottom */
.reco-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  padding: 0 138px;
}
/* Mobile overrides for recompenses */
@media (max-width: 767px) {
  .recompenses { height: auto; min-height: auto; }
  .recompenses-sticky { flex-direction: column; padding: 0 16px; gap: 16px; }
  .reco-header { padding: 40px 16px 12px; text-align: center; }
  .reco-left { order: 2; }
  .reco-right { order: 1; height: 50vh; min-height: 280px; overflow: hidden; }
  .reco-title { font-size: 24px; }
  .reco-subtitle { font-size: 13px; }
  .video-grid { gap: 8px; }
  .video-cell {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .video-cell.cell-visible { opacity: 1; transform: translateY(0) scale(1); }
  .video-cell:nth-child(1) { transition-delay: 0s; }
  .video-cell:nth-child(2) { transition-delay: 0.15s; }
  .video-cell:nth-child(3) { transition-delay: 0.3s; }
  .video-cell:nth-child(4) { transition-delay: 0.45s; }
  .reco-trust { padding: 0 16px; }
}

/* Pop photos — removed */
.pop-photo {
  position: absolute;
  border: 3px solid #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: scale(0) translateY(40px);
  will-change: transform, opacity;
  pointer-events: none;
}
.pop-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Pop-in animation — like IG hearts */
@keyframes popFloat {
  0%   { opacity: 0; transform: scale(0) translateY(40px) rotate(0deg); }
  15%  { opacity: 1; transform: scale(1.15) translateY(0px) rotate(var(--rot)); }
  25%  { opacity: 1; transform: scale(0.95) translateY(-10px) rotate(var(--rot)); }
  35%  { opacity: 1; transform: scale(1) translateY(-5px) rotate(var(--rot)); }
  70%  { opacity: 0.9; transform: scale(1) translateY(-20px) rotate(var(--rot)); }
  100% { opacity: 0; transform: scale(0.7) translateY(-60px) rotate(var(--rot)); }
}

/* Main layout: phone + gallery side by side on desktop */
.reel-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}

/* Phone-frame video showcase */
.reel-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.reel-phone {
  position: relative;
  width: 190px;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 24px;
  border: 3px solid #333;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.reel-phone::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 16px;
  background: #111;
  border-radius: 0;
  z-index: 10;
}
.reel-video-wrap {
  position: relative;
  width: 100%; height: 100%;
}
.reel-video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.reel-video-wrap video.reel-active {
  opacity: 1;
}
/* Story progress bars */
.reel-progress {
  position: absolute;
  top: 28px; left: 8px; right: 8px;
  display: flex; gap: 3px;
  z-index: 10;
}
.reel-progress-bar {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
}
.reel-progress-bar .reel-progress-fill {
  height: 100%; width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.1s linear;
}
.reel-progress-bar.done .reel-progress-fill { width: 100%; }
.reel-progress-bar.active .reel-progress-fill { width: 0%; }
/* Artist info overlay */
.reel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  z-index: 5;
}
.reel-artist-handle {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  letter-spacing: -0.02em;
}
.reel-artist-sub {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
/* Side dots navigation */
.reel-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.reel-dot.active {
  background: #FFC864;
  transform: scale(1.3);
}
/* Tap zones */
.reel-tap-left, .reel-tap-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  z-index: 8;
  cursor: pointer;
}
.reel-tap-left { left: 0; display: flex; align-items: center; justify-content: flex-start; padding-left: 6px; }
.reel-tap-right { right: 0; display: flex; align-items: center; justify-content: flex-end; padding-right: 6px; }
.reel-tap-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reel-phone:hover .reel-tap-arrow { opacity: 1; }


/* (old moodboard wall CSS removed — replaced by pop-float animation)
._removed {
  display: none;
  height: 650px;
  margin: 30px auto 0;
}
.client-photo {
  position: absolute;
  overflow: hidden;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  cursor: default;
}
.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-photo:hover {
  z-index: 20 !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  transform: rotate(0deg) scale(1.08) !important;
}
/* Tape strips */
.client-photo::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 10px;
  background: rgba(220,218,210,0.7);
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 5;
}
/* Each photo: unique position, size, rotation — scattered moodboard */
/* Row 1 — top cluster */
.client-photo:nth-child(1)  { width: 22%; top: 0%;  left: 2%;  transform: rotate(-3deg); z-index: 3; }
.client-photo:nth-child(2)  { width: 18%; top: 2%;  left: 22%; transform: rotate(2deg); z-index: 5; }
.client-photo:nth-child(3)  { width: 24%; top: 0%;  left: 42%; transform: rotate(-1.5deg); z-index: 4; }
.client-photo:nth-child(4)  { width: 20%; top: 3%;  right: 3%; left: auto; transform: rotate(3.5deg); z-index: 6; }
/* Row 2 — mid-upper */
.client-photo:nth-child(5)  { width: 20%; top: 22%; left: 6%;  transform: rotate(2.5deg); z-index: 7; }
.client-photo:nth-child(6)  { width: 22%; top: 24%; left: 28%; transform: rotate(-2deg); z-index: 5; }
.client-photo:nth-child(7)  { width: 18%; top: 20%; left: 52%; transform: rotate(4deg); z-index: 8; }
.client-photo:nth-child(8)  { width: 23%; top: 25%; right: 2%; left: auto; transform: rotate(-1deg); z-index: 4; }
/* Row 3 — mid-lower */
.client-photo:nth-child(9)  { width: 24%; top: 46%; left: 0%;  transform: rotate(-2.5deg); z-index: 3; }
.client-photo:nth-child(10) { width: 19%; top: 48%; left: 26%; transform: rotate(1.5deg); z-index: 6; }
.client-photo:nth-child(11) { width: 21%; top: 44%; left: 48%; transform: rotate(-3deg); z-index: 5; }
.client-photo:nth-child(12) { width: 22%; top: 50%; right: 4%; left: auto; transform: rotate(2deg); z-index: 7; }
/* Row 4 — bottom */
.client-photo:nth-child(13) { width: 20%; top: 70%; left: 8%;  transform: rotate(3deg); z-index: 4; }
.client-photo:nth-child(14) { width: 24%; top: 68%; left: 30%; transform: rotate(-1.5deg); z-index: 8; }
.client-photo:nth-child(15) { width: 18%; top: 72%; left: 56%; transform: rotate(2.5deg); z-index: 3; }
.client-photo:nth-child(16) { width: 21%; top: 69%; right: 2%; left: auto; transform: rotate(-3.5deg); z-index: 6; }
/* Row 5 — bottom scatter */
.client-photo:nth-child(17) { width: 22%; top: 84%; left: 3%;  transform: rotate(-2deg); z-index: 5; }
.client-photo:nth-child(18) { width: 19%; top: 86%; left: 27%; transform: rotate(3deg); z-index: 7; }
.client-photo:nth-child(19) { width: 23%; top: 82%; left: 50%; transform: rotate(-1.5deg); z-index: 4; }
.client-photo:nth-child(20) { width: 20%; top: 85%; right: 5%; left: auto; transform: rotate(2.5deg); z-index: 6; }
/* Mix portrait / landscape / square aspect ratios */
.client-photo:nth-child(1) img,
.client-photo:nth-child(5) img,
.client-photo:nth-child(8) img,
.client-photo:nth-child(14) img,
.client-photo:nth-child(15) img { aspect-ratio: 3/4; }
.client-photo:nth-child(3) img,
.client-photo:nth-child(7) img,
.client-photo:nth-child(9) img,
.client-photo:nth-child(13) img { aspect-ratio: 4/3; }
.client-photo:nth-child(2) img,
.client-photo:nth-child(4) img,
.client-photo:nth-child(10) img,
.client-photo:nth-child(12) img { aspect-ratio: 1; }
.client-photo:nth-child(6) img,
.client-photo:nth-child(11) img,
.client-photo:nth-child(16) img,
.client-photo:nth-child(17) img,
.client-photo:nth-child(19) img { aspect-ratio: 3/4; }
.client-photo:nth-child(18) img { aspect-ratio: 4/3; }
.client-photo:nth-child(20) img { aspect-ratio: 1; }
/* Vary tape strip positions for organic feel */
.client-photo:nth-child(2)::after  { left: 30%; transform: translateX(0) rotate(3deg); }
.client-photo:nth-child(4)::after  { left: 60%; transform: translateX(0) rotate(-4deg); }
.client-photo:nth-child(5)::after  { display: none; }
.client-photo:nth-child(6)::after  { left: 40%; transform: translateX(0) rotate(1deg); }
.client-photo:nth-child(8)::after  { left: 55%; transform: translateX(0) rotate(-3deg); }
.client-photo:nth-child(9)::after  { left: 35%; transform: translateX(0) rotate(5deg); }
.client-photo:nth-child(11)::after { display: none; }
.client-photo:nth-child(13)::after { left: 65%; transform: translateX(0) rotate(-2deg); }
.client-photo:nth-child(15)::after { display: none; }
.client-photo:nth-child(16)::after { left: 30%; transform: translateX(0) rotate(4deg); }
.client-photo:nth-child(17)::after { display: none; }
.client-photo:nth-child(18)::after { left: 60%; transform: translateX(0) rotate(-3deg); }
.client-photo:nth-child(20)::after { display: none; }

.voir-plus { text-align: center; margin-top: 20px; }
.voir-plus a {
  color: #FFC864; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ===== ETSY SOCIAL PROOF ===== */
.etsy-proof {
  background: #191918;
  padding: 30px 0;
  position: relative; z-index: 60;
  overflow: hidden;
}
/* Etsy header */
.etsy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 16px;
}
.etsy-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 32px;
  color: #de690f;
  letter-spacing: -0.02em;
}
.etsy-verified-icon { width: 18px; height: 18px; flex-shrink: 0; }
.etsy-header-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.15);
}
.etsy-header-text {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,200,100,0.85);
}
/* Stats bar */
.etsy-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 16px;
  margin-bottom: 16px;
}
.etsy-stats-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,200,100,0.15);
  border: 1px solid rgba(255,200,100,0.3);
  border-radius: 0;
  padding: 6px 12px;
}
.etsy-stats-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.etsy-stats-badge .stat-value {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.04em;
}
.etsy-stats-badge .stat-label {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.02em;
}
/* Buyer tags */
.etsy-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 16px;
  margin-bottom: 16px;
}
.etsy-tag {
  font-family: 'Circular Std', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,200,100,0.85);
  border: 1px solid rgba(255,200,100,0.25);
  border-radius: 0;
  padding: 5px 12px;
  background: rgba(255,200,100,0.05);
}
/* Marquee rows */
.etsy-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 8px;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  padding: 0 16px;
}
.etsy-marquee-row {
  display: flex;
  width: max-content;
  gap: 12px;
}
.etsy-marquee-row.row-left {
  animation: etsy-scroll-left 40s linear infinite;
}
.etsy-marquee-row.row-right {
  animation: etsy-scroll-right 45s linear infinite;
}
@keyframes etsy-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes etsy-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.etsy-marquee-row:hover { animation-play-state: paused; }
/* Review card */
.etsy-review-card {
  flex-shrink: 0;
  width: 280px;
  background: #232222;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  padding: 18px 16px;
  position: relative;
}
.etsy-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.etsy-review-name {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  letter-spacing: -0.04em;
}
.etsy-review-verified {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: rgba(255,200,100,0.7);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.etsy-review-verified svg { width: 10px; height: 10px; }
.etsy-review-stars {
  color: #FFC864;
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.etsy-review-text {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.etsy-review-date {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  margin-top: 10px;
}
.etsy-review-country {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
}
/* CTA */
.etsy-cta {
  text-align: center;
  padding: 0 16px;
}
.etsy-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFC864;
  border: 1.5px solid rgba(255,200,100,0.4);
  padding: 10px 24px;
  border-radius: 0;
  transition: all 0.3s;
}
.etsy-cta a:hover { background: #FFC864; color: #191918; }
.etsy-cta a svg { width: 14px; height: 14px; }

/* ===== NOS VALEURS ===== */
.valeurs {
  background: #191918; padding: 50px 16px;
  position: relative; z-index: 60;
}
.valeurs-inner { max-width: 1200px; margin: 0 auto; }
.valeurs-header { margin-bottom: 30px; text-align: center; }
.valeurs-header .section-label { color: #FFC864; text-align: center; }
.valeurs-header .section-title { color: #fff; text-align: center; margin-bottom: 16px; }
.valeurs-desc { color: #aaa; font-size: 13px; line-height: 1.8; }
.valeurs-logo { display: none; }
.valeurs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.valeur-card { background: #232222; border-radius: 8px; overflow: hidden; }
.valeur-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.valeur-card .valeur-text { padding: 14px 12px; }
.valeur-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.valeur-card p { font-size: 11px; color: #aaa; line-height: 1.5; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: #191918; padding: 30px 16px 60px;
  text-align: center;
  position: relative; z-index: 60;
}

/* ===== FOOTER ===== */
.footer {
  background: #191918; padding: 40px 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 60;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 30px;
  margin-bottom: 30px; text-align: center;
}
.footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  margin-bottom: 12px; text-transform: uppercase;
}
.footer-col p, .footer-col a {
  color: #6b6b6b; font-size: 12px; line-height: 2; display: block;
}
.footer-col a:hover { color: #FFC864; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px; text-align: center;
}
.footer-bottom span { color: #666; font-size: 11px; }
.footer-bottom a { color: #6b6b6b; font-size: 11px; margin: 0 4px; }

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
  position: fixed; bottom: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: #FF6436; color: #fff; border: none;
  font-size: 18px; cursor: pointer; z-index: 999;
  opacity: 0; transition: opacity 0.3s;
}
.scroll-top.visible { opacity: 1; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  padding: 6px 10px; color: inherit; border-radius: 4px;
  font-family: 'Circular Std', sans-serif;
  font-weight: 900; font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  min-height: 32px;
  transition: background 0.2s ease;
}
.lang-btn:active { background: rgba(255,255,255,0.12); }
.lang-btn .lang-flag { width: 18px; height: 13px; border-radius: 2px; overflow: hidden; display: flex; }
.lang-btn .lang-flag svg { width: 100%; height: 100%; }
.lang-btn .lang-code { opacity: 0.85; }
.lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  background: rgba(25,25,24,0.96); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 140px; z-index: 2000;
  padding: 4px 0; margin-top: 8px;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 8px 14px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-family: 'Circular Std', sans-serif;
  font-weight: 400; font-size: 12px;
  transition: all 0.2s ease; text-align: left;
}
.lang-option:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lang-option.active { color: #FFC864; font-weight: 700; }
.lang-option .lang-flag { width: 18px; height: 13px; border-radius: 2px; overflow: hidden; display: flex; flex-shrink: 0; }
.lang-option .lang-flag svg { width: 100%; height: 100%; }

/* ================================================================
   DESKTOP OVERRIDES (min-width: 768px)
   ================================================================ */
@media (min-width: 768px) {
  .header-inner { padding: 16px 30px; }
  .header.header-scrolled .header-inner { padding: 10px 30px; }
  .header-logo img { height: 42px; }
  .header.header-scrolled .header-logo img { height: 24px; }
  .hamburger { display: none; }
  .header-nav a {
    display: inline;
    font-family: 'Circular Std', sans-serif;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  .header-nav .flag { display: inline; width: 22px; }
  .header-nav { gap: 24px; }

  /* Desktop hero: side-by-side layout with video bg */
  .hero { padding: 0 60px; min-height: 100vh; }
  .hero-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
  }
  .hero-image { width: 100%; max-width: 400px; }
  .hero-content { max-width: 540px; }
  .hero-content .hero-title { font-size: 54px; }
  .hero-content .hero-desc { font-size: 17px; }
  .hero-content .btn-hero { align-self: flex-start; }
  .hero-title { font-size: 52px; }
  .hero-subtitle { font-size: 13px; letter-spacing: 3px; }
  .hero-desc { font-size: 15px; padding: 0; }

  .trust-bar { padding: 40px 30px; }
  .trust-bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
  .trust-item img { width: 55px; height: 55px; }
  .trust-item span { font-size: 12px; }

  .section-title { font-size: 36px; }

  /* Awards horizontal — desktop overrides */
  .awards-track { height: 100vh; }
  .awards-slide { height: 100vh; padding: 0 60px; }
  .slide-inner {
    flex-direction: row;
    gap: 50px;
  }
  .slide-inner .slide-text {
    align-items: flex-start;
    text-align: left;
  }
  .slide-inner .slide-desc { text-align: left; }
  .slide-inner .slide-dimensions { text-align: left; }
  .slide-inner.reverse { flex-direction: row-reverse; }
  .slide-frame { width: 40%; max-width: 400px; }
  .slide-product-name { font-size: 48px; }
  .slide-price { font-size: 40px; }
  .slide-dimensions { font-size: 14px; }
  .slide-desc { font-size: 16px; }
  .slide-inner .btn-slide { align-self: flex-start; }
  .slide-frames-duo { width: 45%; max-width: 550px; }
  .awards-dots { right: 30px; }
  .awards-overview { display: block; height: 250vh; }
  .awards-overview-sticky { position: sticky; top: 0; height: 100vh; min-height: auto; padding: 0; }
  .awards-overview-inner { max-width: 1400px; padding: 0 30px; }
  .product-carousel { max-width: 550px; gap: 28px; }
  .carousel-featured { width: 55%; max-width: 340px; }
  .carousel-featured-name { font-size: 22px; }
  .carousel-featured-price { font-size: 26px; }
  .carousel-thumbs { gap: 10px; }
  .carousel-thumb { padding: 10px; }
  .carousel-thumb img { width: 100px; }
  .carousel-featured-frame img { filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6)); }
  .carousel-thumb img { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
  .carousel-thumb-name { font-size: 11px; }
  .carousel-thumb-price { font-size: 13px; }

  /* Hide mobile wrapper on desktop */
  .mobile-overview-wrapper { display: none; }

  /* Desktop: split layout — carousel left, text right, centered */
  .overview-split {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    min-height: 80vh;
    max-width: 1100px;
    margin: 0 auto;
  }
  .product-carousel {
    flex: 0 0 auto;
  }
  .overview-text-reveal {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .reveal-line {
    font-family: 'Circular Std', sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-line.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-line-accent {
    color: #FFC864;
  }

  /* Recompenses — desktop tweaks */
  .reco-title { font-size: 36px; }
  .reco-subtitle { font-size: 16px; }
  .reco-trust { flex-shrink: 0; padding: 0 30px; }
  .video-cell-handle { font-size: 11px; }
  .video-cell-sub { font-size: 9px; }
  .video-cell-play { width: 44px; height: 44px; }
  .video-cell-play svg { width: 20px; height: 20px; }
  .recompenses-header .section-title { font-size: 36px; }
  .reel-phone { width: 220px; border-radius: 28px; }
  .reel-phone::before { width: 60px; height: 18px; top: 8px; }
  .reel-artist-handle { font-size: 12px; }
  .reel-artist-sub { font-size: 9px; }
  .reel-showcase { flex-shrink: 0; }

  .etsy-proof { padding: 70px 0; }
  .etsy-stats { gap: 16px; margin-bottom: 24px; }
  .etsy-stats-badge { padding: 10px 22px; }
  .etsy-stats-badge .stat-value { font-size: 20px; }
  .etsy-stats-badge .stat-label { font-size: 12px; }
  .etsy-review-card { width: 320px; padding: 22px 20px; }
  .etsy-review-name { font-size: 13px; }
  .etsy-review-text { font-size: 13px; }

  .valeurs { padding: 80px 30px; }
  .valeurs-header {
    display: grid; grid-template-columns: 1fr auto; gap: 60px;
    align-items: center; text-align: left;
  }
  .valeurs-header .section-label { text-align: left; }
  .valeurs-header .section-title { text-align: left; }
  .valeurs-logo { display: block; }
  .valeurs-logo img { max-width: 200px; opacity: 0.8; }
  .valeurs-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }

  .footer { padding: 60px 30px 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; text-align: left; }
}

/* ===== EMAIL CAPTURE POPUP ===== */
#afc-popup-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:99999;align-items:center;justify-content:center;backdrop-filter:blur(4px);animation:afcFadeIn .3s ease}
#afc-popup-overlay.afc-show{display:flex}
@keyframes afcFadeIn{from{opacity:0}to{opacity:1}}
@keyframes afcSlideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
#afc-popup-card{background:#232222;border-radius:0;padding:40px 36px 32px;max-width:420px;width:90%;position:relative;text-align:center;animation:afcSlideUp .4s ease .1s both;box-shadow:0 24px 60px rgba(0,0,0,.5)}
#afc-popup-close{position:absolute;top:14px;right:16px;background:none;border:none;color:#888;font-size:22px;cursor:pointer;line-height:1;padding:4px;transition:color .2s}
#afc-popup-close:hover{color:#fff}
#afc-popup-card h3{font-family:'Circular Std',sans-serif;font-size:24px;font-weight:700;color:#fff;margin-bottom:10px}
#afc-popup-card p{font-family:'Work Sans',sans-serif;color:#aaa;font-size:14px;margin-bottom:24px;line-height:1.5}
#afc-popup-card input[type="email"]{width:100%;padding:14px 16px;border:1px solid #444;border-radius:0;background:#1a1a1a;color:#fff;font-family:'Work Sans',sans-serif;font-size:15px;outline:none;margin-bottom:14px;transition:border-color .2s}
#afc-popup-card input[type="email"]:focus{border-color:#FFC864}
#afc-popup-card input[type="email"]::placeholder{color:#666}
#afc-popup-btn{width:100%;padding:15px;border:none;border-radius:0;background:#FFC864;color:#1a1a1a;font-family:'Circular Std',sans-serif;font-weight:700;font-size:15px;letter-spacing:.5px;cursor:pointer;transition:background .2s,transform .1s}
#afc-popup-btn:hover{background:#ffd98a;transform:translateY(-1px)}
#afc-popup-btn:active{transform:translateY(0)}
#afc-popup-success{display:none;font-family:'Work Sans',sans-serif;color:#FFC864;font-size:15px;padding:20px 0 4px;line-height:1.5}
.popup-autocomplete{position:absolute;top:100%;left:0;right:0;z-index:10;background:#1a1a1a;border:1px solid #333;border-top:none;max-height:240px;overflow-y:auto;display:none}
.popup-autocomplete.open{display:block}
.popup-ac-item{display:flex;align-items:center;gap:10px;padding:10px 14px;cursor:pointer;transition:background .15s}
.popup-ac-item:hover{background:rgba(255,85,0,0.1)}
.popup-ac-item img{width:36px;height:36px;border-radius:50%;object-fit:cover;flex-shrink:0}
.popup-ac-item .ac-name{font-size:13px;font-weight:600;color:#fff}
.popup-ac-item .ac-meta{font-size:11px;color:rgba(255,255,255,0.4)}
.popup-ac-item .ac-info{display:flex;flex-direction:column}

/* ===== SLIDE DELIVERY ===== */
.slide-delivery { font-size: 11px; color: rgba(255,255,255,0.5); margin: 8px 0 12px; letter-spacing: 0.3px; }
.slide-light .slide-delivery { color: rgba(0,0,0,0.6); }

/* ===== HOW IT WORKS (old — removed) ===== */

/* ===== FAQ HOME ===== */
.faq-home { background: #191918; padding: 60px 16px; position: relative; z-index: 60; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q { list-style: none; cursor: pointer; padding: 18px 0; font-family: 'Circular Std', sans-serif; font-weight: 700; font-size: 15px; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: #FFC864; font-size: 20px; font-weight: 300; transition: transform 0.2s; }
details[open] .faq-q { color: #FFC864; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 18px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== FOOTER PAYMENTS ===== */
.footer-payments { margin-top: 16px; }
.footer-payments-label { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.footer-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); font-family: 'Circular Std', sans-serif; }

/* ===== HOW IT WORKS — Card Layout ===== */
.hiw-cards {
  background: #f5f4f0;
  padding: 50px 16px;
  position: relative;
  z-index: 60;
}
.hiw-cards-header {
  text-align: center;
  margin-bottom: 36px;
}
.hiw-cards-label {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFC864;
  margin-bottom: 10px;
}
.hiw-cards-title {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: #191918;
  line-height: 1.1;
}
.hiw-card {
  max-width: 600px;
  margin: 0 auto 20px;
}
.hiw-card-inner {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}
.hiw-card-num {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #FFC864;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hiw-card-content h3 {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #191918;
  margin-bottom: 6px;
}
.hiw-card-content p {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(25,25,24,0.55);
  line-height: 1.6;
}
.hiw-card-visual {
  margin-top: 16px;
}
.hiw-card-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ===== HOW IT WORKS — Premium Rotating Carousel ===== */
.hiw-carousel {
  background: #f5f4f0;
  height: 400vh;
  position: relative;
  z-index: 60;
}
.hiw-carousel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px 24px;
}
.hiw-carousel-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
/* Mobile order: title -> photos -> step text */
.hiw-header { order: 1; text-align: center; width: 100%; }
.hiw-carousel-photos { order: 2; }
.hiw-carousel-steps { order: 3; text-align: center; width: 100%; }
.hiw-carousel-label {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFC864;
  margin-bottom: 12px;
}
.hiw-carousel-title {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: #191918;
  margin-bottom: 0;
}
.hiw-carousel-steps {
  position: relative;
  height: 120px;
}
.hiw-carousel-step {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  text-align: center;
}
.hiw-carousel-step.hiw-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hiw-carousel-num {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: #FFC864;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.hiw-carousel-step h3 {
  font-family: 'Circular Std', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #191918;
  margin-bottom: 8px;
}
.hiw-carousel-step p {
  font-family: 'Circular Std', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(25,25,24,0.55);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}
/* --- Photo carousel side --- */
.hiw-carousel-photos {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 340px;
  flex-shrink: 0;
}
.hiw-photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  width: 180px;
  height: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  will-change: transform, left, top, opacity;
}
.hiw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Positions: active (large top), small-left, small-right */
.hiw-photo.hiw-pos-active {
  width: 320px;
  height: 220px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}
.hiw-photo.hiw-pos-left {
  width: 160px;
  height: 120px;
  top: 240px;
  left: calc(50% - 180px);
  transform: translateX(0);
  z-index: 2;
  opacity: 0.85;
}
.hiw-photo.hiw-pos-right {
  width: 160px;
  height: 120px;
  top: 240px;
  left: calc(50% + 20px);
  transform: translateX(0);
  z-index: 2;
  opacity: 0.85;
}

/* ===== Desktop layout ===== */
@media (min-width: 768px) {
  .hiw-cards { padding: 80px 40px; }
  .hiw-cards-title { font-size: 40px; }
  .hiw-card { max-width: 900px; }
  .hiw-card-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
  }
  .hiw-card-visual {
    flex-shrink: 0;
    width: 40%;
    margin-top: 0;
    order: 2;
  }
  .hiw-card:nth-child(odd) .hiw-card-visual { order: -1; }
  .hiw-card-content { flex: 1; }
  .hiw-card-content h3 { font-size: 22px; }

  .hiw-carousel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 20px 60px;
  }
  /* Desktop: header top-left, steps bottom-left, photos spanning right */
  .hiw-header { order: unset; grid-column: 1; grid-row: 1; text-align: left; }
  .hiw-carousel-steps { order: unset; grid-column: 1; grid-row: 2; text-align: left; height: 140px; }
  .hiw-carousel-photos { order: unset; grid-column: 2; grid-row: 1 / 3; max-width: 560px; height: 420px; }
  .hiw-carousel-title {
    font-size: 44px;
    margin-bottom: 20px;
  }
  .hiw-carousel-step {
    text-align: left;
  }
  .hiw-carousel-step p {
    margin: 0;
  }
  .hiw-photo.hiw-pos-active {
    width: 400px;
    height: 280px;
  }
  .hiw-photo.hiw-pos-left {
    width: 200px;
    height: 150px;
    top: 300px;
    left: calc(50% - 220px);
  }
  .hiw-photo.hiw-pos-right {
    width: 200px;
    height: 150px;
    top: 300px;
    left: calc(50% + 20px);
  }
}

/* ===== Mobile adjustments ===== */
@media (max-width: 767px) {
  .hiw-carousel {
    height: 250vh;
  }
  .hiw-carousel-sticky {
    padding: 30px 16px;
  }
  .hiw-carousel-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .hiw-carousel-num {
    font-size: 40px;
  }
  .hiw-carousel-step h3 {
    font-size: 18px;
  }
  .hiw-carousel-step p {
    font-size: 13px;
  }
  .hiw-carousel-photos {
    max-width: 340px;
    height: 260px;
  }
  .hiw-photo.hiw-pos-active {
    width: 240px;
    height: 170px;
  }
  .hiw-photo.hiw-pos-left {
    width: 120px;
    height: 90px;
    top: 190px;
    left: calc(50% - 135px);
  }
  .hiw-photo.hiw-pos-right {
    width: 120px;
    height: 90px;
    top: 190px;
    left: calc(50% + 15px);
  }
}

/* ===== WRAPPED VARIATION SELECTOR ===== */
.variation-selector { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin:12px 0; }
.variation-label { font-size:11px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; font-weight:600; }
.variation-options { display:flex; gap:8px; }
.var-btn { background:none; border:2px solid transparent; border-radius:50%; width:32px; height:32px; cursor:pointer; padding:3px; display:flex; align-items:center; justify-content:center; transition:border-color .2s; }
.var-btn.active { border-color:#FFC864; }
.var-btn:hover { border-color:rgba(255,200,100,0.5); }
.var-dot { width:20px; height:20px; border-radius:50%; display:block; }
.variation-selected-label { font-size:11px; color:#FFC864; font-weight:600; }
.slide-light .variation-label { color:rgba(0,0,0,0.5); }
.slide-light .variation-selected-label { color:#b8943a; }
