/* ==========================================================================
   ATTAR — High-End Luxury Perfumery UX/UI Design System
   Architecture: Deep Noir Header & Hero -> Soft Luxury Alabaster Catalog -> Deep Noir Footer
   ========================================================================== */

:root {
  /* Noir & Onyx (Header / Hero / Footer) */
  --bg-noir: #080706;
  --bg-noir-elevated: #141210;
  --bg-noir-elevated-2: #1e1a16;

  /* Alabaster & Light Cream (Catalog Canvas & Cards) */
  --bg-alabaster: #f7f4ee;
  --bg-card: #ffffff;
  --card-image-bg: #ffffff;

  /* Metallic Gold & Champagne Accents */
  --gold: #c59b3f;
  --gold-bright: #e6c670;
  --gold-dark: #9e7a2b;
  --gold-border: rgba(197, 155, 63, 0.25);
  --gold-border-bright: rgba(197, 155, 63, 0.55);
  --gold-glow: 0 0 20px rgba(197, 155, 63, 0.2);

  /* Dark Text Tokens (Catalog area) */
  --text-dark-heading: #141210;
  --text-dark-body: #3b352e;
  --text-dark-muted: #787063;
  --border-light: rgba(197, 155, 63, 0.2);

  /* Light Text Tokens (Header / Hero / Footer) */
  --text-light-heading: #faf7f2;
  --text-light-body: #d6cebf;
  --text-light-muted: #8e8577;
  --border-dark: rgba(255, 255, 255, 0.1);

  --danger: #d9534f;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 10px 30px rgba(35, 28, 18, 0.06);
  --shadow-card-hover: 0 18px 45px rgba(197, 155, 63, 0.15);
  --shadow-pop: 0 24px 60px rgba(0, 0, 0, 0.45);

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-noir);
  color: var(--text-light-body);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-serif); margin: 0; }

.container {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
}

/* ---------------- Scrollbar ---------------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-noir); }
::-webkit-scrollbar-thumb { background: #28241f; border-radius: 10px; border: 2px solid var(--bg-noir); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.2s ease;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  height: var(--header-h);
}

.menu-toggle { grid-column: 1; grid-row: 1; justify-self: start; }
.header-search { grid-column: 1; grid-row: 1; justify-self: stretch; }

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cart-btn { grid-column: 3; grid-row: 1; justify-self: end; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(197, 155, 63, 0.35));
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 60px; width: auto; }

/* Header Search & Mobile Search Trigger */
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn.search-toggle-mobile {
  display: none;
}

.header-search {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  display: flex;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 155, 63, 0.28);
  overflow: hidden;
  transition: width 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
  z-index: 60;
  margin: 0;
}

.header-search:hover,
.header-search:focus-within,
.header-search.is-expanded {
  width: clamp(260px, 24vw, 380px);
  background: #191612;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55), 0 0 0 2px rgba(197, 155, 63, 0.18);
  overflow: visible;
}

.search-trigger {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--gold);
  border-radius: 50%;
  transition: transform 0.2s ease, color 0.2s ease;
}

.search-trigger:hover {
  transform: scale(1.08);
  color: #f0d5a0;
}

.search-trigger .search-icon {
  position: static;
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}

.header-search input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-light-heading);
  padding: 0 8px 0 2px;
  font-size: 13.5px;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease 0.06s;
}

.header-search input::placeholder {
  color: var(--text-light-muted);
  font-size: 13px;
}

.header-search:hover input,
.header-search:focus-within input,
.header-search.is-expanded input {
  opacity: 1;
  pointer-events: auto;
}

.search-clear-btn {
  background: transparent;
  border: none;
  color: var(--text-light-muted);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  margin-right: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.search-clear-btn:hover {
  color: var(--text-light-heading);
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Search Drawer */
.header-search--mobile {
  display: none;
  position: relative;
  padding: 6px 16px 14px;
  max-width: none;
  background: transparent;
}

.header-search--mobile.is-open {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDownMobileSearch 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownMobileSearch {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-search--mobile .search-input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.header-search--mobile input {
  width: 100%;
  background: #181512;
  border: 1px solid var(--border-dark);
  color: var(--text-light-heading);
  padding: 10px 16px 10px 42px;
  border-radius: 999px;
  font-size: 13.5px;
  outline: none;
  transition: all 0.2s ease;
}

.header-search--mobile input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 63, 0.14);
}

.header-search--mobile .search-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}

.mobile-search-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 155, 63, 0.2);
  color: var(--text-light-heading);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mobile-search-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-light-heading);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.icon-btn:hover { background: var(--bg-noir-elevated); color: var(--gold-bright); }
.icon-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.menu-toggle { display: none; }

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #120e06;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ============================== ANUNCIO ============================== */
.announce-bar {
  position: relative;
  background: var(--gold);
  color: #1a1408;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56px;
  background: linear-gradient(to right, transparent, var(--gold) 65%);
  pointer-events: none;
  z-index: 1;
}
.announce-marquee {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.announce-track {
  display: flex;
  width: max-content;
  animation: announce-scroll 26s linear infinite;
}
.announce-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 9px 40px 9px 20px;
  font-size: 12.5px;
  font-weight: 600;
}
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.announce-close {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  color: #1a1408;
  font-size: 12px;
  opacity: 0.7;
  padding: 0 18px 0 6px;
  flex-shrink: 0;
}
.announce-close:hover { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .announce-track {
    animation: none;
    transform: none;
    width: 100%;
    justify-content: center;
  }
  .announce-item:nth-of-type(2) { display: none; }
  .announce-item { white-space: normal; padding-right: 20px; text-align: center; }
}

/* ============================== QUICK NAV ============================== */
.quick-nav {
  border-top: 1px solid var(--border-dark);
  background: rgba(0, 0, 0, 0.2);
}
.quick-nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.quick-nav-inner::-webkit-scrollbar { display: none; }
.quick-nav-link {
  background: none;
  border: none;
  color: var(--text-light-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.quick-nav-link:hover { background: rgba(197, 155, 63, 0.14); color: var(--gold-bright); }
.quick-nav-link--love { color: #ff8fa3; }
.quick-nav-link--love:hover { background: rgba(255, 143, 163, 0.14); color: #ffb0bf; }

/* ============================== CATEGORÍAS ============================== */
.categories-section {
  background: var(--bg-noir);
  padding: 46px 0 8px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 28px);
  color: var(--text-light-heading);
  text-align: center;
  margin-bottom: 28px;
}
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-tile {
  position: relative;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--card-image-bg);
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  mix-blend-mode: multiply;
}
.category-tile-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 12px;
  background: linear-gradient(0deg, rgba(8,7,6,0.85), transparent);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

/* ============================== DESTACADOS ============================== */
.destacados-section {
  background: var(--bg-alabaster);
  padding: 54px 0 16px;
}
.destacados-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.tab-btn {
  background: none;
  border: 1px solid rgba(197, 155, 63, 0.25);
  color: var(--text-dark-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.18s ease;
}
.tab-btn:hover { border-color: var(--gold); color: var(--text-dark-heading); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: #120e06;
}

/* ============================== BARRA DE CONFIANZA ============================== */
.trust-bar {
  background: var(--bg-alabaster);
  padding: 10px 0 44px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
}
.trust-item svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.6;
}
.trust-item span { font-size: 12.5px; font-weight: 600; color: var(--text-dark-body); }

/* ============================== SOBRE NOSOTROS ============================== */
.about-section {
  background: var(--bg-alabaster);
  padding: 0 0 60px;
  text-align: center;
}
.about-section h2 {
  font-size: 22px;
  color: var(--text-dark-heading);
  margin-bottom: 14px;
}
.about-section p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================== HERO ============================== */
.hero {
  padding: 72px 0 54px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(197, 155, 63, 0.15), transparent 70%),
    var(--bg-noir);
  position: relative;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 50px);
  color: var(--text-light-heading);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-sub {
  color: var(--text-light-body);
  max-width: 740px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================== AMOR Y AMISTAD (promo estacional) ============================== */
.love-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230, 198, 112, 0.12), transparent 55%),
    linear-gradient(160deg, #3a0b14 0%, #5c1220 45%, #7a1b2b 100%);
  padding: 56px 0 60px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.love-deco { position: absolute; opacity: 0.16; pointer-events: none; animation: love-float 7s ease-in-out infinite; }
.love-deco svg { width: 100%; height: 100%; fill: var(--gold-bright); color: var(--gold-bright); }
.love-deco--heart1 { width: 70px; height: 64px; top: 8%; left: 4%; animation-delay: 0s; }
.love-deco--heart2 { width: 46px; height: 42px; bottom: 10%; left: 14%; opacity: 0.12; animation-delay: 1.4s; }
.love-deco--heart3 { width: 32px; height: 30px; top: 38%; left: 46%; opacity: 0.09; animation-delay: 3s; }
.love-deco--balloon1 { width: 60px; height: 90px; top: 10%; right: 7%; animation-delay: 0.6s; }
.love-deco--balloon2 { width: 42px; height: 64px; bottom: 6%; right: 16%; opacity: 0.12; animation-delay: 2.1s; }
.love-deco--balloon3 { width: 34px; height: 50px; top: 55%; right: 34%; opacity: 0.08; animation-delay: 4.2s; }

@keyframes love-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* Manchas de luz difuminadas — dan profundidad y un aire más "dreamy" a la sección */
.love-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: love-drift 12s ease-in-out infinite;
}
.love-glow--1 { width: 260px; height: 260px; top: -80px; left: 8%; background: radial-gradient(circle, rgba(230, 198, 112, 0.22), transparent 70%); animation-delay: 0s; }
.love-glow--2 { width: 320px; height: 320px; bottom: -120px; right: 5%; background: radial-gradient(circle, rgba(230, 90, 110, 0.25), transparent 70%); animation-delay: 3s; }
.love-glow--3 { width: 200px; height: 200px; top: 30%; right: 30%; background: radial-gradient(circle, rgba(230, 198, 112, 0.14), transparent 70%); animation-delay: 6s; }

