/* =========================================================
   Product card — D2C minimalist style
   Colored backdrop, large product, visible CTA, ingredient chip
   ========================================================= */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cat-bg, var(--bone));
}
.product-card__art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__art { transform: scale(1.04); }

/* Decorative blob behind the CSS bottle (only when no real photo) */
.product-card__media:not(.has-photo)::before {
  content: "";
  position: absolute; inset: 14% 16%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Real product photo fills the media area. Images are pre-trimmed and carry a
   small built-in margin, so object-fit: contain shows the WHOLE product (never
   cropped) at full size within the square.
   NOTE: the img is absolutely positioned against the (definite-size) art box so
   height:100% has a definite reference. Inside the grid, a percentage height
   resolves to `auto` (intrinsic height) and object-fit:contain silently breaks —
   tall images then overflow and get clipped, looking exactly like cover-crop. */
.product-card__art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

/* Wishlist toggle — frosted circular button over the product media. */
.product-card__wishlist {
  position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px) saturate(1.15);
  backdrop-filter: blur(8px) saturate(1.15);
  border: 1px solid rgba(11, 23, 51, 0.06);
  box-shadow: 0 2px 8px rgba(11, 23, 51, 0.14);
  z-index: 2;
  transition: all var(--t-fast);
}
.product-card__wishlist:hover { background: var(--ink-900); color: var(--honey-500); }
.product-card__wishlist.is-active { color: var(--brand-600); background: var(--brand-50); }
.product-card__wishlist.is-active:hover { background: var(--brand-600); color: #fff; }
.product-card__wishlist svg { width: 18px; height: 18px; transition: transform var(--t-fast); }
/* When wishlisted, fill the heart so users can see at a glance */
.product-card__wishlist.is-active svg path { fill: currentColor; stroke: currentColor; }
.product-card__wishlist.is-active svg { animation: heart-pop 320ms var(--ease-out); }
@keyframes heart-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.product-card__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--paper);
}
.product-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.product-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.product-card__title a:hover { color: var(--brand-700); }

.product-card__benefits {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.4;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.product-card__benefits span {
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card__benefits span::before {
  content: "•"; color: var(--brand-500); font-weight: 800;
}

.product-card__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--slate-600);
  margin-top: 2px;
}
.product-card__rating .stars { color: var(--honey-500); letter-spacing: 1px; font-size: 12px; }

/* Pack-size segmented control — stacked text so it works at all widths */
.product-card__packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--mist);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 4px;
  margin-top: 12px;
}
.product-card__packs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 6px 4px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--slate-600);
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  background: transparent;
  line-height: 1.1;
  min-height: 38px;
  white-space: nowrap;
}
.product-card__packs button:hover { color: var(--ink-900); }
@media (max-width: 380px) {
  .product-card__packs button { font-size: 10px; padding: 6px 2px; min-height: 34px; }
  .product-card__packs button small { font-size: 8px; }
}
.product-card__packs button.is-active {
  background: var(--ink-900);
  color: #fff;
  box-shadow: 0 4px 10px -3px rgba(11,23,51,0.25);
}
.product-card__packs button small {
  font-size: 9px;
  font-weight: 800;
  color: var(--brand-600);
  letter-spacing: 0.04em;
}
.product-card__packs button.is-active small { color: var(--honey-500); }

