/* ============================================
   SECTIONS.CSS — RESTOCK CLUB
   Homepage section styles
   Off-white bg, hot pink accent, dark footer
   ============================================ */

/* ===== 1. ANNOUNCEMENT BAR ===== */

.section-announcement {
  background: var(--cta);
  color: var(--cta-text);
  padding: 10px 0;
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: var(--z-header);
  overflow: hidden;
}

.section-announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.announcement__countdown {
  display: inline-flex;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

.announcement__countdown span {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
  min-width: 28px;
  text-align: center;
}

.announcement__separator {
  opacity: 0.5;
}

.announcement__text {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.announcement__close {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
  cursor: pointer;
  background: none;
  border: none;
}

.announcement__close:hover {
  color: #fff;
}

.section-announcement.hidden {
  display: none;
}

/* Shimmer text animation */
.shimmer-text {
  background: linear-gradient(90deg,
    #FFFFFF 0%,
    var(--accent) 50%,
    #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 3s linear infinite;
}

@keyframes shimmer-text {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}


/* ===== 2. HEADER ===== */

.section-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg);
  transition: all var(--duration-fast) var(--ease);
  border-bottom: 1px solid transparent;
}

.section-header.scrolled {
  background: rgba(248, 247, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  min-height: 48px;
  position: relative;
}

.header__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 0 0 auto;
  min-width: 0;
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.header__burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all var(--duration-fast) var(--ease);
  transform-origin: center;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__logo {
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.8rem + 1vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.header__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header__center {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration-fast) var(--ease);
}

.header__nav a:hover {
  color: var(--accent);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  justify-content: flex-end;
}

.header__action {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
  transition: all var(--duration-fast) var(--ease);
}

.header__action:hover {
  color: var(--accent);
}

.header__action svg {
  width: 22px;
  height: 22px;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--duration-fast) var(--ease);
}

.header__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}


/* ===== 3. HERO ===== */

.section-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.section-hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 640px;
  color: #fff;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: var(--font-size-hero);
  margin-bottom: var(--space-md);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__prices {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero__price-from {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

.hero__price-value {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--accent);
}

.hero__price-compare {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ===== 4. TRUST MARQUEE ===== */

.section-trust-marquee {
  background: var(--bg-alt);
  padding: 12px 0;
  overflow: hidden;
}

.trust-marquee {
  overflow: hidden;
  position: relative;
}

.trust-marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}

.trust-marquee__item {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  padding: 0 12px;
}

.trust-marquee__sep {
  color: var(--accent);
  padding: 0 4px;
  font-size: var(--font-size-xs);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}


/* ===== 5. FLASH BAR ===== */

.section-flash {
  background: var(--gold-light);
  padding: 10px 0;
  position: relative;
}

.flash__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.flash__text {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text);
}

.flash__link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast);
}

.flash__link:hover {
  color: var(--text);
}


/* ===== 6. COLLECTIONS GRID ===== */

.section-collections {
  padding: var(--space-2xl) 0;
}

.collections__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.collections__grid .card-collection {
  aspect-ratio: 3/4;
}

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


/* ===== 7. FEATURED PRODUCTS ===== */

.section-featured {
  padding: var(--space-2xl) 0;
}

.featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}


/* ===== 8. PROMO BANNER ===== */

.section-promo {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--cta);
}

/* Gradient overlay — only when promo has a bg image */
.section-promo.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.4));
  z-index: 1;
}

.promo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.promo__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.promo__eyebrow {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.promo__title {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.promo__title em {
  font-style: italic;
  color: var(--accent);
}

.promo__subtitle {
  font-size: var(--font-size-base);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.promo__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.promo__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.promo__stat-number {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--accent);
}

.promo__stat-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}


/* ===== 9. SOCIAL PROOF / STATS ===== */

.section-stats {
  background: var(--bg-alt);
  padding: var(--space-2xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats__item {
  padding: var(--space-lg);
}

.stats__number {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.stats__label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}


/* ===== 10. ADVANTAGES ===== */

.section-advantages {
  background: var(--bg-alt);
  padding: var(--space-2xl) 0;
}

.advantages__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.advantage__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.advantage__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--accent);
}

.advantage__icon svg {
  width: 28px;
  height: 28px;
}

.advantage__title {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.advantage__text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ===== 11. POPULAR MODELS (Carousel) ===== */

.section-models {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.models__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.models__controls {
  display: flex;
  gap: var(--space-xs);
}

.models__control {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: var(--bg-surface);
  transition: all var(--duration-fast) var(--ease);
}

.models__control:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg-surface);
}

.models__track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.models__track::-webkit-scrollbar {
  display: none;
}

.models__track .card-product {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Carousel dots */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-sm);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
  padding: 0;
}

.carousel__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.carousel__dot:hover {
  background: var(--text-secondary);
}


/* ===== 12. REVIEWS ===== */

.section-reviews {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.reviews__score {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text);
}

.reviews__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: var(--space-md);
  padding-bottom: var(--space-xs);
}
.reviews__grid::-webkit-scrollbar { display: none; }

.review__card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: var(--space-md);
}

.review__card:last-child {
  margin-right: var(--space-md);
}