@keyframes love-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .love-deco, .love-glow { animation: none; }
}

/* Revelado suave al hacer scroll (usado por JS vía IntersectionObserver) */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ============================== POPUP PROMO ============================== */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 4, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-popup-overlay.open { display: flex; animation: promo-fade-in 0.3s ease; }

@keyframes promo-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-popup {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 198, 112, 0.3);
  animation: promo-pop-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes promo-pop-in {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-popup-overlay.open { animation: none; }
  .promo-popup { animation: none; }
}

.promo-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(8, 7, 6, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-popup-close:hover { background: rgba(8, 7, 6, 0.8); }

.promo-popup-media { position: relative; aspect-ratio: 3 / 4; max-height: 58vh; overflow: hidden; }
.promo-popup-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.promo-popup-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(0deg, var(--bg-card), transparent);
}

.promo-popup-body { padding: 4px 26px 26px; text-align: center; }
.promo-popup-body .love-eyebrow { color: #b3102b; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.promo-popup-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text-dark-heading);
  margin-bottom: 10px;
  line-height: 1.25;
}
.promo-popup-body p:not(.love-eyebrow) { color: var(--text-dark-muted); font-size: 13px; line-height: 1.6; margin-bottom: 18px; }
.promo-popup-body .hero-primary { display: inline-flex; }

.love-inner { position: relative; text-align: center; z-index: 1; }
.love-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 12px;
}
.love-title {
  font-size: clamp(26px, 4.5vw, 38px);
  color: #fff5f0;
  margin-bottom: 14px;
}
.love-sub {
  color: #f0d9d9;
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.6;
}
.love-sub strong { color: var(--gold-bright); }

.love-grid { text-align: left; }
.love-grid .product-card { border-color: rgba(230, 198, 112, 0.35); }
.love-grid .product-card:hover { border-color: var(--gold-bright); }

/* Espacio fijo para badge en todas las tarjetas — garantiza alineación horizontal idéntica */
.product-badge-slot {
  height: 29px;
  min-height: 29px;
  display: flex;
  align-items: stretch;
  background: var(--card-image-bg);
  position: relative;
  z-index: 2;
}