.product-card__row {
  margin-top: 12px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.product-card__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product-card__price .now {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.product-card__price .was {
  font-size: 13px; color: var(--slate-400); text-decoration: line-through;
}
.product-card__price .save {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Two-button action row (Add + Buy Now) */
.product-card__actions {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.product-card__add {
  background: var(--ink-900);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
  position: relative;
  flex-shrink: 0;
}
.product-card__add svg { width: 18px; height: 18px; }
.product-card__add span { display: none; }
.product-card__add:hover { background: var(--brand-700); transform: translateY(-1px); }
.product-card__add::before {
  /* tooltip on hover */
  content: "Add to Bag";
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.product-card__add:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card__buy {
  background: var(--brand-600);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), padding var(--t-fast);
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  box-shadow: 0 6px 14px -4px rgba(26,86,219,0.4);
  white-space: nowrap;
  min-width: 0;
}
.product-card__buy svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform var(--t-fast); }
.product-card__buy:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(26,86,219,0.55); }
.product-card__buy:hover svg { transform: translateX(3px); }

/* At narrow card widths shrink the button so it stays single-line */
@media (max-width: 1100px) {
  .product-card__buy { padding: 10px 12px; font-size: 10px; letter-spacing: 0.04em; }
}
@media (max-width: 480px) {
  .product-card__body { padding: 16px 16px 18px; gap: 6px; }
  .product-card__actions { grid-template-columns: 40px minmax(0, 1fr); gap: 6px; }
  .product-card__add { width: 40px; height: 40px; }
  .product-card__add svg { width: 16px; height: 16px; }
  .product-card__buy { padding: 10px 10px; font-size: 10px; letter-spacing: 0.03em; }
  .product-card__buy svg { width: 10px; height: 10px; }
}

/* =========================================================
   Bottle / jar / tincture art (CSS-generated placeholder)
   ========================================================= */
.bottle-art {
  position: relative;
  width: 56%;
  height: 78%;
  border-radius: 14px 14px 22px 22px / 14px 14px 50px 50px;
  background: linear-gradient(160deg, var(--bottle-1, #0F3D8E), var(--bottle-2, #06255A));
  box-shadow:
    inset -16px -10px 40px rgba(0,0,0,0.35),
    inset 18px 8px 30px rgba(255,255,255,0.10),
    0 30px 50px -20px rgba(11,23,51,0.4);
  display: grid; place-items: center;
  overflow: hidden;
  z-index: 1;
}
.bottle-art::before {
  content: "";
  position: absolute; top: -7%; left: 50%; transform: translateX(-50%);
  width: 32%; height: 16%;
  background: linear-gradient(180deg, #1a2647, #0a1424);
  border-radius: 6px 6px 4px 4px;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.4);
}
.bottle-art::after {
  content: "";
  position: absolute; left: 8%; top: 12%; bottom: 12%;
  width: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  border-radius: 4px;
  filter: blur(0.5px);
}

.bottle-label {
  width: 76%;
  padding: 14px 10px;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-sans);
  color: var(--ink-900);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.06);
}
.bottle-label .lbl-eyebrow {
  font-family: var(--font-sans);
  font-size: 7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-700);
  font-weight: 800;
}
.bottle-label .lbl-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 6px;
}
.bottle-label .lbl-meta {
  font-family: var(--font-sans);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 600;
  margin-top: 6px;
}
.bottle-label .lbl-rule {
  width: 24px; height: 2px;
  background: var(--brand-600);
  margin: 5px auto;
  border-radius: 2px;
}

/* Variant: Jar */
.product-card[data-shape="jar"] .bottle-art {
  width: 64%; height: 70%;
  border-radius: 14px;
}
.product-card[data-shape="jar"] .bottle-art::before {
  width: 70%; height: 14%; top: -6%;
  border-radius: 4px;
}

/* Variant: Tincture */
.product-card[data-shape="tincture"] .bottle-art {
  width: 36%;
  border-radius: 6px 6px 22px 22px;
}
.product-card[data-shape="tincture"] .bottle-art::before {
  width: 56%; height: 22%; top: -16%;
  border-radius: 3px 3px 0 0;
}

/* =========================================================
   Interactive 3D bottle — true CSS 3D box with correct geometry
   ========================================================= */
.bottle-3d-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.bottle-3d-stage:active { cursor: grabbing; }

/* Soft floor shadow under the bottle */
.bottle-3d-stage::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 18%;
  width: 40%; height: 22px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(11,23,51,0.4), transparent 65%);
  filter: blur(10px);
  z-index: 0;
}

.bottle-3d {
  /* Box dimensions — front face W x H, depth D */
  --bw: 150px;
  --bh: 230px;
  --bd: 76px;

  position: absolute;
  top: 50%; left: 50%;
  width: var(--bw);
  height: var(--bh);
  margin-top: calc(var(--bh) / -2);
  margin-left: calc(var(--bw) / -2);
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(-4deg);
  will-change: transform;
  transition: transform 80ms linear;
}

.bottle-3d__face {
  position: absolute;
  top: 0; left: 0;
  border-radius: 14px 14px 22px 22px;
  background: linear-gradient(160deg, var(--bottle-1, #0F3D8E) 0%, var(--bottle-2, #06255A) 100%);
  box-shadow:
    inset -16px -10px 36px rgba(0,0,0,0.45),
    inset 14px 8px 24px rgba(255,255,255,0.10);
  overflow: hidden;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
}

/* Glossy highlight strip on each face */
.bottle-3d__face::before {
  content: "";
  position: absolute;
  left: 8%; top: 6%; bottom: 10%;
  width: 6%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 70%);
  border-radius: 4px;
  filter: blur(1px);
  pointer-events: none;
}

/* Front face — full WxH, pushed forward by half depth */
.bottle-3d__face--front {
  width: var(--bw);
  height: var(--bh);
  transform: translateZ(calc(var(--bd) / 2));
}
/* Back face — same WxH, rotated 180 around Y, pushed back by half depth */
.bottle-3d__face--back {
  width: var(--bw);
  height: var(--bh);
  transform: rotateY(180deg) translateZ(calc(var(--bd) / 2));
}
/* Right face — DxH, centered on parent center, rotated 90, pushed by half front-width */
.bottle-3d__face--right {
  width: var(--bd);
  height: var(--bh);
  left: 50%;
  margin-left: calc(var(--bd) / -2);
  transform: rotateY(90deg) translateZ(calc(var(--bw) / 2));
  filter: brightness(0.78);
  border-radius: 8px;
}
/* Left face — same as right, rotated -90 */
.bottle-3d__face--left {
  width: var(--bd);
  height: var(--bh);
  left: 50%;
  margin-left: calc(var(--bd) / -2);
  transform: rotateY(-90deg) translateZ(calc(var(--bw) / 2));
  filter: brightness(0.65);
  border-radius: 8px;
}

/* Cap (3D-aware, sits on top of the box) */
.bottle-3d__cap {
  position: absolute;
  top: calc(var(--bh) * -0.07);
  left: 30%; right: 30%;
  height: calc(var(--bh) * 0.10);
  background: linear-gradient(180deg, #1a2647, #0a1424 70%);
  border-radius: 8px 8px 5px 5px;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--bd) * 0.25));
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.4), 0 6px 12px rgba(0,0,0,0.2);
  z-index: 5;
}
.bottle-3d__cap::before {
  content: "";
  position: absolute;
  inset: 3px 5px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 4px);
}

