/* Premium fashion UI — hero, countdown, WhatsApp, scroll animations */

/* —— Full-screen hero banner —— */
.hero-premium {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: min(88vh, 780px);
  min-height: 440px;
  margin: 0 0 0;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(45, 74, 62, 0.12);
  overflow: hidden;
}

.hero-premium .hero-slide {
  transition: opacity 1s ease, transform 1.2s ease;
}

.hero-premium .hero-slide:not(.active) {
  transform: scale(1.03);
}

.hero-premium .hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush, #f3e0e4), var(--cream, #faf6f2));
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-premium .hero-media {
    width: 62%;
    left: auto;
  }
}

.hero-premium .hero-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.5rem;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-premium .hero-slide::after {
  background: linear-gradient(
    90deg,
    rgba(255, 252, 250, 0.97) 0%,
    rgba(255, 252, 250, 0.85) 28%,
    rgba(255, 252, 250, 0.35) 48%,
    transparent 62%
  );
}

@media (max-width: 767px) {
  .hero-premium .hero-media {
    width: 100%;
    opacity: 0.35;
  }
  .hero-premium .hero-slide::after {
    background: linear-gradient(
      180deg,
      rgba(255, 252, 250, 0.15) 0%,
      rgba(255, 252, 250, 0.92) 55%,
      rgba(255, 252, 250, 0.98) 100%
    );
  }
  .hero-premium .hero-content {
    justify-content: flex-end;
    padding-bottom: 3.5rem;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
}

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: heroShine 6s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}

.hero-premium .hero-content {
  z-index: 3;
  max-width: min(520px, 92%);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-premium .hero-content h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s, background 0.25s;
  line-height: 1;
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: #fff;
}

.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }

.hero-premium .hero-dots {
  bottom: 1.75rem;
  z-index: 10;
}

.hero-premium .hero-dots button {
  width: 10px;
  height: 10px;
  transition: width 0.35s, background 0.35s;
}

/* Hero text entrance on active slide */
.hero-premium .hero-slide .anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.hero-premium .hero-slide.active .anim-fade-up {
  animation: fadeUpHero 0.8s ease forwards;
}

.hero-premium .hero-slide.active .anim-delay-1 { animation-delay: 0.12s; }
.hero-premium .hero-slide.active .anim-delay-2 { animation-delay: 0.24s; }
.hero-premium .hero-slide.active .anim-delay-3 { animation-delay: 0.36s; }

@keyframes fadeUpHero {
  to { opacity: 1; transform: translateY(0); }
}

/* —— Trust marquee —— */
.trust-marquee {
  overflow: hidden;
  background: var(--green);
  color: var(--ivory);
  padding: 0.65rem 0;
  margin-bottom: 0.5rem;
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.trust-marquee-track .dot-gold {
  color: var(--champagne-light);
  font-size: 0.6rem;
}

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

/* —— Animated countdown —— */
.offer-premium {
  background: linear-gradient(135deg, #fff 0%, var(--blush) 50%, var(--cream) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.15);
  position: relative;
  overflow: hidden;
}

.offer-premium::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
  animation: offerGlow 4s ease-in-out infinite;
}

@keyframes offerGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.offer-text { position: relative; z-index: 1; }

.offer-wa-note {
  font-size: 0.82rem;
  margin-top: 0.75rem;
  color: var(--green-soft);
  font-weight: 500;
}

.countdown-premium {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cd-unit {
  min-width: 4.5rem;
  padding: 0.85rem 0.65rem;
  background: var(--ivory);
  border-radius: 0.85rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(45, 74, 62, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.cd-unit .cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.1;
  transition: transform 0.35s ease, color 0.35s;
}

.cd-unit .cd-num.cd-flip {
  animation: cdFlip 0.45s ease;
  color: var(--champagne);
}

@keyframes cdFlip {
  0% { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0); opacity: 1; }
}

.cd-unit small {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
  color: rgba(45, 74, 62, 0.55);
}

.cd-unit.cd-secs {
  border-color: var(--champagne);
  background: linear-gradient(180deg, #fffef9, var(--beige));
}

.cd-unit.cd-secs .cd-num {
  color: #b8860b;
}

/* —— Scroll reveal —— */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
}

.reveal-on-scroll.is-visible .product-card {
  animation: cardStagger 0.6s ease backwards;
}

.reveal-on-scroll.is-visible .product-card:nth-child(1) { animation-delay: 0.05s; }
.reveal-on-scroll.is-visible .product-card:nth-child(2) { animation-delay: 0.1s; }
.reveal-on-scroll.is-visible .product-card:nth-child(3) { animation-delay: 0.15s; }
.reveal-on-scroll.is-visible .product-card:nth-child(4) { animation-delay: 0.2s; }
.reveal-on-scroll.is-visible .product-card:nth-child(5) { animation-delay: 0.25s; }
.reveal-on-scroll.is-visible .product-card:nth-child(6) { animation-delay: 0.3s; }
.reveal-on-scroll.is-visible .product-card:nth-child(7) { animation-delay: 0.35s; }
.reveal-on-scroll.is-visible .product-card:nth-child(8) { animation-delay: 0.4s; }

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

/* —— Floating WhatsApp —— */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-float-panel {
  background: var(--ivory);
  border-radius: 1rem;
  padding: 1.15rem;
  width: min(280px, calc(100vw - 2rem));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.3);
  animation: waPanelIn 0.35s ease;
}

.wa-float-panel[hidden] {
  display: none;
}

@keyframes waPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: none; }
}