.love-badge-strip {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(90deg, #8f0f26, #e63950, #8f0f26);
  background-size: 200% 100%;
  animation: love-shimmer 4s ease-in-out infinite;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0 10px;
  text-align: center;
  box-sizing: border-box;
}

.badge-slot-spacer {
  display: block;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
@keyframes love-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.product-card--love {
  border-color: rgba(230, 198, 112, 0.45);
  box-shadow: 0 6px 20px rgba(179, 16, 43, 0.1);
}

.love-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #e63950, #b3102b);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(179, 16, 43, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-was {
  font-size: 12.5px;
  color: var(--text-dark-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 500;
}
.price-now { color: #b3102b; }

@media (max-width: 640px) {
  .love-deco { display: none; }
}

/* ============================== CATALOG SECTION ============================== */
/* Smooth gradient transition from Dark Hero to Light Alabaster Canvas */
.catalog-section {
  background: var(--bg-alabaster);
  color: var(--text-dark-body);
  position: relative;
  border-top: 1px solid var(--gold-border);
  box-shadow: inset 0 20px 30px -15px rgba(0, 0, 0, 0.25);
  padding: 40px 0 70px;
}

.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 2.5vw, 44px);
  align-items: start;
}

/* ---------------- FILTROS (LIGHT LUXURY) ---------------- */
.filters {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.filters-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197, 155, 63, 0.15);
}
.filters-head h2 {
  font-size: 18px;
  color: var(--text-dark-heading);
  flex: 1;
  letter-spacing: 0.5px;
}
.link-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 12.5px;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.link-btn:hover { color: var(--gold); }
.close-filters { display: none; }

.filter-group { margin-bottom: 24px; }
.filter-group h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark-muted);
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #f4efe6;
  border: 1px solid rgba(197, 155, 63, 0.2);
  color: var(--text-dark-body);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  transition: all 0.18s ease;
  user-select: none;
}
.chip:hover {
  border-color: var(--gold);
  background: #ede6d8;
  color: var(--text-dark-heading);
}
.chip.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: #120e06;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(197, 155, 63, 0.25);
}

.select-input {
  width: 100%;
  background: #f4efe6;
  border: 1px solid rgba(197, 155, 63, 0.25);
  color: var(--text-dark-heading);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.15s;
}
.select-input:focus { border-color: var(--gold); }

.filters-backdrop { display: none; }

/* ---------------- CATALOG GRID & CARDS ---------------- */
.catalog-meta {
  color: var(--text-dark-muted);
  font-size: 13.5px;
  margin-bottom: 20px;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(18px, 1.8vw, 26px);
}

.empty-state { color: var(--text-dark-muted); text-align: center; padding: 70px 0; font-size: 15px; }

/* The Luxury Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold-border-bright);
}

/* Image section on clean white background with mix-blend-mode */
.product-card-imgwrap {
  background: var(--card-image-bg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 155, 63, 0.1);
}
.product-card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-imgwrap img {
  transform: scale(1.06);
}

.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20, 18, 15, 0.9);
  color: #f2ede4;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  backdrop-filter: blur(4px);
}

.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark-heading);
  cursor: pointer;
  line-height: 1.25;
  transition: color 0.15s;
}
.product-name:hover { color: var(--gold-dark); }
.product-size { font-size: 12px; color: var(--text-dark-muted); }

.product-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 6px 0 4px; }
.tag {
  font-size: 10.5px;
  color: var(--text-dark-body);
  background: #f2ebe1;
  border: 1px solid rgba(197, 155, 63, 0.18);
  padding: 3px 9px;
  border-radius: 999px;
}

.product-rating {
  font-size: 12.5px;
  color: #d4a017;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 18px;
}
.product-rating .count { color: var(--text-dark-muted); font-size: 11.5px; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.urgency-note {
  margin: 4px 0 0;
  font-size: 10.5px;
  font-weight: 600;
  color: #b3102b;
}
.product-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark-heading);
  font-family: var(--font-sans);
}

.product-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 12px; }

/* Buttons */
.btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn:active { transform: scale(0.97); }
.btn-block { width: 100%; }

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark);
  flex: 1;
}
.btn-outline-gold:hover {
  background: var(--gold-dark);
  color: #ffffff;
  border-color: var(--gold-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #120e06;
  flex: 1;
  box-shadow: 0 4px 14px rgba(197, 155, 63, 0.28);
}
.btn-gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(197, 155, 63, 0.38);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #041c0c;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: #ffffff;
}