/* Label on the front face */
.bottle-3d__label {
  width: 80%;
  height: 64%;
  background: #fff;
  border-radius: 4px;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-sans);
  color: var(--ink-900);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.bottle-3d__label .lbl-eyebrow {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-700);
  font-weight: 800;
}
.bottle-3d__label .lbl-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 8px;
}
.bottle-3d__label .lbl-rule {
  width: 30px; height: 2px;
  background: var(--brand-600);
  margin: 8px auto;
  border-radius: 2px;
}
.bottle-3d__label .lbl-meta {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 700;
}

/* Back face: supplement facts strip */
.bottle-3d__back-content {
  width: 80%;
  height: 64%;
  background: rgba(255,255,255,0.94);
  border-radius: 4px;
  padding: 12px 10px;
  font-family: var(--font-sans);
  color: var(--ink-900);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: left;
}
.bottle-3d__back-content .ttl {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-700);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4px;
}
.bottle-3d__back-content .row {
  display: flex; justify-content: space-between;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  padding-bottom: 2px;
}

/* Hint pill — disappears after first interaction */
.bottle-3d-hint {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 8px 14px;
  background: rgba(11,23,51,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
  backdrop-filter: blur(8px);
}
.bottle-3d-hint svg { width: 14px; height: 14px; }
.bottle-3d-stage.has-interacted .bottle-3d-hint { opacity: 0; }

/* =========================================================
   Stat / value cards
   ========================================================= */
.stat-card {
  padding: 32px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.stat-card .num {
  font-family: var(--font-sans);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-card .num small { font-size: 0.5em; color: var(--brand-600); margin-left: 4px; font-weight: 700; }
.stat-card .lbl {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
  margin-top: 12px;
}

/* =========================================================
   Wishlist page — card grid + empty state
   ========================================================= */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.wishlist-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.wishlist-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.wishlist-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.wishlist-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  padding: 8%;
  display: block;
}
.wishlist-card__art-fallback {
  position: absolute; inset: 0;
  display: none; place-items: center;
  background: var(--bone);
}
.wishlist-card__media.no-photo .wishlist-card__art-fallback { display: grid; }
.wishlist-card__media.no-photo .wishlist-card__art-fallback .bottle-art { width: 55%; height: 80%; }

.wishlist-card__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.wishlist-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.wishlist-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.wishlist-card__title a:hover { color: var(--brand-700); }
.wishlist-card__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--slate-600);
}
.wishlist-card__rating .stars { color: var(--honey-500); letter-spacing: 1.5px; font-size: 12px; }
.wishlist-card__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
}
.wishlist-card__price .now {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.wishlist-card__price .was {
  font-size: 13px; color: var(--slate-400); text-decoration: line-through;
}
.wishlist-card__actions {
  margin-top: 14px;
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  align-items: center;
}
.wishlist-card__remove {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  cursor: pointer;
}
.wishlist-card__remove:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: #FEF2F2;
}
.wishlist-card__remove svg { width: 14px; height: 14px; }
.wishlist-card__remove span { white-space: nowrap; }
@media (max-width: 540px) {
  .wishlist-card__remove span { display: none; }
}

/* Empty state */
.wishlist-empty {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--r-xl);
}
.wishlist-empty__icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid; place-items: center;
}
.wishlist-empty__icon svg { width: 32px; height: 32px; }
.wishlist-empty h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.wishlist-empty p {
  color: var(--slate-600);
  margin: 12px auto 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.6;
}
.wishlist-empty__cta {
  margin-top: 28px;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   Toast
   ========================================================= */
.toast-stack {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--ink-900);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  animation: toast-in 240ms var(--ease-out);
  border-left: 3px solid var(--brand-500);
}
.toast .icon { color: var(--brand-400); }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
