/* ============================================
   LIDELLA — Premium Hair Care Store
   Stylesheet
   ============================================ */

/* TOKENS */
:root {
  --cream: #faf8f4;
  --parchment: #f2ede4;
  --dark: #1a1714;
  --dark-2: #2c2820;
  --mid: #5c5348;
  --muted: #9a8f85;
  --gold: #b8915a;
  --gold-light: #d4aa7d;
  --gold-pale: #f5e9d7;
  --accent: #8b6f47;
  --rose: #c4846e;
  --white: #ffffff;
  --border: rgba(92, 83, 72, 0.15);
  --shadow-sm: 0 2px 12px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 23, 20, 0.1);
  --shadow-lg: 0 24px 64px rgba(26, 23, 20, 0.14);
  --radius: 4px;
  --radius-lg: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announcement-bar .sep { opacity: 0.4; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(250, 248, 244, 0.95);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1220px;
  margin: 0 auto;
  gap: 20px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
  white-space: nowrap;
  transition: var(--transition);
}
.logo:hover { color: var(--gold); }
.logo-l {
  color: var(--gold);
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav a:hover { color: var(--dark); }
.nav a:hover::after { width: 100%; }
.nav a.nav-highlight { color: var(--gold); }
.nav a.nav-highlight:hover { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--parchment); color: var(--dark); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cart-count.visible { transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

/* Search Bar */
.search-bar {
  display: none;
  align-items: center;
  padding: 10px 24px;
  border-top: 1px solid var(--border);
  background: var(--parchment);
  gap: 12px;
}
.search-bar.open { display: flex; }
.search-bar input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
}
.search-bar input::placeholder { color: var(--muted); }
.search-close {
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.search-close:hover { color: var(--dark); }

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.5);
  z-index: 950;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 72vw;
  max-width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 960;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.mobile-nav a.nav-highlight { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--muted);
  padding: 8px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 23, 20, 0.72) 0%,
    rgba(26, 23, 20, 0.4) 50%,
    rgba(26, 23, 20, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 0 80px;
  max-width: 620px;
  animation: heroFade 1.2s ease forwards;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  to { left: 100%; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(184, 145, 90, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-sm { padding: 9px 18px; font-size: 0.75rem; }
.btn-full { width: 100%; justify-content: center; }

/* WhatsApp checkout button */
.btn-whatsapp {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.btn-whatsapp:hover {
  background: #128C7E !important;
  border-color: #128C7E !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35) !important;
}

/* ============ BRAND STRIP ============ */
.brands-strip {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
}
.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.brands-inner span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  transition: var(--transition);
}
.brands-inner span:hover { color: var(--gold-light); }
.brands-inner .dot { color: var(--gold); opacity: 0.5; }

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-header p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ============ CATEGORIES ============ */
.categories-section {
  padding: 56px 0 0;
}
.category-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--mid);
  background: var(--white);
  transition: var(--transition);
}
.pill:hover, .pill.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: 40px 0 72px;
}
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.results-count {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 400;
}
.sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--mid);
}
.sort-wrap select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.sort-wrap select:focus { border-color: var(--gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--parchment);
}
.card-link { display: block; width: 100%; height: 100%; }
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .card-img { transform: scale(1.06); }

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
}
.badge-new  { background: var(--dark);  color: var(--white); }
.badge-sale { background: var(--rose);  color: var(--white); }
.badge-free { background: var(--gold);  color: var(--white); }
.badge-best { background: var(--accent); color: var(--white); }

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-4px);
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn:hover { color: var(--rose); background: var(--white); }
.wishlist-btn.active { color: var(--rose); }

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-brand {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.card-title {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--dark);
  flex: 1;
}
.card-title a:hover { color: var(--gold); }
.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
}
.card-rating span {
  font-size: 0.72rem;
  color: var(--muted);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 10px;
}
.card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-old {
  font-size: 0.76rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.price-unit {
  font-size: 0.68rem;
  color: var(--muted);
}
.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-add-cart:hover {
  background: var(--gold);
  transform: scale(1.02);
}
.btn-add-cart.added {
  background: var(--gold);
  animation: btnPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes btnPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ============ PROMO BANNER ============ */
.promo-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 72px 0;
  overflow: hidden;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.promo-text { max-width: 520px; position: relative; z-index: 2; }
.promo-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.promo-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.promo-text p {
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
  font-weight: 300;
  margin-bottom: 28px;
}
.promo-deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.deco-circle {
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgba(184, 145, 90, 0.2);
}
.c1 { width: 280px; height: 280px; top: -140px; right: 0; }
.c2 { width: 200px; height: 200px; top: -100px; right: 40px; animation: spin 20s linear infinite; }
.c3 { width: 120px; height: 120px; top: -60px; right: 80px; border-color: rgba(184,145,90,0.4); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ TRUST SECTION ============ */
.trust-section {
  padding: 72px 0;
  background: var(--parchment);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.trust-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.trust-item p {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  font-weight: 600;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
}
.payment-icons {
  display: flex;
  gap: 10px;
}
.payment-icons span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 9px;
  border-radius: 3px;
}

/* ============ CART DRAWER ============ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.5);
  z-index: 990;
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-overlay.open { display: block; opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--cream);
  z-index: 995;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}
.cart-drawer-close {
  color: var(--muted);
  font-size: 1rem;
  padding: 6px;
  transition: var(--transition);
}
.cart-drawer-close:hover { color: var(--dark); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--muted);
}
.cart-empty svg { opacity: 0.3; }
.cart-empty p { font-size: 0.9rem; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; line-height: 1.35; }
.cart-item-price { font-size: 0.84rem; font-weight: 700; color: var(--gold); }
.cart-item-remove {
  color: var(--muted);
  font-size: 0.8rem;
  padding: 4px;
  transition: var(--transition);
}
.cart-item-remove:hover { color: var(--rose); }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
}
.cart-shipping-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast svg { color: var(--gold); flex-shrink: 0; }

/* ============ HIDDEN / FILTERED ============ */
.product-card.hidden {
  display: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-scroll { left: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .promo-inner { flex-direction: column; text-align: center; }
  .promo-deco { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; }
}
