/**
 * ╔══════════════════════════════════════════════════════════════╗
 * ║  home.css — Stiluri specifice Homepage                       ║
 * ║                                                              ║
 * ║  IMPORTANT: Acest fișier conține NUMAI stiluri unice          ║
 * ║  paginii home. Stilurile globale sunt în:                    ║
 * ║  - src/tokens/design-tokens.css  (variabile)                 ║
 * ║  - src/core/reset.css            (reset)                     ║
 * ║  - src/core/utilities.css        (utilitare)                 ║
 * ║  - src/core/animations.css       (animații)                  ║
 * ║  - src/components/nav/nav.css    (navigare)                  ║
 * ║                                                              ║
 * ║  SECȚIUNI:                                                   ║
 * ║  §1  Hero Split         — split 50/50 cu tort SVG            ║
 * ║  §2  Features Marquee   — strip animat ingrediente           ║
 * ║  §3  About              — povestea Mariei                    ║
 * ║  §4  Products Grid      — categorii de torturi               ║
 * ║  §5  Process            — cum lucrez (4 pași)                ║
 * ║  §6  Ingredients        — de ce ingrediente naturale         ║
 * ║  §7  Gallery Masonry    — galerie cu filtrare                ║
 * ║  §8  Testimonials       — recenzii clienți                   ║
 * ║  §9  Stats Counter      — numere cheie                       ║
 * ║  §10 FAQ Accordion      — întrebări frecvente                ║
 * ║  §11 Blog Preview       — ultimele articole                  ║
 * ║  §12 Contact            — formular + info                    ║
 * ║  §13 Floating Elements  — WhatsApp, ScrollTop, Cookie       ║
 * ╚══════════════════════════════════════════════════════════════╝
 */

/* ══════════════════════════════════════════════════
   §1 HERO — Split Layout (Desktop: 50/50)
   Design unic: stânga = text, dreapta = ilustrație
   cu efecte flotante și particule decorative
══════════════════════════════════════════════════ */

.hero {
  min-height: 100svh; /* svh = Small Viewport Height — corect pe mobile */
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* ── Panoul stâng: conținut text ── */
.hero__left {
  padding: var(--sp-20) var(--sp-12) var(--sp-20) var(--sp-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Eticheta mică de deasupra titlului */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-vanilla-300);
  border: 1px solid rgba(200, 135, 58, 0.22);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-caramel-700);
  margin-bottom: var(--sp-6);
  width: fit-content;
}

/* Punct pulsant — indicator „live" */
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

/* Titlul principal hero */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--txt-secondary);
  margin-bottom: var(--sp-6);
}

/* Cuvânt italic colorat în caramel */
.hero__title em {
  font-style: italic;
  color: var(--brand);
}

/* Cuvânt decorativ în font script */
.hero__title .t-script {
  font-family: var(--font-script);
  font-size: 1.08em;
  color: var(--accent);
}

/* Descrierea */
.hero__desc {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--txt-muted);
  max-width: 48ch;
  margin-bottom: var(--sp-10);
  font-weight: var(--fw-light);
}

/* Butoanele CTA */
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--sp-12);
}

/* Social proof — avatare + stele */
.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}

.hero__avatars {
  display: flex;
  flex-shrink: 0;
}
.hero__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-card);
  display: grid;
  place-items: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}
.hero__avatar:not(:first-child) { margin-left: -10px; }
.hero__avatar--a { background: var(--clr-peach-300);   color: var(--clr-peach-700); }
.hero__avatar--b { background: var(--clr-caramel-200); color: var(--clr-caramel-700); }
.hero__avatar--c { background: var(--clr-sage-200);    color: var(--clr-sage-700); }
.hero__avatar--d { background: var(--clr-gold-300);    color: var(--clr-gold-700); }

.hero__proof-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--txt-secondary);
}
.hero__proof-text span {
  font-size: var(--fs-xs);
  color: var(--txt-light);
}
.hero__stars {
  color: var(--clr-gold-400);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

/* ── Panoul drept: ilustrație ── */
.hero__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg,
    var(--clr-vanilla-300) 0%,
    var(--clr-caramel-200) 45%,
    var(--clr-caramel-300) 100%
  );
}

/* Pattern de fundal — puncte delicate */
.hero__pattern {
  position: absolute; inset: 0;
  background-image: var(--pattern-dots);
  opacity: 0.9;
  pointer-events: none;
}

/* Container tortul ilustrat */
.hero__cake-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 78%);
  filter: drop-shadow(0 24px 48px rgba(92, 51, 23, 0.20));
}

/* Badge-urile flotante */
.hero__float {
  position: absolute;
  background: rgba(255, 253, 249, 0.97);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
}
.hero__float--1 { top: 13%; right: 5%; }
.hero__float--2 { bottom: 22%; left: 4%; }
.hero__float--3 { top: 52%; right: 3%; }