.wa-float-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wa-float-sub {
  font-size: 0.78rem;
  color: rgba(45, 74, 62, 0.65);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.wa-float-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  margin-bottom: 0.5rem;
  background: #e8f8ee;
  border: 1px solid rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float-link:hover {
  transform: translateX(-4px);
  box-shadow: 4px 8px 20px rgba(37, 211, 102, 0.2);
}

.wa-float-link span {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.wa-float-link small {
  font-size: 0.72rem;
  opacity: 0.75;
}

.wa-float-cart {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  margin-top: 0.5rem;
  color: var(--champagne);
  font-weight: 500;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.5s ease-in-out infinite;
  font-family: var(--font-body);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

.wa-float-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wa-float-btn span:not(svg) {
    display: none;
  }
  .wa-float-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* —— Launch & Combo offers showcase —— */
.offers-showcase {
  padding-top: 2rem;
}

.offers-intro {
  max-width: 28rem;
  margin: 0.5rem auto 0;
}

.offer-launch-banner {
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 0;
}

.offer-launch-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 900px) {
  .offer-launch-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.offer-launch-visual {
  position: relative;
  min-height: 280px;
  background: linear-gradient(180deg, #faf6f2 0%, var(--beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-launch-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: contain;
  object-position: center center;
  padding: 0.65rem;
}

.offer-launch-text {
  padding: 1.75rem 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-launch-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0.35rem 0 0.75rem;
}

.offer-discount-big {
  font-size: 1.1rem;
  margin: 0.75rem 0;
  color: var(--green);
}

.offer-discount-big strong {
  font-size: 1.5rem;
  color: #b8860b;
}

.offer-countdown-inline {
  margin: 1rem 0;
  justify-content: flex-start;
}

.offers-cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .offers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .offers-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 165, 0.25);
  box-shadow: 0 10px 32px rgba(45, 74, 62, 0.06);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 169, 98, 0.18);
}

.offer-card-launch {
  border-color: rgba(201, 169, 98, 0.45);
}

.offer-card-combo {
  border-color: rgba(45, 74, 62, 0.15);
  background: linear-gradient(180deg, #fffef9 0%, #f8f0eb 100%);
}

.offer-card-combo::before {
  content: "2-in-1";
  position: absolute;
  top: 3.5rem;
  right: 0.75rem;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  letter-spacing: 0.05em;
  z-index: 2;
}

.offer-card {
  position: relative;
}

.offer-card-flash {
  border-color: #f5c6d0;
  background: linear-gradient(135deg, #fff5f7, #fffef9);
}

.offer-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #faf6f2 0%, var(--beige) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.5rem;
}

.offer-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.badge-launch,
.offer-card-launch .offer-card-badge {
  background: linear-gradient(135deg, var(--champagne), #b8860b);
}

.offer-card-combo .offer-card-badge {
  background: var(--green);
}

.offer-card-flash .offer-card-badge {
  background: #e11d48;
}

.offer-card-discount {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: var(--ivory);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offer-card-body {
  padding: 1.15rem 1.15rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.offer-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.offer-card-body .text-muted {
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
}

.offer-combo-list {
  list-style: none;
  margin: 0.75rem 0;
  font-size: 0.82rem;
  color: rgba(45, 74, 62, 0.75);
}

.offer-combo-list li {
  padding: 0.2rem 0 0.2rem 1.1rem;
  position: relative;
}

.offer-combo-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--champagne);
  font-size: 0.7rem;
}

.offer-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.offers-footer-note {
  margin-top: 2rem;
}

/* —— Launch overlay: 3-2-1 We Are Live —— */
body.launch-no-scroll { overflow: hidden; }

.launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.launch-overlay-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.launch-overlay-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a3329 0%, #2d4a3e 40%, #1a2820 100%);
}

.launch-sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne, #c9a962);
  opacity: 0;
  animation: launchSparkle 2.4s ease-in-out infinite;
}

.launch-sparkles span:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.launch-sparkles span:nth-child(2) { top: 25%; right: 18%; animation-delay: 0.4s; }
.launch-sparkles span:nth-child(3) { bottom: 30%; left: 12%; animation-delay: 0.8s; }
.launch-sparkles span:nth-child(4) { bottom: 20%; right: 22%; animation-delay: 1.2s; }
.launch-sparkles span:nth-child(5) { top: 45%; left: 8%; animation-delay: 0.6s; }
.launch-sparkles span:nth-child(6) { top: 55%; right: 10%; animation-delay: 1s; }

@keyframes launchSparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.4); }
}