.review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.review__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review__avatar {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.review__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review__date {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.review__stars-large .stars {
  gap: 4px;
}

.review__stars-large .stars svg {
  width: 20px;
  height: 20px;
}

.review__product {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.review__text {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.review__verified {
  font-size: var(--font-size-xs);
  color: var(--success);
  font-weight: 500;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: 4px;
}


/* ===== 13. NEWSLETTER ===== */

.section-newsletter {
  background: var(--bg-alt);
  padding: var(--space-2xl) 0;
}

.newsletter__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.newsletter__text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.newsletter__form .input {
  text-align: center;
}

.newsletter__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--space-sm);
}


/* ===== 14. FOOTER — DARK ===== */

.section-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--footer-text);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.footer__logo-text {
  color: var(--footer-text);
}

.footer__tagline {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__column h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--footer-text);
  margin-bottom: var(--space-md);
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__column a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
}

.footer__column a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.footer__copyright {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__payments {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.footer__payment-icon {
  width: 44px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}


/* ===== STICKY CTA MOBILE ===== */

.section-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  transform: translateY(100%);
  transition: transform var(--duration-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.section-sticky-cta.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section-sticky-cta {
    display: none;
  }
}

.sticky-cta__price {
  display: flex;
  flex-direction: column;
}

.sticky-cta__from {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.sticky-cta__value {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--accent);
}


/* ===== MOBILE MENU DRAWER ===== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: var(--z-modal);
  transform: translateX(-100%);
  transition: transform var(--duration-fast) var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.mobile-menu__nav {
  padding: var(--space-lg) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__nav a {
  display: block;
  padding: 14px var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  transition: color var(--duration-fast);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.mobile-menu__nav a:hover {
  color: var(--accent);
}

.mobile-menu__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
}


/* ===== SPIDERWEB OVERLAY ===== */

.has-web::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url('../assets/images/spiderweb-pattern.svg');
  background-size: 400px 400px;
  background-repeat: repeat;
}


/* ===== 555 WATERMARK ===== */

.section-555 {
  position: relative;
  overflow: hidden;
}

.section-555::after {
  content: '555';
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 20rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}


/* ===== RUPTURE STATE (homepage cards) ===== */

.card-product--rupture {
  position: relative;
}

.card-product--rupture .card-product__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  pointer-events: none;
  z-index: 1;
}

.card-product--rupture .card-product__body {
  opacity: 0.5;
}

.card-product--rupture .card-product__cta {
  display: none;
}


/* ===== STOCK URGENCY ===== */

.stock-urgency {
  padding: 12px 0 14px;
  margin-top: var(--space-sm);
}

.stock-urgency__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.stock-urgency__left {
  font-size: var(--font-size-sm);
  color: var(--error);
  font-weight: 600;
}

.stock-urgency__right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stock-urgency__bar {
  width: 100%;
  height: 5px;
  background: var(--bg-alt);
  border-radius: 0;
  overflow: hidden;
}

.stock-urgency__fill {
  height: 100%;
  background: var(--error);
  border-radius: 0;
  transition: width 0.6s ease;
}


/* ===== PROMO TEXT BAR ===== */

.section-promo-bar {
  background: var(--cta);
  color: var(--cta-text);
  padding: 14px 0;
  text-align: center;
}

.promo-bar__text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-bar__text em {
  font-style: italic;
  color: var(--accent);
}


/* ===== FOOTER SOCIAL ===== */

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

.footer__social-link:hover {
  color: var(--accent);
}

.footer__social-link svg {
  display: inline;
}


/* ===== FOOTER ACCORDION MOBILE ===== */

.footer__column h4 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__column h4::after {
  content: '\203A';
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
  display: block;
}

.footer__column.active h4::after {
  transform: rotate(90deg);
}

.footer__column ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.footer__column.active ul {
  max-height: 300px;
}

@media (min-width: 768px) {
  .footer__column h4 {
    cursor: default;
  }
  .footer__column h4::after {
    display: none;
  }
  .footer__column ul {
    max-height: none;
    overflow: visible;
  }
}


/* ===== COLLECTIONS SLIDER MOBILE ===== */

@media (max-width: 767px) {
  .collections__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--gap);
    padding-bottom: var(--space-sm);
  }
  .collections__grid::-webkit-scrollbar { display: none; }
  .collections__grid .card-collection {
    flex: 0 0 75vw;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }
}


/* ===== REVIEWS SLIDER MOBILE ===== */

@media (max-width: 767px) {
  .review__card {
    flex: 0 0 85vw;
  }
}


/* ===== CAROUSEL WRAP + ARROWS ===== */

.carousel-wrap {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
  opacity: 0.9;
}

.carousel-arrow:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg-surface);
}

.carousel-arrow--left { left: -12px; }
.carousel-arrow--right { right: -12px; }

@media (max-width: 767px) {
  .carousel-arrow { display: none; }
}


/* ===== CAROUSEL PROGRESS BAR ===== */

.carousel-progress {
  width: 100%;
  height: 3px;
  background: var(--border);
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
}

.carousel-progress__fill {
  height: 100%;
  background: var(--accent);
  width: 20%;
  transition: left 0.15s ease, width 0.15s ease;
  position: absolute;
  left: 0;
  top: 0;
}


/* ===== SCROLL FADE HINT (mobile) ===== */

.carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: calc(100% - 3px);
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.section-reviews .carousel-wrap::after {
  background: linear-gradient(to right, transparent, var(--bg-alt));
}

@media (min-width: 768px) {
  .carousel-wrap::after {
    width: 60px;
  }
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