.hero__float-icon { font-size: 1.5rem; }
.hero__float-name {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--txt-secondary);
}
.hero__float-sub {
  font-size: var(--fs-xs);
  color: var(--txt-muted);
}

/* Scroll hint animat */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0.45;
  animation: floatGentle 2.5s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--txt-muted);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--brand), transparent);
}

/* ══════════════════════════════════════════════════
   §2 FEATURES MARQUEE
══════════════════════════════════════════════════ */
.features-strip {
  background: var(--bg-dark);
  padding-block: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.features-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(200, 135, 58, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.features-track { overflow: hidden; display: flex; }
.features-list  {
  display: flex;
  flex-shrink: 0;
  animation: marquee 32s linear infinite;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-inline: var(--sp-10);
  white-space: nowrap;
  border-right: 1px solid var(--border-on-dark);
}
.feature-item__icon { font-size: 1.2rem; }
.feature-item__text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(253, 246, 236, 0.75);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   §4 PRODUCTS GRID
══════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-5);
}
/* Primul card ocupă 2 coloane */
.product-card--wide { grid-column: span 2; }

.product-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
}
.product-card--wide .product-card__img { aspect-ratio: 16 / 9; }

.product-card__emoji {
  font-size: 4.5rem;
  transition: transform var(--dur-slow) var(--ease-out);
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.1));
  z-index: 1;
}
.product-card:hover .product-card__emoji { transform: scale(1.08); }

.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(46, 26, 14, 0.58) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 135, 58, 0.2);
  border-radius: var(--r-full);
  padding: 4px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-caramel-700);
}

.product-card__body { padding: var(--sp-5) var(--sp-5) var(--sp-3); }
.product-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--txt-secondary);
  margin-bottom: var(--sp-2);
}
.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--txt-muted);
  line-height: var(--lh-normal);
}

.product-card__footer {
  padding: var(--sp-3) var(--sp-5) var(--sp-5);
  display: flex; align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
}
.product-card__from {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--txt-light);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--brand);
}