.launch-overlay-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 420px;
  width: 100%;
}

.launch-logo {
  display: block;
  width: min(300px, 88vw);
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.launch-count {
  font-size: clamp(5rem, 22vw, 8rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 60px rgba(201, 169, 98, 0.5);
  margin: 0.5rem 0;
}

.launch-count.launch-pulse {
  animation: launchPulse 0.55s ease;
}

@keyframes launchPulse {
  0% { transform: scale(0.6); opacity: 0.4; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.launch-tagline,
.launch-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.5rem 0;
}

.launch-live-msg {
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  color: var(--champagne, #c9a962);
  margin: 0.75rem 0;
  line-height: 1.15;
}

.launch-live-msg.launch-live-pop {
  animation: launchLivePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes launchLivePop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.launch-celebrate .launch-overlay-bg {
  animation: launchBgFlash 0.8s ease;
}

@keyframes launchBgFlash {
  0% { filter: brightness(1); }
  40% { filter: brightness(1.35); }
  100% { filter: brightness(1); }
}

.launch-enter {
  margin-top: 1.25rem;
  min-width: 200px;
}

.launch-enter.launch-enter-pop {
  animation: launchLivePop 0.5s ease 0.15s both;
}

.launch-skip {
  display: block;
  margin: 1.25rem auto 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem;
}

.launch-skip:hover { color: rgba(255, 255, 255, 0.8); }

/* —— Highlight sections (latest products) —— */
.section-highlight {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.08) 0%, transparent 100%);
  border-radius: var(--radius, 12px);
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 0.5rem;
}

.section-launch-sale {
  background: linear-gradient(180deg, rgba(45, 74, 62, 0.06) 0%, transparent 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius, 12px);
  padding: 1.5rem 0 2rem;
}

.section-launch-sale .section-head h2::after {
  content: " 🔥";
}

/* —— Best seller spotlight —— */
.spotlight-section {
  padding: 1.5rem 0 0.5rem;
}

.spotlight-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius, 12px);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.14) 0%, rgba(45, 74, 62, 0.08) 50%, rgba(255, 252, 250, 0.9) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  overflow: hidden;
}

.spotlight-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  max-height: min(420px, 70vh);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #faf6f2 0%, var(--beige) 100%);
  border-radius: var(--radius, 12px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(45, 74, 62, 0.15);
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.5rem;
}

.spotlight-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.spotlight-content {
  position: relative;
  z-index: 1;
}

.spotlight-eyebrow {
  color: var(--gold, #c9a962);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.spotlight-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.2;
}

.spotlight-desc {
  color: var(--text-muted, #5a5a5a);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.spotlight-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--green, #2d4a3e);
}

.spotlight-stats strong {
  color: var(--gold, #c9a962);
}

.spotlight-price {
  margin-bottom: 1.25rem;
}

.spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-card-bestseller {
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.12);
}

.badge-bestseller {
  background: linear-gradient(135deg, #2d4a3e, #3d6354);
  color: #fff8ee;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .spotlight-card {
    grid-template-columns: 1.05fr 1fr;
    padding: 2rem 2.25rem;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .spotlight-cta {
    flex-direction: column;
  }

  .spotlight-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* —— Mobile polish —— */
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card-body h3 {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .product-card-body .product-price strong {
    font-size: 0.95rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .section-head .link-more {
    font-size: 0.85rem;
  }

  .offer-launch-grid {
    grid-template-columns: 1fr;
  }

  .offers-cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .announcement-bar {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
    line-height: 1.35;
  }

  .launch-overlay-inner {
    padding: 0 0.5rem;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 0.55rem;
  }

  .logo-image {
    max-height: 42px;
  }

  .logo-image-link {
    max-width: min(170px, 52vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-premium .hero-media img,
  .trust-marquee-track,
  .wa-float-btn,
  .hero-shine,
  .offer-premium::before,
  .launch-count.launch-pulse,
  .launch-live-msg.launch-live-pop,
  .launch-sparkles span {
    animation: none;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
  .launch-overlay { display: none; }
}
