/* ============================================================
   style.css — House of MY Dr. | Full Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --background: hsl(40, 20%, 98%);
  --foreground: hsl(150, 20%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(150, 20%, 10%);
  --primary: hsl(145, 55%, 30%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(40, 30%, 95%);
  --secondary-foreground: hsl(150, 20%, 15%);
  --muted: hsl(40, 15%, 93%);
  --muted-foreground: hsl(150, 10%, 45%);
  --accent: hsl(0, 70%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(40, 15%, 88%);
  --radius: 0.75rem;

  --brand-mydr:     hsl(145, 63%, 32%);
  --brand-itchstop: hsl(0, 0%, 25%);
  --brand-softwalk: hsl(0, 72%, 55%);
  --brand-nokas:    hsl(12, 85%, 48%);
  --brand-orafree:  hsl(22, 90%, 52%);
  --brand-swachpet: hsl(140, 35%, 30%);
  --brand-maya:     hsl(0, 0%, 15%);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-10px) translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-up { animation: fadeUp 0.8s ease-out both; }
.animate-fade-in { animation: fadeIn 1s ease-out both; }

/* Gradient text */
.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary), hsl(145, 55%, 45%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem;   padding-right: 2rem; } }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: hsla(40, 20%, 98%, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--primary); }
.navbar-right { display: flex; align-items: center; gap: 1rem; }

/* Cart button */
.cart-btn {
  position: relative;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--secondary); }
.cart-btn svg { width: 20px; height: 20px; display: block; }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile hamburger */
.hamburger {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: var(--foreground);
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 49;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }

/* ── Full Page Scroll Container ───────────────────────────── */
#fps-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Navigation dots */
.section-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(120,120,120,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}
.section-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0,0,0,.15);
}
.section-dot:hover { background: rgba(120,120,120,0.6); }

/* Each section slide */
.fps-section {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1),
              opacity  0.8s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform, opacity;
}
.fps-section.active     { transform: translateY(0)     scale(1);    opacity: 1;   z-index: 20; pointer-events: auto; }
.fps-section.above      { transform: translateY(-100%) scale(0.95); opacity: 0;   z-index: 10; pointer-events: none; }
.fps-section.below      { transform: translateY(100%)  scale(1.05); opacity: 0;   z-index: 10; pointer-events: none; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, hsla(145,55%,30%,0.05), var(--background), var(--background));
  overflow: hidden;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob-1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 24rem; height: 24rem;
  background: hsla(145,55%,30%,0.05);
  border-radius: 50%;
  filter: blur(80px);
}
.hero-blob-2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 20rem; height: 20rem;
  background: hsla(0,70%,50%,0.05);
  border-radius: 50%;
  filter: blur(80px);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease-out both;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeUp 0.8s 0.4s ease-out both;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted-foreground);
  font-weight: 300;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.6s ease-out both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.8s 0.8s ease-out both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--secondary); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; color: rgba(120,120,120,0.5); }

/* ── Brand Section (fps) ──────────────────────────────────── */
.brand-section {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand-section-inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Slice reveal overlay */
.brand-slice-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.76,0,0.24,1);
  transform: scaleY(1);
}
.fps-section.active .brand-slice-overlay {
  transform: scaleY(0);
  transition-delay: 0ms;
}
.fps-section:not(.active) .brand-slice-overlay {
  transform: scaleY(1);
  transition-delay: 200ms;
}

/* Brand section blob */
.brand-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
}

/* Brand grid layout */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .brand-grid        { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .brand-grid.reverse { direction: rtl; }
  .brand-grid.reverse > * { direction: ltr; }
}

/* Logo card */
.logo-card-wrapper {
  display: flex;
  justify-content: center;
  transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}
.fps-section:not(.active) .logo-card-wrapper { opacity: 0; transform: translateY(40px); }
.fps-section.active        .logo-card-wrapper { opacity: 1; transform: translateY(0); }

.logo-card {
  position: relative;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow 0.3s;
}
.logo-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.10); }
.logo-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0.1;
  filter: blur(32px);
  transition: opacity 0.3s;
}
.logo-card:hover .logo-card-glow { opacity: 0.2; }
.logo-card img {
  width: 192px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .logo-card img { width: 240px; } }