/* Gradienturi de fundal per card */
.grad--nunta    { background: linear-gradient(135deg, #FAF0E0, #F0D8A0); }
.grad--botez    { background: linear-gradient(135deg, #FEF0EE, #F8C8B8); }
.grad--aniversar{ background: linear-gradient(135deg, #F5F0D8, #E0D870); }
.grad--floral   { background: linear-gradient(135deg, #F2F8EC, #C0E8A8); }
.grad--tematic  { background: linear-gradient(135deg, #EEE8F8, #C8C0F0); }
.grad--party    { background: linear-gradient(135deg, #FDE8DC, #F5C0A8); }

/* ══════════════════════════════════════════════════
   §5 PROCESS STEPS
══════════════════════════════════════════════════ */
.process-section { background: var(--bg-dark); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200,135,58,.12), transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(212,133,106,.08), transparent 40%);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative;
}
/* Linia de conexiune */
.process-grid::before {
  content: '';
  position: absolute;
  top: 2.75rem; left: 11%; right: 11%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,135,58,.35) 15%,
    rgba(200,135,58,.35) 85%,
    transparent 100%);
  pointer-events: none;
}

.process-step { text-align: center; }
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: var(--fw-bold);
  display: grid; place-items: center;
  margin: 0 auto var(--sp-4);
  position: relative; z-index: 1;
  box-shadow:
    0 0 0 6px rgba(200,135,58,.18),
    var(--shadow-brand);
}
.process-step__icon {
  width: 70px; height: 70px;
  border-radius: var(--r-md);
  background: rgba(253,246,236,.07);
  border: 1px solid rgba(253,246,236,.1);
  display: grid; place-items: center;
  margin: 0 auto var(--sp-4);
  font-size: 1.9rem;
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-spring);
}
.process-step:hover .process-step__icon {
  background: rgba(200,135,58,.16);
  transform: scale(1.1) rotate(-6deg);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg); font-weight: var(--fw-medium);
  color: var(--clr-vanilla-200);
  margin-bottom: var(--sp-3);
}
.process-step__desc {
  font-size: var(--fs-sm);
  color: rgba(253,246,236,.52);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════════════════
   §7 GALLERY MASONRY
══════════════════════════════════════════════════ */
.gallery-filters {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
  justify-content: center; margin-bottom: var(--sp-10);
}
.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  cursor: pointer; border: 1.5px solid var(--border-soft);
  color: var(--txt-muted); background: transparent;
  transition: all var(--dur-base);
}
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.gallery-masonry { columns: 4; gap: 1rem; column-gap: 1rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
}
.gallery-item:hover { transform: scale(1.025); }
.gallery-item__visual {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.gallery-item__emoji {
  font-size: 3.5rem; padding: var(--sp-8) var(--sp-4);
  display: block; text-align: center; line-height: 1;
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery-item:hover .gallery-item__emoji { transform: scale(1.1); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,26,14,.65) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--dur-base);
  display: flex; align-items: flex-end;
  padding: var(--sp-4);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  font-family: var(--font-display);
  font-style: italic; color: #fff;
  font-size: var(--fs-base); line-height: var(--lh-snug);
}

/* ══════════════════════════════════════════════════
   §8 TESTIMONIALS
══════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.review-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--border-subtle);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card--featured { background: var(--brand); border-color: transparent; }
.review-card--wide { grid-column: span 2; }

.review-stars { display: flex; gap: 3px; color: var(--gold); font-size: var(--fs-base); margin-bottom: var(--sp-4); }
.review-card--featured .review-stars { color: var(--clr-gold-300); }
.review-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--fs-md); color: var(--txt-muted);
  line-height: var(--lh-relaxed); margin-bottom: var(--sp-6);
}
.review-card--featured .review-quote { color: rgba(255,255,255,.9); }
.review-author { display: flex; align-items: center; gap: var(--sp-3); }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: var(--fw-bold); font-size: var(--fs-sm);
  flex-shrink: 0;
}
.review-name { font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--txt-secondary); }
.review-event { font-size: var(--fs-xs); color: var(--txt-light); margin-top: 2px; }
.review-card--featured .review-name { color: #fff; }
.review-card--featured .review-event { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════
   §9 STATS
══════════════════════════════════════════════════ */
.stats-section { background: var(--clr-vanilla-300); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
  border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--brand); line-height: 1;
}
.stat-divider {
  width: 36px; height: 2px;
  background: var(--clr-caramel-300);
  border-radius: 1px;
  margin: var(--sp-3) auto var(--sp-3);
}
.stat-label {
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider); text-transform: uppercase;
  color: var(--txt-muted);
}

/* ══════════════════════════════════════════════════
   §10 FAQ
══════════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-lg); font-weight: var(--fw-semibold);
  color: var(--txt-secondary); text-align: left;
  transition: background var(--dur-fast);
}
.faq-question:hover { background: rgba(200,135,58,.05); }
.faq-icon {
  font-size: 1.3rem; color: var(--brand);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0; margin-left: var(--sp-4);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-base); color: var(--txt-muted);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════════════════
   §13 FLOATING ELEMENTS
══════════════════════════════════════════════════ */

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-6);
  z-index: var(--z-overlay);
  width: 60px; height: 60px;
  border-radius: var(--r-full);
  background: #25D366;
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-pulse {
  position: absolute; inset: -5px;
  border-radius: var(--r-full);
  background: rgba(37,211,102,.25);
  animation: pulseRing 2.8s ease-out infinite;
}

/* Scroll to Top */
.scroll-top-btn {
  position: fixed;
  bottom: var(--sp-6); right: 5.5rem;
  z-index: var(--z-overlay);
  width: 46px; height: 46px;
  border-radius: var(--r-full);
  background: var(--brand); color: #fff;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-brand);
  transition: all var(--dur-base) var(--ease-spring);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
}
.scroll-top-btn.visible {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand-lg);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed; inset-block-end: 0; inset-inline: 0;
  background: var(--bg-dark);
  z-index: var(--z-overlay);
  padding: var(--sp-5) var(--sp-8);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); flex-wrap: wrap;
  border-top: 2px solid var(--brand);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text {
  font-size: var(--fs-sm);
  color: rgba(253,246,236,.68);
  max-width: 600px; line-height: var(--lh-relaxed);
}
.cookie-banner__text a { color: var(--clr-caramel-300); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: var(--sp-8); left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-3);
  pointer-events: none;
}
.toast {
  background: var(--bg-dark); color: var(--txt-on-dark);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-xl);
  pointer-events: all;
  animation: toastIn var(--dur-base) var(--ease-spring) both;
}
.toast--success { background: var(--clr-sage-700); }
.toast--error   { background: var(--clr-error-700); }
.toast--warning { background: var(--clr-caramel-700); }
.toast--info    { background: var(--clr-choco-700); }

/* Page Progress */
#pageProgress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg,
    var(--clr-caramel-300),
    var(--clr-peach-500),
    var(--clr-gold-400));
  z-index: var(--z-top);
  border-radius: 0 2px 2px 0;
  transition: width 0.15s linear;
  opacity: 0;
  transition: width .15s linear, opacity .3s;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Home Page
══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .product-card--wide { grid-column: span 2; }
  .gallery-masonry { columns: 3; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left  { padding: var(--sp-20) var(--sp-8); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card--wide { grid-column: span 2; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border-subtle); }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card--wide { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--wide { grid-column: span 1; }
  .gallery-masonry { columns: 2; }
  .cookie-banner { flex-direction: column; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .gallery-masonry { columns: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