.btn-disabled, .btn:disabled {
  background: #e2dbce !important;
  color: #9c9487 !important;
  border-color: #d1c8b8 !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

/* ============================== FOOTER (DEEP NOIR) ============================== */
.site-footer {
  background: var(--bg-noir);
  color: var(--text-light-body);
  border-top: 1px solid var(--gold-border);
  padding: 44px 0 54px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}
.footer-col--brand p { margin: 14px 0 0; color: var(--text-light-muted); font-size: 13px; }
.footer-col--brand strong { color: var(--gold-bright); font-family: var(--font-serif); font-size: 18px; letter-spacing: 1.5px; }

.footer-link {
  display: block;
  background: none;
  border: none;
  color: var(--text-light-muted);
  font-size: 13.5px;
  text-align: left;
  padding: 5px 0;
  transition: color 0.15s;
  cursor: pointer;
}
.footer-link:hover { color: var(--gold-bright); }

.footer-whatsapp-pill { margin: 10px 0 16px; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { margin: 0; color: var(--text-light-muted); font-size: 12px; }

.footer-links { display: flex; align-items: center; gap: 14px; margin-top: 18px; }

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold-bright);
  transition: all 0.2s ease;
}
.icon-pill svg { width: 20px; height: 20px; }
.icon-pill:hover {
  background: var(--gold);
  color: #120e06;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #041c0c;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}
.whatsapp-pill svg { width: 20px; height: 20px; }
.whatsapp-pill:hover {
  background: var(--whatsapp-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============================== MODAL: PRODUCTO ============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 3, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.product-modal {
  background: #ffffff;
  color: var(--text-dark-body);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-pop);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f4efe6;
  color: var(--text-dark-heading);
  z-index: 5;
  border: 1px solid rgba(197, 155, 63, 0.2);
}
.modal-close:hover { background: var(--gold-dark); color: #ffffff; }

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pm-image {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: var(--radius-lg) 0 0 0;
  border-right: 1px solid rgba(197, 155, 63, 0.12);
}
.pm-image img { max-height: 400px; object-fit: contain; mix-blend-mode: multiply; }

.pm-info { padding: 36px 36px 30px; display: flex; flex-direction: column; }
.pm-brand { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-dark); font-weight: 700; margin-bottom: 6px; }
.pm-name { font-size: 28px; color: var(--text-dark-heading); margin-bottom: 4px; font-weight: 600; }
.pm-size { color: var(--text-dark-muted); font-size: 13.5px; margin-bottom: 14px; }
.pm-rating { display: flex; align-items: center; gap: 8px; color: #d4a017; font-size: 13.5px; margin-bottom: 16px; }
.pm-price { font-size: 28px; font-weight: 700; color: var(--text-dark-heading); margin-bottom: 18px; }
.pm-desc { color: var(--text-dark-body); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }

.pm-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dark-muted); margin-bottom: 8px; font-weight: 700; }
.pm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

.pm-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(197, 155, 63, 0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f8f4ec;
}
.qty-control button {
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--text-dark-heading);
  font-size: 16px;
  font-weight: 700;
  border: none;
}
.qty-control button:hover { background: #eadecc; }
.qty-control span { width: 36px; text-align: center; font-size: 14px; font-weight: 700; }

.pm-actions { display: flex; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.pm-actions .btn { flex: 1; min-width: 160px; padding: 14px 16px; }

.out-of-stock-note { color: var(--danger); font-size: 13px; font-weight: 600; margin-bottom: 12px; }

/* ---------------- Reviews Modal Section ---------------- */
.pm-reviews {
  border-top: 1px solid rgba(197, 155, 63, 0.15);
  background: #fbf9f5;
  grid-column: 1 / -1;
  padding: 30px 36px 36px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.pm-reviews h3 { font-size: 20px; color: var(--text-dark-heading); margin-bottom: 16px; }

.review-summary { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.review-summary .avg { font-size: 32px; font-weight: 700; font-family: var(--font-serif); color: var(--text-dark-heading); }
.review-summary .stars { color: #d4a017; font-size: 17px; letter-spacing: 2px; }
.review-summary .count { color: var(--text-dark-muted); font-size: 13px; }

.review-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.review-item {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 63, 0.18);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.review-item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-item-name { font-weight: 700; font-size: 14px; color: var(--text-dark-heading); }
.review-item-date { font-size: 11.5px; color: var(--text-dark-muted); }
.review-item-stars { color: #d4a017; font-size: 13.5px; margin-bottom: 6px; }
.review-item-comment { font-size: 14px; color: var(--text-dark-body); line-height: 1.55; }
.no-reviews { color: var(--text-dark-muted); font-size: 14px; }

.review-form { border-top: 1px solid rgba(197, 155, 63, 0.18); padding-top: 20px; }
.review-form h4 { font-size: 14px; margin: 0 0 12px; color: var(--text-dark-heading); font-family: var(--font-sans); font-weight: 700; }

.star-input { display: flex; gap: 6px; margin-bottom: 14px; }
.star-input button {
  background: none;
  border: none;
  font-size: 26px;
  color: #d5cebf;
  line-height: 1;
  padding: 0;
  transition: color 0.15s;
}
.star-input button.active { color: #d4a017; }

.review-form input[type="text"], .review-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(197, 155, 63, 0.25);
  color: var(--text-dark-heading);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 12px;
  resize: vertical;
  outline: none;
}
.review-form input[type="text"]:focus, .review-form textarea:focus {
  border-color: var(--gold-dark);
}
.review-form textarea { min-height: 80px; }

/* ============================== CART DRAWER ============================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,4,3,0.7);
  backdrop-filter: blur(4px);
  z-index: 90;
  display: none;
}
.drawer-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  color: var(--text-dark-body);
  border-left: 1px solid var(--gold-border);
  z-index: 95;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
}
.cart-drawer.open { right: 0; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(197, 155, 63, 0.18);
  background: #fbf9f5;
}
.cart-head h2 { font-size: 20px; color: var(--text-dark-heading); }
.cart-head .icon-btn { color: var(--text-dark-heading); }
.cart-head .icon-btn:hover { background: #ede6d8; }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-items:has(.cart-empty) { justify-content: center; }
.cart-empty { text-align: center; color: var(--text-dark-muted); font-size: 14.5px; }

.cart-item { display: flex; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid rgba(197,155,63,0.1); }
.cart-item-img {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: 1px solid rgba(197,155,63,0.18);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--text-dark-heading); margin-bottom: 2px; }
.cart-item-size { font-size: 12px; color: var(--text-dark-muted); margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-remove { background: none; border: none; color: var(--text-dark-muted); font-size: 12px; text-decoration: underline; padding: 0; margin-top: 6px; cursor: pointer; }
.cart-item-remove:hover { color: var(--danger); }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--text-dark-heading); }

.cart-footer { border-top: 1px solid rgba(197, 155, 63, 0.18); padding: 20px 24px 24px; background: #fbf9f5; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 16px; color: var(--text-dark-heading); }
.cart-total-row strong { font-size: 22px; color: var(--text-dark-heading); font-family: var(--font-sans); }

.cart-promo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: linear-gradient(135deg, #fdecef, #fbe0e5);
  border: 1px solid rgba(179, 16, 43, 0.25);
  color: #7a0f24;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.cart-promo-row span { color: #b3102b; font-weight: 800; }
.cart-clear { display: block; margin: 12px auto 0; color: var(--text-dark-muted); }

/* ============================== TOAST ============================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--bg-noir-elevated-2);
  border: 1px solid var(--gold);
  color: var(--text-light-heading);
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
}

@media (max-width: 960px) {
  .layout { grid-template-columns: 1fr; }
  .menu-toggle { display: flex; }
  .header-search { display: none; }
  .icon-btn.search-toggle-mobile { display: flex; }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 72px;
    gap: 8px;
  }
  .header-inner .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .brand-logo { height: 48px; }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .filters {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 84%;
    max-width: 340px;
    z-index: 101;
    border-radius: 0;
    overflow-y: auto;
    transition: left 0.28s ease;
  }
  .filters.open { left: 0; }
  .close-filters { display: flex; }
  .filters-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,4,3,0.7);
    backdrop-filter: blur(4px);
    z-index: 100;
  }
  .filters-backdrop.open { display: block; }

  .product-modal-body { grid-template-columns: 1fr; }
  .pm-image { border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-right: none; border-bottom: 1px solid rgba(197,155,63,0.12); padding: 28px; }
  .pm-image img { max-height: 280px; }
  .pm-info { padding: 26px 24px; }
  .pm-reviews { padding: 24px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .announce-item { font-size: 11.5px; padding: 8px 28px 8px 16px; }
  .announce-close { padding: 0 14px 0 4px; }
}

@media (max-width: 640px) {
  .love-deco { display: none; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card-imgwrap {
    padding: 14px;
  }
  .product-card-body {
    padding: 12px 12px 14px;
    gap: 4px;
  }
  .product-name {
    font-size: 14.5px;
  }
  .product-price {
    font-size: 15.5px;
  }
  .btn {
    font-size: 12px;
    padding: 9px 12px;
  }
}

@media (max-width: 480px) {
  .brand-logo { height: 42px; }
  .hero { padding: 44px 0 32px; }
  .hero h1 { font-size: 28px; }
  .cart-drawer { max-width: 100%; }
}