/* Brand text side */
.brand-text { text-align: center; }
@media (min-width: 1024px) { .brand-text { text-align: left; } }

.brand-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  transition: opacity 0.7s 0.4s, transform 0.7s 0.4s;
}
.fps-section:not(.active) .brand-eyebrow { opacity: 0; transform: translateY(24px); }
.fps-section.active        .brand-eyebrow { opacity: 1; transform: translateY(0); }

.brand-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
}
.fps-section:not(.active) .brand-name { opacity: 0; transform: translateY(24px); }
.fps-section.active        .brand-name { opacity: 1; transform: translateY(0); }

.brand-tagline {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
  transition: opacity 0.7s 0.6s, transform 0.7s 0.6s;
}
.fps-section:not(.active) .brand-tagline { opacity: 0; transform: translateY(24px); }
.fps-section.active        .brand-tagline { opacity: 1; transform: translateY(0); }

.brand-description {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.7s 0.7s, transform 0.7s 0.7s;
}
@media (min-width: 1024px) { .brand-description { margin-left: 0; } }
.fps-section:not(.active) .brand-description { opacity: 0; transform: translateY(24px); }
.fps-section.active        .brand-description { opacity: 1; transform: translateY(0); }

/* Benefit pills */
.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  transition: opacity 0.7s 0.8s, transform 0.7s 0.8s;
}
@media (min-width: 1024px) { .benefits-row { justify-content: flex-start; } }
.fps-section:not(.active) .benefits-row { opacity: 0; transform: translateY(24px); }
.fps-section.active        .benefits-row { opacity: 1; transform: translateY(0); }

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}
.benefit-pill svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* Explore CTA */
.brand-cta-row {
  transition: opacity 0.7s 0.9s, transform 0.7s 0.9s;
}
.fps-section:not(.active) .brand-cta-row { opacity: 0; transform: translateY(24px); }
.fps-section.active        .brand-cta-row { opacity: 1; transform: translateY(0); }

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
.btn-explore:hover { opacity: 0.9; }
.btn-explore:hover .arrow-icon { transform: translateX(4px); }
.arrow-icon { width: 16px; height: 16px; transition: transform 0.2s; }

/* Section counter */
.section-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(120,120,120,0.5);
  letter-spacing: 0.2em;
}

/* ── Brand Detail Page ────────────────────────────────────── */
.brand-hero {
  padding-top: 64px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.brand-hero-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  top: 10%; right: -5%;
  pointer-events: none;
}
.brand-hero-inner {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--foreground); }
.back-link svg { width: 16px; height: 16px; }

.brand-hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .brand-hero-layout { flex-direction: row; gap: 5rem; }
}
.brand-hero-text { flex: 1; }
.brand-hero-logo { flex: 1; display: flex; justify-content: center; }
.brand-hero-logo .logo-card { padding: 4rem; }
.brand-hero-logo .logo-card img { width: 16rem; }
@media (min-width: 768px) { .brand-hero-logo .logo-card img { width: 20rem; } }

.brand-page-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.brand-page-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.brand-page-tagline {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.brand-page-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32rem;
}
.brand-page-benefits { margin-bottom: 2rem; }
.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
.btn-shop:hover { opacity: 0.9; }
.btn-shop svg { width: 16px; height: 16px; }

/* Products section */
.products-section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: 1fr 1fr 1fr; } }

.product-card {
  background: var(--card);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.product-img {
  aspect-ratio: 1;
  background: var(--secondary);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.product-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.product-desc {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}
.btn-cart {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  transition: opacity 0.2s;
}
.btn-cart:hover { opacity: 0.9; }

/* No products */
.no-products {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.footer-links a, .footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: block;
  padding: 0.125rem 0;
}
.footer-links a:hover, .footer-col a:hover { color: rgba(255,255,255,1); }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.3);
}

/* ── 404 page ─────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found h1 { font-size: 3rem; margin-bottom: 1rem; }
.not-found p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* ── Toast notifications ──────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  padding: 0.875rem 1.25rem;
  border-radius: 0.625rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  animation: fadeUp 0.4s ease-out both;
  max-width: 320px;
}
.toast.success { background: var(--primary); color: white; }
.toast.error   { background: hsl(0,70%,50%); color: white; }

/* ── SVG icon helpers ─────────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }
