:root {
  --bg: #050505;
  --surface: rgba(16, 16, 18, 0.9);
  --surface-strong: rgba(22, 22, 24, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.78);
  --muted-soft: rgba(245, 245, 247, 0.58);
  --accent: #ff7a18;
  --accent-soft: #ffcf96;
  --page: min(1360px, calc(100% - 32px));
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #030303;
}
body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  isolation: isolate;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 24, 0.13), transparent 25%),
    radial-gradient(circle at 12% 18%, rgba(255, 186, 118, 0.075), transparent 21%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, #030303 0%, #070707 38%, #040404 100%);
  background-color: #030303;
  background-size: 140% 140%, 120% 120%, 120% 120%, 100% 100%;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}
body.menu-open .page-shell,
body.menu-open .footer {
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}
body.cooking-open {
  overflow: hidden;
}
body.cooking-open .global-nav {
  display: none;
}
body > :not(.cosmos):not(.cookie-banner):not(.scroll-top-button) {
  position: relative;
  z-index: 1;
}
body::before,
body::after,
html::before,
html::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  inset: auto auto auto auto;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.1);
  filter: blur(48px);
  opacity: 0.18;
}
body::after {
  inset: auto auto auto auto;
  right: -90px;
  bottom: 10vh;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255, 179, 107, 0.06);
  filter: blur(48px);
  opacity: 0.18;
}
html::before {
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 86%);
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}
html::after {
  background:
    radial-gradient(circle at 20% 18%, rgba(92, 130, 255, 0.03), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(146, 87, 255, 0.025), transparent 18%),
    radial-gradient(circle at 52% 80%, rgba(255, 122, 24, 0.03), transparent 20%);
  filter: blur(26px);
  opacity: 0.88;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 150, 0.2);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.12), transparent 34%),
    rgba(255,255,255,0.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 18px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 6px;
  border-left: 2px solid #1f1207;
  border-bottom: 2px solid #1f1207;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(0.8);
  transition: opacity 160ms ease, transform 160ms ease;
}
input[type="checkbox"]:hover {
  border-color: rgba(255, 207, 150, 0.38);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.16), transparent 34%),
    rgba(255, 122, 24, 0.08);
}
input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(255, 179, 107, 0.42);
  outline-offset: 3px;
}
input[type="checkbox"]:checked {
  border-color: rgba(255, 207, 150, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.94), rgba(255, 207, 150, 0.88));
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.08),
    0 10px 22px rgba(255, 122, 24, 0.16);
}
input[type="checkbox"]:checked::before {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}
input[type="checkbox"]:disabled {
  cursor: default;
  opacity: 0.8;
}
img { display: block; max-width: 100%; }
.text-accent { color: var(--accent-soft); text-shadow: 0 0 22px rgba(255, 179, 107, 0.14); }
.cosmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.cosmos::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 178, 112, 0.08), transparent 16%),
    linear-gradient(rgba(255, 190, 128, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 190, 128, 0.032) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  -webkit-mask-image: radial-gradient(circle at var(--cursor-x) var(--cursor-y), black 0, rgba(0, 0, 0, 0.86) 9%, transparent 22%);
  mask-image: radial-gradient(circle at var(--cursor-x) var(--cursor-y), black 0, rgba(0, 0, 0, 0.86) 9%, transparent 22%);
  will-change: -webkit-mask-image, mask-image, background;
}
.cosmos__spice {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 92, 0.9), rgba(184, 72, 26, 0.65));
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.1);
  opacity: 0.24;
}
.cosmos__spice--1 { top: 16%; left: 12%; animation: spiceFloatOne 18s ease-in-out infinite; }
.cosmos__spice--2 { top: 26%; right: 18%; animation: spiceFloatTwo 22s ease-in-out infinite; }
.cosmos__spice--3 { top: 48%; left: 8%; animation: spiceFloatThree 24s ease-in-out infinite; }
.cosmos__spice--4 { top: 64%; right: 10%; animation: spiceFloatFour 20s ease-in-out infinite; }
.cosmos__spice--5 { top: 78%; left: 20%; animation: spiceFloatFive 26s ease-in-out infinite; }
.cosmos__spice--6 { top: 14%; right: 8%; animation: spiceFloatSix 28s ease-in-out infinite; }
.cosmos__spice--7 { top: 54%; left: 52%; animation: spiceFloatSeven 30s ease-in-out infinite; }
.cosmos__spice--8 { top: 84%; right: 26%; animation: spiceFloatEight 24s ease-in-out infinite; }
.global-nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 0 0;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.62), rgba(2, 2, 2, 0.08));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
body.menu-open .global-nav {
  z-index: 13000;
}
.global-nav__inner,
.page-shell,
.footer__grid,
.hero,
.section {
  width: var(--page);
  margin: 0 auto;
}
.global-nav__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
}
.brand,
.brand__copy { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.24), rgba(255, 122, 24, 0.1));
  border: 1px solid rgba(255, 122, 24, 0.2);
}
.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.6);
}
.brand__copy { flex-direction: column; align-items: flex-start; gap: 2px; }
.brand__copy small,
.eyebrow,
.footer__eyebrow,
.detail-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}
.brand__text { font-size: 1rem; font-weight: 700; }
.global-nav__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.global-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 13003;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 207, 150, 0.16);
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.024)),
    rgba(255, 179, 107, 0.035);
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  align-content: center;
  justify-items: center;
  gap: 3px;
  grid-auto-rows: max-content;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -12px 24px rgba(255, 122, 24, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.045);
  background: transparent;
  pointer-events: none;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 207, 150, 0.42);
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.2), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
    rgba(255, 179, 107, 0.06);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 247, 238, 0.92), rgba(255, 207, 150, 0.98), rgba(255, 247, 238, 0.88));
  box-shadow:
    0 0 10px rgba(255, 178, 92, 0.2),
    0 1px 0 rgba(0,0,0,0.18);
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}
.nav-toggle span:nth-child(2) {
  width: 18px;
}
.nav-toggle span:last-child {
  margin-bottom: 0;
}
.nav-toggle.is-open span:first-child {
  width: 18px;
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  width: 6px;
  transform: none;
}
.nav-toggle.is-open span:last-child {
  width: 18px;
  transform: translateY(-5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: calc(72px + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 13002;
  display: grid;
  align-items: start;
  padding: 4px max(14px, env(safe-area-inset-left, 0px)) max(18px, env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-right, 0px));
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 24, 0.18), transparent 34%),
    linear-gradient(180deg, #100803 0%, #050404 46%, #030304 100%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  overscroll-behavior: contain;
  isolation: isolate;
}
.mobile-menu[hidden] {
  display: none !important;
}
.mobile-menu__panel {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 28px));
  max-height: calc(100dvh - 92px - env(safe-area-inset-top, 0px));
  max-height: calc(100svh - 92px - env(safe-area-inset-top, 0px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  padding: 0.92rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 207, 150, 0.2);
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 122, 24, 0.2), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(255, 207, 150, 0.08), transparent 34%),
    linear-gradient(180deg, #26150c 0%, #111012 100%);
  box-shadow:
    0 34px 90px rgba(0,0,0,0.5),
    0 0 42px rgba(255, 122, 24, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform-origin: top center;
  animation: menuDrop 260ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.82rem;
  padding-top: 0.1rem;
}
.mobile-menu__head span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(255, 226, 196, 0.7);
}
.mobile-menu__close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-menu__links {
  counter-reset: mobile-nav;
  display: grid;
  gap: 8px;
}
.mobile-menu__links a,
.mobile-menu__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0.82rem 0.9rem;
  border-radius: 19px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 122, 24, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)),
    #171315;
  color: rgba(255, 246, 235, 0.86);
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.mobile-menu__links a::before {
  counter-increment: mobile-nav;
  content: "0" counter(mobile-nav);
  margin-right: 0.72rem;
  color: rgba(255, 179, 107, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.mobile-menu__links a::after {
  content: "→";
  color: rgba(255, 207, 150, 0.52);
  transition: transform 160ms ease, color 160ms ease;
}
.mobile-menu__links a span {
  flex: 1;
}
.mobile-menu__links a:hover,
.mobile-menu__links a:focus-visible,
.mobile-menu__cta:hover,
.mobile-menu__cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 207, 150, 0.26);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 122, 24, 0.13), transparent 32%),
    rgba(255,255,255,0.052);
  color: rgba(255, 248, 240, 0.96);
}
.mobile-menu__links a:hover::after,
.mobile-menu__links a:focus-visible::after {
  transform: translateX(3px);
  color: rgba(255, 207, 150, 0.82);
}
.mobile-menu__links a.is-active {
  border-color: rgba(255, 179, 107, 0.34);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 122, 24, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 179, 107, 0.12), rgba(255,255,255,0.025)),
    rgba(255, 179, 107, 0.06);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 26px rgba(255, 122, 24, 0.07);
}
.mobile-menu__cta {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0.9rem;
  border-color: rgba(255, 207, 150, 0.2);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 122, 24, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.024)),
    rgba(14,14,16,0.72);
  color: rgba(255, 245, 232, 0.92);
}
.mobile-menu__cta .nav-cta__count {
  margin-left: auto;
}
.mobile-menu__note {
  margin: 0.9rem 0 0;
  padding: 0 0.25rem;
  color: rgba(245,245,247,0.56);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}
.global-nav__links a,
.footer-links a,
.text-link { color: var(--muted); }
.global-nav__links a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.global-nav__links a.is-active,
.global-nav__links a:hover,
.footer-links a:hover,
.text-link:hover { color: var(--text); }
.global-nav__links a.is-active,
.global-nav__links a:hover {
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.scroll-top-button {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 9000;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 207, 150, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255,255,255,0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.22), rgba(255, 207, 150, 0.08)),
    rgba(12, 10, 10, 0.78);
  color: rgba(255, 244, 232, 0.96);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.34),
    0 0 30px rgba(255, 122, 24, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.scroll-top-button span {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}
.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(255, 207, 150, 0.36);
  background:
    radial-gradient(circle at 32% 20%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.32), rgba(255, 207, 150, 0.12)),
    rgba(16, 12, 10, 0.86);
}
.nav-cta,
.btn--primary {
  background: linear-gradient(135deg, #ff7a18, #ffb36b);
  color: #1f1207;
}
.nav-cta.is-active {
  box-shadow: 0 0 0 1px rgba(255, 207, 150, 0.45) inset;
}
.nav-cta {
  gap: 8px;
}
.nav-cta--favorites {
  gap: 7px;
  padding: 0.55rem 0.68rem 0.55rem 0.58rem;
  font-size: 0.9rem;
  border-color: rgba(255, 207, 150, 0.16);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 122, 24, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.028)),
    rgba(14, 14, 16, 0.74);
  color: rgba(255, 245, 232, 0.92);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-cta--favorites:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 207, 150, 0.28);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 122, 24, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035)),
    rgba(18, 18, 20, 0.82);
}
.nav-cta__heart {
  width: 26px;
  height: 26px;
  font-size: 0.88rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.28), rgba(255, 179, 107, 0.14)),
    rgba(255,255,255,0.04);
  color: rgba(255, 181, 110, 0.96);
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 122, 24, 0.34);
}
.nav-cta--favorites .nav-cta__count {
  min-width: 21px;
  min-height: 21px;
  font-size: 0.72rem;
  background: rgba(255, 179, 107, 0.12);
  color: rgba(255, 225, 190, 0.96);
}
.nav-cta__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(31, 18, 7, 0.18);
  color: #1f1207;
  font-size: 0.8rem;
}
.btn--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.hero {
  padding: 6rem 0 2rem;
  position: relative;
  z-index: 1;
}
.hero__inner,
.content-panel,
.feature-card,
.recipe-card,
.stat-card,
.detail-panel,
.article-card,
.finder-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__inner,
.content-panel,
.feature-card,
.recipe-card,
.stat-card,
.detail-panel,
.article-card,
.finder-card,
.collection-card,
.shortcut-card,
.footer__grid,
.search-shell,
.section-surface,
.map-frame {
  position: relative;
  z-index: 2;
}
.search-shell {
  overflow: visible;
}
.search-shell:has(.select-popover.is-open),
.tool-controls:has(.select-popover.is-open),
.finder-card:has(.select-popover.is-open) {
  position: relative;
  z-index: 80;
}
.hero__inner { padding: 3rem; border-radius: var(--radius-xl); background: linear-gradient(180deg, rgba(18,18,20,0.96), rgba(12,12,14,0.92)); }
.hero h1 { margin: 0.4rem 0 1rem; font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 0.98; max-width: 15ch; }
.hero__summary,
.section__intro p,
.feature-card p,
.content-panel p,
.recipe-card p,
.article-card p,
.detail-panel p,
.finder-card p,
.footer p { color: var(--muted); line-height: 1.65; }
.hero__actions,
.footer-links,
.finder-card form,
.filters-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__summary { max-width: 68ch; }
.hero__chips,
.inline-list,
.detail-list,
.article-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero__chips li,
.inline-list li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.page-shell { position: relative; z-index: 1; padding-bottom: 4rem; }
.page-shell--top { padding-top: 2rem; }
.section { padding: 1.25rem 0 2rem; }
.section--tight { padding-top: 0.2rem; }
.section__intro { max-width: 840px; margin-bottom: 1.25rem; }
.section__intro h2 { margin: 0.35rem 0 0.75rem; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.stats-row,
.feature-grid,
.recipe-grid,
.triple-grid,
.detail-grid,
.blog-grid,
.quick-grid,
.duo-grid { display: grid; gap: 18px; }
.stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0 0 1.75rem; }
.stat-card,
.feature-card,
.content-panel,
.finder-card,
.detail-panel,
.article-card { border-radius: var(--radius-lg); padding: 1.4rem; }
.stat-card strong { display: block; font-size: 2rem; }
.stat-card span { color: var(--muted); }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card--large { grid-column: span 2; }
.feature-card__label,
.recipe-card__meta { color: rgba(255, 255, 255, 0.65); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; }
.recipe-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.triple-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.triple-grid .content-panel--story {
  grid-column: 1 / -1;
}
.quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.duo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-grid { grid-template-columns: 1.4fr 0.8fr; align-items: start; }
.detail-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; }
.detail-main-column {
  display: grid;
  align-content: start;
  gap: 18px;
}
.recipe-card,
.feature-card,
.content-panel,
.article-card,
.collection-card,
.shortcut-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.recipe-card:hover,
.feature-card:hover,
.content-panel:hover,
.article-card:hover,
.collection-card:hover,
.shortcut-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 107, 0.24);
}
.recipe-card {
  overflow: hidden;
  border-radius: 18px;
  display: block;
  content-visibility: auto;
  contain-intrinsic-size: 360px 430px;
}
.recipe-grid .recipe-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.004)),
    rgba(10, 10, 14, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px) saturate(1.02);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.028);
}
.recipe-card__media { position: relative; overflow: hidden; }
.recipe-grid .recipe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, transparent 45%, rgba(8, 8, 10, 0.18));
  opacity: 0.72;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  justify-content: center;
  border: 1px solid rgba(255, 207, 150, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.024)),
    rgba(10, 10, 14, 0.68);
  color: var(--text);
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.favorite-toggle::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 62%);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}
.favorite-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 179, 107, 0.42);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.28),
    0 0 22px rgba(255, 122, 24, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.favorite-toggle:hover::after {
  opacity: 1;
  transform: scale(1);
}
.favorite-toggle.is-active {
  border-color: rgba(255, 179, 107, 0.58);
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.26), transparent 28%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.9), rgba(255, 179, 107, 0.78));
  box-shadow:
    0 16px 36px rgba(255, 122, 24, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.favorite-toggle__icon {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1;
  color: rgba(255, 205, 156, 0.96);
  transform: translateY(0.5px);
  transition: color 160ms ease, transform 160ms ease;
}
.favorite-toggle.is-active .favorite-toggle__icon {
  color: #1f1207;
  transform: translateY(0.5px) scale(1.08);
}
.favorite-toggle--detail {
  position: static;
}
.recipe-card__media img {
  transition: transform 220ms ease, filter 220ms ease;
}
.recipe-card:hover .recipe-card__media img,
.recipe-card:hover .recipe-image-placeholder {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.04);
}
.recipe-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 7, 0.38));
}
.recipe-card img {
  width: 100%;
  aspect-ratio: 4 / 2.4;
  object-fit: cover;
  object-position: center 42%;
  background: rgba(255,255,255,0.02);
}
.recipe-image-placeholder {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 2.4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.42rem;
  padding: 1.1rem;
  text-align: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 207, 150, 0.18), transparent 30%),
    radial-gradient(circle at 86% 88%, rgba(255, 122, 24, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(31, 16, 7, 0.96), rgba(7, 6, 6, 0.98));
  color: rgba(255, 247, 238, 0.95);
  transition: transform 220ms ease, filter 220ms ease;
}
.recipe-image-placeholder span {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 207, 150, 0.26);
  background: rgba(255, 122, 24, 0.16);
  color: rgba(255, 207, 150, 0.96);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.recipe-image-placeholder strong {
  max-width: 18ch;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  line-height: 1.05;
}
.recipe-image-placeholder small {
  color: rgba(255, 226, 196, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}
.recipe-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recipe-card__body {
  padding: 0.74rem 0.74rem 0.8rem;
  display: grid;
  gap: 0.42rem;
  position: relative;
}
.recipe-card__meta { display: flex; justify-content: space-between; gap: 10px; }
.recipe-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0.1rem 0.38rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.045);
  color: rgba(245, 245, 247, 0.72);
  font-size: 0.61rem;
}
.card-badge,
.soft-badge,
.collection-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}
.card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  background: rgba(11, 11, 14, 0.8);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}
.soft-badge,
.collection-card__count {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  color: var(--muted);
}
.recipe-card h3,
.feature-card h3,
.content-panel h3,
.detail-panel h3,
.article-card h3,
.shortcut-card h3,
.collection-card h3 { margin: 0.6rem 0; }
.recipe-card h3 {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.recipe-grid .recipe-card h3 {
  color: rgba(255, 250, 245, 0.95);
  text-wrap: balance;
}
.recipe-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 0.34rem;
  border-top: 1px solid rgba(255,255,255,0.045);
  color: rgba(245, 245, 247, 0.54);
  font-size: 0.72rem;
}
.recipe-card__type {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.recipe-card__footer strong {
  color: #261507;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.recipe-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 173, 94, 0.96), rgba(255, 122, 24, 0.86));
  box-shadow: 0 10px 22px rgba(255, 122, 24, 0.16);
}
.recipe-card__cta span {
  font-size: 0.78rem;
  opacity: 0.82;
}
.recipe-grid .recipe-card p {
  color: rgba(245, 245, 247, 0.68);
  font-size: 0.8rem;
  line-height: 1.36;
}
.recipe-grid .recipe-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 207, 150, 0.12);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.032);
}
.recipe-grid .recipe-card:hover .recipe-card__cta {
  background: linear-gradient(135deg, rgba(255, 186, 122, 0.98), rgba(255, 138, 44, 0.92));
  box-shadow: 0 14px 28px rgba(255, 122, 24, 0.2);
}
.recipe-list-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.3rem;
}
.finder-card input,
.finder-card select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
}
.field { flex: 1 1 240px; }
.recipe-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.recipe-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0.62rem 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.028);
  color: rgba(245, 245, 247, 0.82);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.recipe-back:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: rgba(255,255,255,0.045);
  border-color: rgba(255, 179, 107, 0.22);
}
.recipe-heading__copy {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
  padding-inline: clamp(0rem, 4vw, 2rem);
}
.recipe-heading__meta {
  margin: 0;
  color: rgba(245, 245, 247, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}
.recipe-heading__title {
  position: relative;
  margin: 0;
  max-width: min(13.5ch, 920px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.6vw, 4.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: rgba(255, 247, 238, 0.98);
  background: linear-gradient(180deg, #fff8ef 0%, #ffe0b6 58%, #ffb36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.26));
}
.recipe-heading__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.24em;
  width: min(160px, 34%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 179, 107, 0.52), transparent);
  opacity: 0.78;
}
.detail-cover {
  align-self: start;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 52px rgba(0,0,0,0.22);
  background: rgba(255,255,255,0.03);
}
.detail-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 520px;
  object-fit: cover;
}
.detail-cover .recipe-image-placeholder {
  aspect-ratio: 16 / 10;
  max-height: 520px;
}
.detail-cover img { object-position: center 38%; }
.detail-panel--sticky { position: sticky; top: 96px; }
.detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0.9rem 0 1rem;
  padding: 0.3rem 0 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.recipe-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}
.recipe-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.1rem 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(245, 245, 247, 0.66);
  font-size: 0.82rem;
}
.recipe-intro-card {
  margin-bottom: 1rem;
  padding: 0 0 0.1rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.recipe-intro-card h3 {
  margin: 0 0 0.45rem;
}
.recipe-portion-mini {
  display: grid;
  grid-template-columns: auto minmax(160px, 220px);
  align-items: center;
  gap: 12px;
  margin: 0.85rem 0 0.35rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.recipe-portion-mini > span {
  color: rgba(245, 245, 247, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.detail-panel--hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.036), rgba(255,255,255,0.016)),
    rgba(10,10,14,0.18);
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.032);
}
.detail-panel--preparation {
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.026), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.13);
  border: 1px solid rgba(255,255,255,0.058);
}
.detail-panel--preparation .section__intro {
  max-width: none;
  margin-bottom: 0.8rem;
}
.detail-panel--preparation .section__intro h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.detail-panel--preparation .article-list {
  margin-top: 0.35rem;
}
.detail-actions strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.96rem;
  color: rgba(255, 248, 240, 0.92);
}
.detail-list,
.article-list { display: grid; gap: 10px; }
.article-list li,
.detail-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.15rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 1.12rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 179, 107, 0.72);
}
.recipe-ingredient-list .recipe-ingredient-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-right: 0;
}
.recipe-ingredient-row span {
  min-width: 0;
}
.ingredient-add-button {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 179, 107, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 166, 82, 0.18), rgba(255, 122, 24, 0.08)),
    rgba(255,255,255,0.035);
  color: rgba(255, 225, 190, 0.96);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.recipe-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.recipe-tool-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 207, 150, 0.1);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 24, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.16);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.recipe-tool-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}
.recipe-tool-card__head h3 {
  margin: 0.18rem 0 0;
  font-size: 1.02rem;
  line-height: 1.18;
}
.recipe-tool-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(255, 207, 150, 0.08));
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.08);
}
.recipe-mini-timer {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 8px;
  padding: 0.36rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.032);
}
.recipe-mini-timer button,
.recipe-tool-actions .btn {
  min-height: 40px;
}
.recipe-mini-timer button {
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  color: rgba(255, 239, 218, 0.96);
  cursor: pointer;
  font-weight: 900;
}
.recipe-mini-timer strong {
  text-align: center;
  font-size: 1.28rem;
  font-variant-numeric: tabular-nums;
}
.recipe-tool-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.recipe-tool-fields {
  display: grid;
  grid-template-columns: 0.9fr 0.85fr 0.85fr;
  gap: 8px;
}
.recipe-tool-fields--two {
  grid-template-columns: 1fr 1fr;
}
.recipe-tool-fields label {
  display: grid;
  gap: 0.34rem;
}
.recipe-tool-fields span {
  color: rgba(245,245,247,0.58);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.recipe-tool-fields input,
.recipe-tool-fields select {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.075);
  background-color: rgba(255,255,255,0.035);
  color: rgba(255, 248, 240, 0.92);
  padding: 0.62rem 0.7rem;
}
.recipe-tool-result {
  display: grid;
  gap: 0.18rem;
  padding-top: 0.2rem;
}
.recipe-tool-result strong {
  color: rgba(255, 207, 150, 0.96);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.recipe-tool-result span,
.recipe-tool-card .tool-note {
  margin: 0;
  color: rgba(245,245,247,0.58);
  line-height: 1.45;
  font-size: 0.84rem;
}
.recipe-oven-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.recipe-oven-results span {
  min-height: 72px;
  display: grid;
  place-items: center;
  gap: 0.1rem;
  padding: 0.7rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}
.recipe-oven-results small {
  color: rgba(245,245,247,0.54);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.recipe-oven-results strong {
  color: rgba(255, 207, 150, 0.96);
  font-size: 1.28rem;
}
.ingredient-add-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 107, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 166, 82, 0.28), rgba(255, 122, 24, 0.14)),
    rgba(255,255,255,0.055);
}
.ingredient-add-button.is-added {
  color: #101010;
  border-color: rgba(255, 185, 100, 0.75);
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}
.article-list {
  list-style: decimal;
  padding-left: 1.25rem;
}
.article-list li::marker {
  color: rgba(255, 179, 107, 0.8);
  font-weight: 700;
}
.recipe-cook-mode {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-rows: auto 4px minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 122, 24, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(3,3,3,0.98), rgba(5,5,7,0.99));
  color: var(--text);
}
.recipe-cook-mode[hidden] {
  display: none;
}
.recipe-cook-mode__top {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0.72rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.recipe-cook-mode__title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.recipe-cook-mode__top strong {
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recipe-cook-mode__top span {
  color: var(--muted-soft);
  font-size: 0.82rem;
}
.recipe-cook-timer {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: end;
  margin: clamp(1rem, 2vw, 1.35rem) 0 0.45rem;
  display: inline-grid;
  grid-template-columns: 34px minmax(92px, auto) 34px 34px;
  align-items: center;
  gap: 7px;
  padding: 0.34rem;
  border-radius: 999px;
  border: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 122, 24, 0.12), transparent 64%),
    rgba(255,255,255,0.012);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.08);
}
.recipe-cook-timer button {
  border: 0;
  color: var(--text);
  cursor: pointer;
  font: inherit;
}
.recipe-cook-timer__adjust,
.recipe-cook-timer__reset {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  font-weight: 900;
}
.recipe-cook-timer__adjust:hover,
.recipe-cook-timer__reset:hover {
  background: rgba(255, 179, 107, 0.14);
}
.recipe-cook-timer__display {
  min-width: 92px;
  min-height: 36px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 207, 150, 0.1), transparent 58%),
    rgba(255,255,255,0.03);
}
.recipe-cook-timer__display span {
  color: rgba(255, 247, 238, 0.98);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.recipe-cook-timer__display small {
  margin-top: 0.1rem;
  color: rgba(255, 226, 196, 0.66);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.recipe-cook-timer__display.is-running {
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.8), rgba(255, 207, 150, 0.72)),
    rgba(255,255,255,0.045);
  box-shadow: 0 0 22px rgba(255, 122, 24, 0.22);
}
.recipe-cook-timer__display.is-running span,
.recipe-cook-timer__display.is-running small {
  color: #211102;
}
.recipe-cook-timer__display.is-done {
  animation: timerDonePulse 900ms ease-in-out infinite alternate;
}
.recipe-cook-mode__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
}
.recipe-cook-progress {
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.recipe-cook-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff7a18, #ffcf96);
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.34);
  transition: width 220ms ease;
}
.recipe-cook-mode__layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(0.4rem, 1.2vw, 1rem);
}
.recipe-cook-mode.is-complete .recipe-cook-mode__layout {
  display: none;
}
.recipe-cook-ingredients {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 0;
  overflow: auto;
  padding: 1rem 1rem 1rem 1.15rem;
  border-right: 0;
  background: transparent;
}
.recipe-cook-ingredients__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.8rem;
}
.recipe-cook-ingredients__head h3 {
  margin: 0;
}
.recipe-cook-ingredients__head span {
  color: var(--accent-soft);
  font-size: 0.82rem;
}
.recipe-cook-ingredients__list {
  display: grid;
  gap: 10px;
}
.recipe-cook-ingredients__carousel {
  position: relative;
}
.recipe-cook-ingredients__arrow {
  display: none;
}
.recipe-cook-ingredient {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 0.35rem 0;
  color: rgba(245,245,247,0.84);
  line-height: 1.35;
}
.recipe-cook-ingredient input {
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
}
.recipe-cook-ingredient:has(input:checked) span {
  color: rgba(245,245,247,0.42);
  text-decoration: line-through;
}
.recipe-cook-step {
  grid-column: 2;
  grid-row: 2;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.recipe-cook-step__badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.18);
  border: 1px solid rgba(255, 207, 150, 0.18);
  color: var(--accent-soft);
  font-weight: 800;
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.12);
}
.recipe-cook-step h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  font-weight: 650;
}
.recipe-cook-complete {
  min-height: 0;
  display: none;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 122, 24, 0.16), transparent 34%),
    radial-gradient(circle at 50% 62%, rgba(255, 207, 150, 0.1), transparent 38%);
  animation: cookCompleteGlow 850ms ease both;
}
.recipe-cook-mode.is-complete .recipe-cook-complete {
  display: grid;
}
.recipe-cook-complete__spark {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fff8e8 0 10%, #ffcf96 11% 25%, #ff7a18 26% 48%, rgba(255,122,24,0.14) 49% 100%);
  box-shadow:
    0 0 34px rgba(255, 122, 24, 0.45),
    0 0 90px rgba(255, 122, 24, 0.22);
  animation: cookSparkPop 900ms cubic-bezier(.2, 1.3, .28, 1) both;
}
.recipe-cook-complete__spark::before,
.recipe-cook-complete__spark::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  border: 1px solid rgba(255, 207, 150, 0.28);
  animation: cookSparkRing 1100ms ease-out both;
}
.recipe-cook-complete__spark::after {
  inset: -34px;
  animation-delay: 120ms;
}
.recipe-cook-complete h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 247, 238, 0.98);
}
.recipe-cook-complete p {
  max-width: 560px;
  margin: 0;
  color: rgba(245, 245, 247, 0.68);
  line-height: 1.65;
}
.recipe-cook-mode__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 0.8rem 1rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.recipe-cook-mode__footer .btn {
  min-height: 52px;
}
.recipe-cook-mode__footer .btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.detail-grid .detail-panel,
.triple-grid .content-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.026), rgba(255,255,255,0.01)),
    rgba(10,10,14,0.12);
  border: 1px solid rgba(255,255,255,0.055);
}
.search-shell {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 12px;
  padding: 1rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.search-shell--recipes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  padding: 0.82rem;
  border-radius: 22px;
}
.search-shell--recipes .search-shell__field--wide {
  grid-column: 1 / -1;
}
.search-shell--recipes .search-shell__field {
  gap: 0.32rem;
}
.search-shell--recipes .search-shell__field label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.search-shell--recipes .search-shell__field input,
.search-shell--recipes .search-shell__field select {
  min-height: 42px;
  border-radius: 14px;
  padding: 0.58rem 0.72rem;
  font-size: 0.9rem;
}
.search-shell--recipes .search-shell__field--wide input {
  min-height: 54px;
  border-radius: 17px;
  padding: 0.86rem 1rem;
  font-size: 1rem;
}
.search-shell--recipes .search-shell__field--filter select {
  font-size: 0.84rem;
  font-weight: 650;
  border-color: rgba(255, 207, 150, 0.09);
  background-color: rgba(10, 10, 14, 0.52);
}
.search-shell--recipes .search-shell__field--filter .select-popover__button {
  min-height: 42px;
  border-radius: 14px;
  padding: 0.58rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 650;
}
.finder-card--magique {
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.search-shell--magique {
  width: min(920px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.85fr) minmax(210px, 0.75fr) auto;
  align-items: start;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.search-shell--magique-simple {
  grid-template-columns: minmax(0, 1fr) auto;
}
.search-shell--magique-simple .search-shell__field--wide input {
  min-height: 62px;
}
.search-shell--magique-simple .btn {
  min-width: 178px;
  min-height: 62px;
}
.search-shell--magique .search-shell__field {
  gap: 0.38rem;
}
.search-shell--magique .search-shell__field label {
  color: rgba(255, 227, 197, 0.62);
  letter-spacing: 0.09em;
}
.search-shell--magique .search-shell__field input {
  min-height: 58px;
  border-radius: 19px;
  border: 1.5px solid rgba(255, 207, 150, 0.16);
  background:
    radial-gradient(circle at 94% 50%, rgba(255, 122, 24, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.36);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 12px 26px rgba(0,0,0,0.13);
}
.search-shell--magique .search-shell__field input:focus {
  outline: none;
  border-color: rgba(255, 207, 150, 0.36);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.08),
    0 0 28px rgba(255, 122, 24, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.search-shell--magique .select-popover__button {
  min-height: 58px;
  border-radius: 19px;
  border-color: rgba(255, 207, 150, 0.14);
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 122, 24, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.38);
}
.search-shell__field--wide {
  min-width: 0;
}
.search-shell__field {
  display: grid;
  gap: 0.45rem;
}
.search-shell__field label {
  color: rgba(245, 245, 247, 0.54);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.search-shell__field input,
.search-shell__field select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.036);
  color: var(--text);
  padding: 0.85rem 0.92rem;
}
.search-shell__field select,
.tool-controls select,
.finder-card select,
.recipe-tool-fields select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.55rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 207, 150, 0.92) 50%),
    linear-gradient(135deg, rgba(255, 207, 150, 0.92) 50%, transparent 50%),
    radial-gradient(circle at calc(100% - 1.18rem) 50%, rgba(255, 122, 24, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018));
  background-position:
    calc(100% - 1.26rem) 50%,
    calc(100% - 0.98rem) 50%,
    100% 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    2.35rem 100%,
    100% 100%;
  background-repeat: no-repeat;
}
.search-shell__field select:hover,
.tool-controls select:hover,
.finder-card select:hover,
.recipe-tool-fields select:hover {
  border-color: rgba(255, 207, 150, 0.22);
  background-color: rgba(255,255,255,0.052);
}
.search-shell__field select:focus,
.search-shell__field input:focus,
.tool-controls select:focus,
.finder-card select:focus,
.recipe-tool-fields select:focus {
  outline: none;
  border-color: rgba(255, 207, 150, 0.34);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.search-shell__field select option,
.tool-controls select option,
.finder-card select option,
.recipe-tool-fields select option {
  background: #111114;
  color: #fff4e8;
}
.select-native-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.select-popover {
  position: relative;
  z-index: 20;
}
.select-popover.is-open {
  z-index: 100;
}
.select-popover__button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.78rem 0.86rem;
  border: 1px solid rgba(255, 207, 150, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 122, 24, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(10,10,14,0.58);
  color: rgba(255, 246, 235, 0.92);
  cursor: pointer;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.select-popover__button:hover,
.select-popover.is-open .select-popover__button {
  border-color: rgba(255, 207, 150, 0.32);
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 122, 24, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022)),
    rgba(13,13,17,0.72);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.07), inset 0 1px 0 rgba(255,255,255,0.06);
}
.select-popover__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-popover__chevron {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  position: relative;
  border: 1px solid rgba(255, 207, 150, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 122, 24, 0.16), transparent 38%),
    rgba(255,255,255,0.035);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.select-popover__chevron::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 207, 150, 0.9);
  border-bottom: 2px solid rgba(255, 207, 150, 0.9);
  transform: translate(-50%, -62%) rotate(45deg);
  transition: transform 160ms ease;
}
.select-popover.is-open .select-popover__chevron {
  border-color: rgba(255, 207, 150, 0.26);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 122, 24, 0.24), transparent 38%),
    rgba(255,255,255,0.052);
}
.select-popover.is-open .select-popover__chevron::before {
  transform: translate(-50%, -36%) rotate(225deg);
}
.select-popover__list {
  position: absolute;
  z-index: 110;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(280px, 50vh);
  overflow: auto;
  display: grid;
  gap: 5px;
  padding: 0.48rem;
  border: 1px solid rgba(255, 207, 150, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 122, 24, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(28,28,32,0.98), rgba(12,12,15,0.98));
  box-shadow:
    0 24px 54px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 179, 107, 0.42) rgba(255,255,255,0.04);
}
.select-popover__list::-webkit-scrollbar {
  width: 8px;
}
.select-popover__list::-webkit-scrollbar-track {
  margin: 10px 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}
.select-popover__list::-webkit-scrollbar-thumb {
  border: 2px solid rgba(18,18,20,0.95);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 207, 150, 0.82), rgba(255, 122, 24, 0.72));
}
.select-popover.is-open .select-popover__list {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.select-popover__option {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0.58rem 0.68rem;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: rgba(245,245,247,0.78);
  cursor: pointer;
  text-align: left;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.select-popover__option:hover {
  border-color: rgba(255, 207, 150, 0.14);
  background: rgba(255,255,255,0.052);
  color: rgba(255, 248, 240, 0.96);
}
.select-popover__option.is-selected {
  border-color: rgba(255, 179, 107, 0.22);
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 122, 24, 0.16), transparent 42%),
    rgba(255, 122, 24, 0.08);
  color: rgba(255, 238, 216, 0.98);
}
.select-popover__option.is-selected::after {
  content: "✓";
  color: var(--accent-soft);
  font-weight: 900;
}
.search-shell__hint {
  margin: 0;
  color: rgba(245, 245, 247, 0.44);
  font-size: 0.73rem;
  line-height: 1.4;
}
.search-shell--magique .btn {
  min-height: 58px;
  padding-inline: 1.1rem;
  border-radius: 19px;
  align-self: start;
  margin-top: 1.52rem;
  box-shadow:
    0 14px 28px rgba(255, 122, 24, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.28);
}
.magique-search__footer {
  width: min(920px, 100%);
  margin-inline: auto;
  margin-top: 0.9rem;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.055);
}
.magique-search__label {
  margin: 0 0 0.62rem;
  color: rgba(255, 227, 197, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.magique-search__footer .chip-button {
  min-height: 38px;
  border-color: rgba(255, 207, 150, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.28);
}
.magique-search__footer .chip-button:hover {
  border-color: rgba(255, 207, 150, 0.24);
  background: rgba(255, 122, 24, 0.075);
}
.magique-live__intro {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.magique-live {
  display: grid;
  justify-items: center;
}
.magique-live__intro h2,
.magique-live__intro p {
  margin-left: auto;
  margin-right: auto;
}
.magique-live__finder {
  width: min(860px, 100%);
  margin-inline: auto;
  display: grid;
  justify-items: center;
}
.magique-live__finder .search-shell--magique,
.magique-live__finder .magique-search__footer {
  width: 100%;
}
.magique-live__finder .search-shell--magique {
  justify-content: center;
}
.magique-live__finder .magique-search__footer {
  display: grid;
  justify-items: center;
  text-align: center;
}
.magique-live__finder .magique-search__footer .chip-row {
  justify-content: center;
}
.magique-live__results {
  scroll-margin-top: 92px;
}
.match-meter {
  display: grid;
  gap: 7px;
  margin-top: 0.15rem;
}
.match-meter span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: rgba(245,245,247,0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.match-meter strong {
  color: var(--accent-soft);
  font-size: 0.95rem;
  letter-spacing: 0;
}
.match-meter i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
}
.match-meter i::before {
  content: "";
  display: block;
  width: var(--match);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.9), rgba(255, 207, 150, 0.96));
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.16);
}
.magique-search__footer {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.055);
}
.magique-search__label {
  margin: 0;
  color: rgba(245, 245, 247, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.magique-search__footer .chip-row {
  margin-top: 0;
}
.chip-button {
  border: 1px solid rgba(255,255,255,0.075);
  background: rgba(255,255,255,0.022);
  color: rgba(245, 245, 247, 0.66);
  border-radius: 999px;
  padding: 0.58rem 0.88rem;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  font-size: 0.84rem;
}
.chip-button:hover {
  background: rgba(255, 179, 107, 0.08);
  border-color: rgba(255, 179, 107, 0.2);
  color: var(--text);
}
.toolbar-shell {
  margin-bottom: 1.25rem;
}
.toolbar-headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.85rem;
}
.toolbar-headline strong {
  font-size: 1.05rem;
}
.toolbar-note {
  color: var(--muted-soft);
}
.collection-card,
.shortcut-card {
  background: linear-gradient(180deg, rgba(18,18,22,0.95), rgba(11,11,13,0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}
.collection-card__top,
.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.mini-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 10px;
}
.mini-links li a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.mini-links li a:hover {
  border-color: rgba(255, 179, 107, 0.28);
}
.section__intro--compact {
  margin-bottom: 0.9rem;
}
.section__intro--with-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.recipe-cook-launch {
  white-space: nowrap;
}
.empty-state {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}
.footer { position: relative; z-index: 1; padding: 2rem 0 3rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(10,10,12,0.88);
}
.footer-link-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.footer-link-button:hover {
  color: var(--text);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 207, 150, 0.1);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 122, 24, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.036), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.16);
}
.contact-form label {
  display: grid;
  gap: 0.42rem;
}
.contact-form label span {
  color: rgba(245, 245, 247, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  padding: 0.9rem 1rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 207, 150, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.08);
}
.contact-aside,
.legal-content {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.01)),
    rgba(10,10,14,0.14);
}
.legal-content {
  max-width: 920px;
}
.legal-content h3 {
  margin: 1.15rem 0 0.4rem;
}
.legal-content h3:first-child {
  margin-top: 0;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 12000;
  padding: 0 14px;
  pointer-events: none;
}
.cookie-banner__panel {
  width: min(700px, calc(100vw - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 0.78rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 207, 150, 0.22);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 122, 24, 0.18), transparent 34%),
    radial-gradient(circle at 96% 100%, rgba(255, 207, 150, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.088), rgba(255,255,255,0.026)),
    rgba(13, 10, 9, 0.92);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow:
    0 24px 68px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 0 1px rgba(255, 122, 24, 0.035);
  pointer-events: auto;
}
.cookie-banner--expanded .cookie-banner__panel {
  width: min(820px, calc(100vw - 24px));
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0.82rem;
  border-radius: 24px;
}
.cookie-banner--expanded .cookie-banner__actions {
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
}
.cookie-banner__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.cookie-banner__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 207, 150, 0.22);
  background:
    radial-gradient(circle at 34% 22%, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 207, 150, 0.22), rgba(255, 122, 24, 0.12));
  font-size: 1.12rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.cookie-banner__copy h2 {
  margin: 0 0 0.16rem;
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  letter-spacing: -0.035em;
}
.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.38;
  font-size: 0.88rem;
}
.cookie-banner:not(.cookie-banner--expanded) .footer__eyebrow {
  display: none;
}
.cookie-banner__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 0.2rem;
}
.cookie-banner__details[hidden] {
  display: none !important;
}
.cookie-banner__details label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 68px;
  padding: 0.68rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.014)),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.075);
  color: rgba(245,245,247,0.78);
  font-size: 0.82rem;
  cursor: pointer;
}
.cookie-banner__details label:hover {
  border-color: rgba(255, 207, 150, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 24, 0.08), transparent 36%),
    rgba(255,255,255,0.038);
}
.cookie-banner__details label.cookie-choice--locked {
  cursor: default;
  opacity: 0.82;
}
.cookie-choice__text {
  display: grid;
  gap: 0.14rem;
}
.cookie-choice strong {
  color: rgba(245,245,247,0.94);
}
.cookie-choice small {
  color: rgba(245,245,247,0.58);
  line-height: 1.35;
}
.cookie-banner__details input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-choice__switch {
  width: 38px;
  height: 22px;
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.22);
  transition: background 160ms ease, border-color 160ms ease;
}
.cookie-choice__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(245,245,247,0.86);
  box-shadow: 0 2px 8px rgba(0,0,0,0.24);
  transition: transform 180ms ease, background 180ms ease;
}
.cookie-choice input:checked + .cookie-choice__switch {
  border-color: rgba(255, 179, 107, 0.42);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.84), rgba(255, 179, 107, 0.7));
}
.cookie-choice input:checked + .cookie-choice__switch::after {
  transform: translateX(16px);
  background: #1d1006;
}
.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 8px;
  align-items: center;
}
.cookie-banner__actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 0.64rem 0.95rem;
  font-size: 0.86rem;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.cookie-banner__plain {
  grid-column: 1 / -1;
  border: 0;
  background: transparent;
  color: rgba(255, 226, 196, 0.82);
  padding: 0.08rem 0.2rem 0;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 207, 150, 0.22);
  text-underline-offset: 4px;
}
.cookie-banner__plain:hover {
  color: var(--text);
}
.panel-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 10px;
}
.panel-list li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.btn--compact {
  min-height: 40px;
  padding: 0.72rem 0.95rem;
  font-size: 0.84rem;
}
.detail-actions__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chip-row--compact {
  gap: 8px;
}
.chip-button--link {
  display: inline-flex;
  align-items: center;
}
.malin-hero-copy {
  text-align: center;
  margin-inline: auto;
}
.malin-hero-copy h2,
.malin-hero-copy p {
  margin-left: auto;
  margin-right: auto;
}
.malin-shopping-app {
  position: relative;
  width: min(920px, 100%);
  min-height: 520px;
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 122, 24, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008)),
    rgba(8,8,10,0.18);
  box-shadow: 0 28px 76px rgba(0,0,0,0.18);
}
.malin-shopping-app__head {
  display: grid;
  gap: 0.35rem;
  max-width: 620px;
  margin: 0 auto 1.1rem;
  text-align: center;
}
.malin-shopping-app__head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 0.98;
}
.malin-shopping-app__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.malin-entry--hero {
  width: min(720px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 12px;
}
.malin-entry--hero input {
  min-height: 64px;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.052);
  font-size: clamp(1.02rem, 2.4vw, 1.35rem);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.26);
}
.malin-entry--hero input:focus {
  outline: none;
  border-color: rgba(255, 207, 150, 0.34);
  box-shadow: 0 0 0 5px rgba(255, 122, 24, 0.08), inset 0 0 0 1px rgba(0,0,0,0.28);
}
.malin-add-button {
  width: 64px;
  min-height: 64px;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
  color: #211102;
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, #ffd8a6, #ff7a18);
  box-shadow: 0 18px 36px rgba(255, 122, 24, 0.2), inset 0 1px 0 rgba(255,255,255,0.26);
  transition: transform 160ms ease, filter 160ms ease;
}
.malin-add-button:hover,
.malin-add-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.malin-guide-arrow {
  width: 86px;
  height: 86px;
  margin: 0.95rem auto 0.2rem;
  border-left: 5px solid rgba(245,245,247,0.5);
  border-bottom: 5px solid rgba(245,245,247,0.5);
  border-radius: 0 0 0 82px;
  transform: rotate(-24deg);
  opacity: 0.72;
}
.malin-guide-arrow::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 5px solid rgba(245,245,247,0.5);
  border-left: 5px solid rgba(245,245,247,0.5);
  transform: translate(-9px, -13px) rotate(55deg);
}
.malin-quick-row {
  justify-content: center;
  margin-bottom: 1.1rem;
}
.malin-list-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.malin-grid,
.malin-store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
}
.malin-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.01)),
    rgba(10,10,14,0.14);
  border: 1px solid rgba(255,255,255,0.06);
}
.malin-panel--import {
  padding: 1.2rem;
}
.malin-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}
.malin-panel__head h3 {
  margin: 0.22rem 0 0;
}
.malin-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.malin-entry input {
  width: 100%;
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
}
.malin-entry--recipe {
  grid-template-columns: 1fr;
  margin: 0;
}
.malin-entry--postal {
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
}
.malin-list__meta {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.84rem;
}
.malin-list__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.malin-shopping-list {
  display: grid;
  gap: 10px;
  margin-top: 0.8rem;
}
.shopping-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0.92rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.065);
  background: rgba(255,255,255,0.028);
}
.shopping-item input {
  width: 18px;
  height: 18px;
}
.shopping-item__label {
  color: rgba(245, 245, 247, 0.9);
}
.shopping-item.is-checked .shopping-item__label {
  color: rgba(245, 245, 247, 0.45);
  text-decoration: line-through;
}
.shopping-item__remove {
  border: 0;
  background: transparent;
  color: rgba(245,245,247,0.48);
  font-size: 1.2rem;
  cursor: pointer;
}
.malin-empty-list {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--muted);
}
.malin-empty-list__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.05);
  color: rgba(245,245,247,0.92);
  font-size: 2rem;
}
.malin-empty-list h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2rem);
}
.malin-empty-list p {
  max-width: 430px;
  margin: 0;
  line-height: 1.6;
}
.recipe-pick {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.recipe-pick h3 {
  margin: 0.25rem 0 0.3rem;
}
.recipe-pick p {
  margin: 0;
}
.recipe-pick__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.malin-import-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: end;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.malin-import-copy h3 {
  margin: 0.2rem 0 0.45rem;
}
.malin-import-copy p:last-child {
  margin: 0;
}
.malin-import-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.malin-import-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.12);
}
.malin-import-card__media img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center 42%;
}
.malin-import-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 0.72rem;
}
.malin-import-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.malin-import-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(245,245,247,0.7);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.malin-import-card__body h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.12;
}
.malin-import-card__body p {
  margin: 0;
  color: rgba(245,245,247,0.68);
  font-size: 0.8rem;
  line-height: 1.38;
}
.malin-import-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.malin-import-card__footer strong {
  color: var(--accent-soft);
  font-size: 0.74rem;
}
.malin-store-controls {
  display: grid;
  gap: 12px;
}
.map-frame {
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  position: relative;
}
.map-frame__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(18,18,22,0.78), rgba(10,10,14,0.52));
  z-index: 2;
}
.store-map-embed,
.store-leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 320px;
  min-height: 320px;
  border: 0;
}
.store-map-embed {
  z-index: 1;
}
.store-leaflet-map {
  z-index: 1;
}
.leaflet-container {
  width: 100%;
  height: 100%;
  background: #0b0b0d;
  font: inherit;
}
.leaflet-container img,
.leaflet-container svg,
.leaflet-container canvas {
  max-width: none !important;
  max-height: none !important;
}
.malin-store-results {
  margin-top: 1rem;
}
.malin-store-list {
  display: grid;
  gap: 12px;
}
.store-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.store-card h3 {
  margin: 0.2rem 0 0.35rem;
}
.store-card p {
  margin: 0;
}
.store-card__hours {
  margin-top: 0.55rem;
  color: rgba(245,245,247,0.58);
  font-size: 0.82rem;
}
.store-card__meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}
.store-card__meta strong {
  color: var(--accent-soft);
}
.store-popup h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1rem;
  color: #1f1207;
}
.store-popup p {
  margin: 0;
  color: rgba(31, 18, 7, 0.78);
  font-size: 0.83rem;
  line-height: 1.45;
}
.store-popup__kicker {
  margin: 0 0 0.18rem;
  color: rgba(31, 18, 7, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.64rem;
}
.store-popup__meta {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}
.store-popup__meta li {
  display: grid;
  gap: 0.12rem;
}
.store-popup__meta strong {
  color: rgba(31, 18, 7, 0.9);
  font-size: 0.72rem;
}
.store-popup__meta span {
  color: rgba(31, 18, 7, 0.74);
  font-size: 0.8rem;
}
.store-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.85rem;
}
.store-popup__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: #7a3400;
  font-size: 0.78rem;
  font-weight: 700;
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(255, 236, 218, 0.98);
}
.leaflet-popup-content {
  margin: 0.9rem 1rem;
  min-width: 220px;
}
.leaflet-control-attribution {
  background: rgba(10,10,14,0.68) !important;
  color: rgba(245,245,247,0.72) !important;
}
.leaflet-control-attribution a {
  color: rgba(255,207,150,0.86) !important;
}
.section-note {
  margin-top: 0.7rem;
  color: var(--muted-soft);
}
.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}
.section-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.section-links a:hover {
  color: var(--text);
  border-color: rgba(255, 179, 107, 0.28);
  background: rgba(255, 179, 107, 0.08);
}
.section-surface {
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.editorial-stack {
  display: grid;
  gap: 18px;
}
.article-lead {
  display: grid;
  gap: 12px;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    rgba(10,10,14,0.16);
}
.article-lead p {
  margin: 0;
  max-width: 70ch;
}
.blog-home {
  padding-top: 1.8rem;
}
.blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: end;
  padding: clamp(0.4rem, 2vw, 1.2rem) 0 0.6rem;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: -8% 22% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.16), transparent 66%);
  filter: blur(12px);
  pointer-events: none;
}
.blog-hero h2 {
  max-width: 13ch;
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.blog-hero p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.blog-hero__note {
  padding: 1.1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 207, 150, 0.14);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 122, 24, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.01)),
    rgba(10,10,14,0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 50px rgba(0,0,0,0.18);
}
.blog-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.blog-feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 207, 150, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012)),
    rgba(8,8,11,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 60px rgba(0,0,0,0.22);
}
.blog-link-card {
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.blog-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 179, 107, 0.28);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 122, 24, 0.14), transparent 36%),
    radial-gradient(circle at 10% 0%, rgba(255, 207, 150, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.016)),
    rgba(10,10,14,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.3);
}
.blog-feature-card--large {
  grid-row: span 2;
}
.blog-feature-card__media {
  position: relative;
  overflow: hidden;
  min-height: 236px;
}
.blog-feature-card--large .blog-feature-card__media {
  min-height: 430px;
}
.blog-feature-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(5,5,7,0.74));
}
.blog-card-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(12, 10, 9, 0.58);
  backdrop-filter: blur(16px);
  color: rgba(255, 235, 213, 0.94);
  font-size: 0.78rem;
  font-weight: 850;
}
.blog-feature-card__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 220ms ease, filter 220ms ease;
}
.blog-feature-card:hover .blog-feature-card__media img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03);
}
.blog-feature-card__body {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.1rem;
}
.blog-feature-card__body h3 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(1.42rem, 3vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.blog-feature-card__body p {
  margin: 0;
  color: rgba(245,245,247,0.7);
  line-height: 1.66;
}
.blog-read-link {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  color: #211102;
  background: linear-gradient(135deg, rgba(255, 207, 150, 0.95), rgba(255, 122, 24, 0.86));
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 122, 24, 0.12);
}
.blog-read-link span {
  transition: transform 180ms ease;
}
.blog-link-card:hover .blog-read-link span {
  transform: translateX(3px);
}
.blog-story-list {
  display: grid;
  gap: 14px;
  counter-reset: storyCard;
}
.blog-story-row {
  position: relative;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 1.18rem;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.085);
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 122, 24, 0.13), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255, 207, 150, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 16px 44px rgba(0,0,0,0.18);
  counter-increment: storyCard;
}
.blog-story-row::before {
  content: "0" counter(storyCard);
  position: absolute;
  left: 1.05rem;
  bottom: 0.9rem;
  color: rgba(255,255,255,0.08);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}
.blog-story-row::after {
  content: "Lire l’article";
  justify-self: end;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 207, 150, 0.13);
  background: rgba(255, 122, 24, 0.07);
  color: rgba(255, 226, 196, 0.88);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-story-row__region {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(255, 207, 150, 0.14);
  background: rgba(255,255,255,0.035);
  color: rgba(255, 207, 150, 0.82);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-story-row h3 {
  margin: 0 0 0.42rem;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.blog-story-row p {
  margin: 0;
  max-width: 78ch;
  color: rgba(245,245,247,0.7);
  line-height: 1.62;
}
.blog-story-row__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.blog-story-row__links a,
.blog-story-row__links span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.43rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: rgba(245,245,247,0.74);
  font-size: 0.82rem;
  font-weight: 750;
}
.blog-article {
  display: grid;
  gap: 1.55rem;
}
.blog-article .back-link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.52rem 0.9rem 0.52rem 0.62rem;
  border: 1px solid rgba(255, 207, 150, 0.16);
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 207, 150, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.048), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.18);
  color: rgba(255, 235, 213, 0.9);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 30px rgba(0,0,0,0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.blog-article .back-link::before {
  content: "←";
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 207, 150, 0.95), rgba(255, 122, 24, 0.84));
  color: #211102;
  font-weight: 950;
}
.blog-article .back-link:hover {
  transform: translateX(-2px);
  border-color: rgba(255, 179, 107, 0.3);
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 207, 150, 0.23), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    rgba(10,10,14,0.22);
}
.blog-article__hero,
.blog-article__intro {
  display: grid;
  gap: 1.25rem;
}
.blog-article__hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  align-items: end;
  padding-top: 0.4rem;
}
.blog-article__hero h1,
.blog-article__intro h1 {
  max-width: 14ch;
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2.25rem, 5.3vw, 5.05rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.blog-article__intro h1 {
  max-width: 15.5ch;
}
.blog-title-accent {
  color: var(--accent-soft);
  text-shadow: 0 0 28px rgba(255, 179, 107, 0.18);
}
.blog-article__hero p,
.blog-article__intro p {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.blog-article__hero img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 90px rgba(0,0,0,0.34);
}
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}
.blog-article__meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 207, 150, 0.12);
  background: rgba(255,255,255,0.032);
  color: rgba(255, 235, 213, 0.86);
  font-size: 0.8rem;
  font-weight: 800;
}
.blog-article__content {
  max-width: 850px;
  display: grid;
  gap: 1.08rem;
  margin-inline: auto;
  padding: clamp(1.1rem, 2.8vw, 2rem);
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 24, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.036), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 70px rgba(0,0,0,0.2);
}
.blog-article--text .blog-article__content {
  margin-inline: 0;
}
.blog-article__content p {
  margin: 0;
  color: rgba(245,245,247,0.76);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.86;
}
.blog-article__content h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.055em;
}
.blog-dropcap::first-letter {
  float: left;
  padding: 0.05rem 0.42rem 0 0;
  color: rgba(255, 179, 107, 0.96);
  font-size: 4.4rem;
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: -0.08em;
}
.blog-article__content blockquote {
  margin: 0.45rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(255, 179, 107, 0.72);
  border-radius: 0 22px 22px 0;
  background: rgba(255, 122, 24, 0.055);
  color: rgba(255, 235, 213, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.blog-article__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.blog-article__facts div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  padding: 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.065);
  background: rgba(255,255,255,0.026);
}
.blog-article__facts span {
  color: rgba(245,245,247,0.48);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-article__facts strong {
  color: rgba(245,245,247,0.9);
  font-size: 0.96rem;
  line-height: 1.22;
}
.blog-article__note {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
  padding: 1.1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 179, 107, 0.18);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 122, 24, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.026);
}
.blog-article__note strong {
  font-size: 1.05rem;
}
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-actions--stack {
  display: grid;
  gap: 10px;
}
.quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(245,245,247,0.82);
}
.quick-actions__pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(245,245,247,0.72);
}
.quick-actions--stack a {
  width: 100%;
  justify-content: space-between;
  border-radius: 18px;
}
.tool-launcher-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tool-launcher {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 238px;
  text-align: left;
  padding: 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(255,207,150,0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 122, 24, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.072), rgba(255,255,255,0.018)),
    rgba(9,9,13,0.32);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  color: var(--text);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 0.68rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.tool-launcher::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 32%),
    radial-gradient(circle at var(--mx, 70%) var(--my, 20%), rgba(255, 207, 150, 0.14), transparent 30%);
  opacity: 0.72;
}
.tool-launcher::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 150, 0.12);
  box-shadow: 0 0 48px rgba(255, 122, 24, 0.14);
}
.tool-launcher:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 207, 150, 0.34);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 122, 24, 0.26), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.024)),
    rgba(12,12,16,0.38);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(255, 122, 24, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.tool-launcher__orb {
  position: relative;
  top: auto;
  left: auto;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 207, 150, 0.16);
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 166, 82, 0.22), rgba(255, 122, 24, 0.08)),
    rgba(255,255,255,0.04);
  color: rgba(255, 237, 215, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 22px rgba(255, 122, 24, 0.12);
}
.tool-launcher__orb::before,
.tool-launcher__orb::after {
  content: "";
  position: absolute;
  inset: 17px;
  border: 2px solid rgba(255, 237, 215, 0.9);
}
.tool-launcher__orb--scale::before {
  inset: 19px 15px 16px;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}
.tool-launcher__orb--scale::after {
  inset: 13px 27px auto;
  height: 22px;
  border-width: 0 2px 0 0;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.tool-launcher__orb--dice::before {
  inset: 16px;
  border-radius: 12px;
}
.tool-launcher__orb--dice::after {
  inset: 24px;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, rgba(255,237,215,0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 100% 0, rgba(255,237,215,0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, rgba(255,237,215,0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 0 100%, rgba(255,237,215,0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 100% 100%, rgba(255,237,215,0.95) 0 3px, transparent 4px);
}
.tool-launcher__orb--calendar::before {
  inset: 16px 15px 15px;
  border-radius: 8px;
}
.tool-launcher__orb--calendar::after {
  inset: 26px 18px auto;
  height: 15px;
  border-width: 2px 0 0;
  box-shadow: 0 10px 0 rgba(255, 237, 215, 0.9);
}
.tool-launcher__orb--wheel::before {
  inset: 14px;
  border-radius: 999px;
}
.tool-launcher__orb--wheel::after {
  inset: 22px;
  border-radius: 999px;
  border-style: dashed;
  animation: toolIconSpin 8s linear infinite;
}
.tool-launcher__orb--timer::before {
  inset: 17px;
  border-radius: 999px;
}
.tool-launcher__orb--timer::after {
  inset: 21px 31px 31px;
  border-width: 0 2px 2px 0;
  transform: rotate(-40deg);
  transform-origin: bottom center;
}
.tool-launcher__orb--flame::before {
  inset: 13px 20px 15px;
  border-radius: 62% 38% 56% 44% / 62% 36% 64% 38%;
  transform: rotate(18deg);
}
.tool-launcher__orb--flame::after {
  inset: 29px 27px 18px;
  border-radius: 62% 38% 56% 44% / 62% 36% 64% 38%;
  border-color: rgba(255, 190, 120, 0.95);
  transform: rotate(18deg);
}
.tool-launcher__index {
  position: absolute;
  top: 1.12rem;
  right: 1.12rem;
  color: rgba(255, 248, 240, 0.28);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tool-launcher strong {
  align-self: end;
  max-width: 14ch;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.tool-launcher p {
  margin: 0;
  max-width: 31ch;
  color: rgba(245,245,247,0.66);
  font-size: 0.9rem;
  line-height: 1.5;
}
.tool-launcher__cta {
  align-self: end;
  justify-self: start;
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 150, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 166, 82, 0.9), rgba(255, 122, 24, 0.92)),
    rgba(255, 122, 24, 0.18);
  color: #120b05;
  box-shadow:
    0 12px 26px rgba(255, 122, 24, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.32);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.tool-launcher__cta::after {
  content: "→";
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(-0.5px);
}
.tool-launcher:hover .tool-launcher__cta {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 16px 34px rgba(255, 122, 24, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.36);
}
.tool-page-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 0 auto 1.1rem;
  max-width: 1080px;
}
.tool-page-head h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}
.tool-page-head::after {
  content: "";
}
.tool-card--tool {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.16);
  box-shadow: 0 22px 60px rgba(0,0,0,0.16);
}
.tool-card--chef {
  position: relative;
  overflow: hidden;
  padding: clamp(1.12rem, 2.4vw, 1.7rem);
  border-radius: 30px;
  border-color: rgba(255, 207, 150, 0.13);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 139, 45, 0.12), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 224, 168, 0.09), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,0.052), rgba(255,255,255,0.016)),
    rgba(8,8,11,0.32);
  box-shadow: 0 28px 76px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.055);
}
.chef-tool-head {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 880px;
}
.chef-tool-head__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 21px;
  border: 1px solid rgba(255, 207, 150, 0.18);
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 142, 43, 0.24), rgba(255,255,255,0.04));
  box-shadow: 0 18px 42px rgba(255, 122, 24, 0.12), inset 0 1px 0 rgba(255,255,255,0.12);
  color: #ffd7a0;
  font-size: 1.35rem;
  font-weight: 900;
}
.chef-tool-head h3 {
  margin: -0.15rem 0 0;
  max-width: 15ch;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.chef-tool-head p:not(.detail-kicker) {
  margin: 0.52rem 0 0;
  color: rgba(245,245,247,0.72);
  line-height: 1.6;
  max-width: 68ch;
}
.chef-tool-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chef-tool-presets button {
  min-height: 42px;
  border: 1px solid rgba(255, 207, 150, 0.15);
  border-radius: 999px;
  padding: 0.64rem 0.86rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.022)),
    rgba(10,10,13,0.34);
  color: rgba(245,245,247,0.82);
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.chef-tool-presets button:hover,
.chef-tool-presets button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 166, 83, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 146, 48, 0.28), rgba(255, 201, 134, 0.1)),
    rgba(20,14,10,0.56);
}
.tool-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.tool-card__topline p {
  margin: 0;
  color: var(--muted);
}
.portion-stepper {
  display: grid;
  gap: 0.42rem;
}
.portion-stepper > span {
  color: rgba(245, 245, 247, 0.54);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.portion-stepper__control {
  min-height: 52px;
  display: grid;
  grid-template-columns: 46px minmax(54px, 1fr) 46px;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.052);
  overflow: hidden;
}
.portion-stepper__control button {
  height: 100%;
  border: 0;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
}
.portion-stepper__control strong {
  text-align: center;
  font-size: 1.2rem;
}
.tool-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.tool-card--express {
  position: relative;
  overflow: hidden;
}
.tool-card--express::before {
  content: "";
  position: absolute;
  inset: -35% -12% auto;
  height: 260px;
  background:
    radial-gradient(circle at 24% 34%, rgba(255, 139, 45, 0.24), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(255, 221, 163, 0.16), transparent 28%);
  pointer-events: none;
}
.express-tool-head {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.express-tool-head h3 {
  margin: -0.15rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 0.98;
  max-width: 14ch;
}
.express-tool-head p {
  margin: 0;
  color: rgba(245,245,247,0.72);
  line-height: 1.6;
}
.express-quick-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.express-quick-row button {
  border: 1px solid rgba(255, 207, 150, 0.16);
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(12,12,14,0.44);
  color: rgba(245,245,247,0.82);
  font-weight: 850;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}
.express-quick-row button:hover,
.express-quick-row button:focus-visible,
.express-quick-row button.active {
  transform: translateY(-1px);
  border-color: rgba(255, 166, 83, 0.42);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.28), transparent 24%),
    linear-gradient(135deg, rgba(255, 146, 48, 0.32), rgba(255, 201, 134, 0.12)),
    rgba(18,14,11,0.64);
  color: #fff5e6;
}
.dice-tool,
.roulette-stage,
.timer-tool {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
}
.dice-tool {
  perspective: none;
}
.recipe-dice {
  position: relative;
  isolation: isolate;
  width: min(220px, 100%);
  aspect-ratio: 1;
  border: 0;
  border-radius: 42px;
  color: #211102;
  cursor: pointer;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform-origin: 50% 58%;
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), filter 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}
.recipe-dice::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -18px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28), transparent 72%);
  pointer-events: none;
  transform: scale(0.92);
  transition: transform 260ms ease, opacity 260ms ease;
  opacity: 0.58;
}
.recipe-dice:hover,
.recipe-dice:focus-visible {
  filter: brightness(1.06) saturate(1.08);
  transform: translateY(-4px);
  box-shadow: none;
}
.recipe-dice:hover::before,
.recipe-dice:focus-visible::before {
  transform: scale(0.78);
  opacity: 0.58;
}
.recipe-dice.is-rolling {
  animation: diceHop 1120ms cubic-bezier(.18,.86,.22,1);
  filter: brightness(1.1) saturate(1.16);
}
.recipe-dice.is-rolling .recipe-dice__cube {
  animation: diceStableRoll 1120ms cubic-bezier(.17,.84,.28,1);
}
.recipe-dice__cube {
  position: absolute;
  width: 152px;
  height: 152px;
  left: 50%;
  top: 50%;
  display: block;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 520ms cubic-bezier(.2,.9,.18,1);
  transform: translate(-50%, -50%) rotate(-7deg);
  will-change: transform;
}
.recipe-dice__cube::before {
  content: "";
  position: absolute;
  inset: 11px -10px -12px 11px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(133, 48, 5, 0.95), rgba(69, 22, 2, 0.95));
  opacity: 0.78;
  transform: translate(10px, 10px);
}
.recipe-dice__cube[data-face="1"],
.recipe-dice__cube[data-face="2"],
.recipe-dice__cube[data-face="3"],
.recipe-dice__cube[data-face="4"],
.recipe-dice__cube[data-face="5"],
.recipe-dice__cube[data-face="6"] {
  transform: translate(-50%, -50%) rotate(-7deg);
}
.recipe-dice__side {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 220, 173, 0.36);
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.9), transparent 13%),
    radial-gradient(circle at 78% 78%, rgba(92, 34, 6, 0.36), transparent 28%),
    linear-gradient(145deg, #ffe8bc 0%, #ffb35f 34%, #ff7a21 68%, #bf4105 100%);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.22),
    0 28px 68px rgba(255, 122, 24, 0.2),
    inset 0 2px 0 rgba(255,255,255,0.5),
    inset 14px 16px 30px rgba(255,255,255,0.14),
    inset -20px -22px 42px rgba(84, 32, 6, 0.26);
  opacity: 0;
  overflow: hidden;
  transform: none;
  transition: opacity 120ms ease;
  will-change: opacity;
}
.recipe-dice__side::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(circle at 50% 50%, transparent 54%, rgba(90, 32, 5, 0.18) 100%);
  pointer-events: none;
}
.recipe-dice__cube[data-face="1"] .recipe-dice__side--1,
.recipe-dice__cube[data-face="2"] .recipe-dice__side--2,
.recipe-dice__cube[data-face="3"] .recipe-dice__side--3,
.recipe-dice__cube[data-face="4"] .recipe-dice__side--4,
.recipe-dice__cube[data-face="5"] .recipe-dice__side--5,
.recipe-dice__cube[data-face="6"] .recipe-dice__side--6,
.recipe-dice.is-rolling .recipe-dice__side--1 {
  opacity: 1;
}
.recipe-dice__side[data-face="1"] .recipe-dice__pip--5,
.recipe-dice__side[data-face="2"] .recipe-dice__pip--1,
.recipe-dice__side[data-face="2"] .recipe-dice__pip--9,
.recipe-dice__side[data-face="3"] .recipe-dice__pip--1,
.recipe-dice__side[data-face="3"] .recipe-dice__pip--5,
.recipe-dice__side[data-face="3"] .recipe-dice__pip--9,
.recipe-dice__side[data-face="4"] .recipe-dice__pip--1,
.recipe-dice__side[data-face="4"] .recipe-dice__pip--3,
.recipe-dice__side[data-face="4"] .recipe-dice__pip--7,
.recipe-dice__side[data-face="4"] .recipe-dice__pip--9,
.recipe-dice__side[data-face="5"] .recipe-dice__pip--1,
.recipe-dice__side[data-face="5"] .recipe-dice__pip--3,
.recipe-dice__side[data-face="5"] .recipe-dice__pip--5,
.recipe-dice__side[data-face="5"] .recipe-dice__pip--7,
.recipe-dice__side[data-face="5"] .recipe-dice__pip--9,
.recipe-dice__side[data-face="6"] .recipe-dice__pip--1,
.recipe-dice__side[data-face="6"] .recipe-dice__pip--3,
.recipe-dice__side[data-face="6"] .recipe-dice__pip--4,
.recipe-dice__side[data-face="6"] .recipe-dice__pip--6,
.recipe-dice__side[data-face="6"] .recipe-dice__pip--7,
.recipe-dice__side[data-face="6"] .recipe-dice__pip--9 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.recipe-dice__pip {
  position: absolute;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), transparent 26%),
    linear-gradient(145deg, #2b1404, #070403);
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.34),
    0 1px 0 rgba(255,255,255,0.2),
    0 6px 16px rgba(42, 15, 2, 0.16);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 1;
}
.recipe-dice__pip--1 { left: 28%; top: 28%; }
.recipe-dice__pip--2 { left: 50%; top: 28%; }
.recipe-dice__pip--3 { left: 72%; top: 28%; }
.recipe-dice__pip--4 { left: 28%; top: 50%; }
.recipe-dice__pip--5 { left: 50%; top: 50%; }
.recipe-dice__pip--6 { left: 72%; top: 50%; }
.recipe-dice__pip--7 { left: 28%; top: 72%; }
.recipe-dice__pip--8 { left: 50%; top: 72%; }
.recipe-dice__pip--9 { left: 72%; top: 72%; }
.dice-tool__copy {
  display: grid;
  gap: 12px;
}
.dice-tool__copy h3 {
  margin: -0.25rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  max-width: 13ch;
}
.dice-tool__copy p,
.roulette-stage__side p {
  margin: 0;
  color: var(--muted);
}
.tool-output--express {
  background: transparent;
  border: 0;
  padding: 0;
}
.express-empty-state {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 170px;
  border-radius: 28px;
  border: 1px dashed rgba(255, 207, 150, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 139, 45, 0.11), transparent 34%),
    rgba(255,255,255,0.022);
  text-align: center;
  color: rgba(245,245,247,0.72);
}
.express-empty-state span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: rgba(255, 139, 45, 0.14);
  border: 1px solid rgba(255, 207, 150, 0.18);
  font-size: 1.45rem;
}
.express-empty-state strong {
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
}
.express-empty-state p {
  margin: 0;
}
.express-result-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 207, 150, 0.14);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 168, 76, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 179, 107, 0.09), rgba(255,255,255,0.02)),
    rgba(10,10,14,0.38);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}
.express-result-card__media {
  position: relative;
  min-height: clamp(230px, 24vw, 300px);
  overflow: hidden;
}
.express-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 520ms ease;
}
.express-result-card:hover .express-result-card__media img {
  transform: scale(1.04);
}
.express-result-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.52));
}
.express-result-card__media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 0.52rem 0.74rem;
  border-radius: 999px;
  background: rgba(5,5,7,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}
.express-result-card__body {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: clamp(1.1rem, 3vw, 2rem);
}
.express-result-card__score {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.express-result-card__score span,
.express-result-card__score small {
  width: fit-content;
  border-radius: 999px;
  padding: 0.42rem 0.66rem;
  font-weight: 900;
}
.express-result-card__score span {
  background: linear-gradient(135deg, rgba(255, 147, 48, 0.94), rgba(255, 199, 126, 0.94));
  color: #221000;
  box-shadow: 0 14px 34px rgba(255, 128, 35, 0.2);
}
.express-result-card__score small {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,245,247,0.72);
}
.express-result-card__body h3 {
  margin: -0.2rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1;
}
.express-result-card__body p {
  margin: 0;
  color: rgba(245,245,247,0.72);
  line-height: 1.55;
}
.express-result-card__chips,
.express-result-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.express-result-card__chips span {
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: rgba(245,245,247,0.74);
  font-size: 0.84rem;
  font-weight: 700;
}
.express-result-card__actions {
  margin-top: 4px;
  justify-content: space-between;
}
.recipe-wheel-wrap {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  margin: 0 auto;
}
.recipe-wheel-wrap::before,
.recipe-wheel-wrap::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.recipe-wheel-wrap::before {
  inset: -22px;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 145, 47, 0.24), transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(255, 210, 142, 0.44), transparent 28%, rgba(255, 122, 24, 0.34), transparent 62%, rgba(255,255,255,0.18), transparent);
  filter: blur(5px);
  opacity: 0.88;
  animation: wheelAura 7s linear infinite;
}
.recipe-wheel-wrap::after {
  inset: 13px;
  border: 1px solid rgba(255, 207, 150, 0.16);
  background:
    linear-gradient(rgba(255,207,150,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,207,150,0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, transparent 0 35%, black 36% 100%);
  box-shadow: inset 0 0 46px rgba(0,0,0,0.42);
  opacity: 0.42;
}
.recipe-wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  z-index: 4;
  width: 34px;
  height: 48px;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, #fff3dc, #ffb35f 45%, #ff7a21);
  filter: drop-shadow(0 0 14px rgba(255, 145, 47, 0.36)) drop-shadow(0 10px 14px rgba(0,0,0,0.34));
}
.recipe-wheel-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.recipe-wheel-orbit--one {
  inset: -4px;
  border: 1px dashed rgba(255, 207, 150, 0.24);
  animation: wheelOrbit 13s linear infinite;
}
.recipe-wheel-orbit--two {
  inset: 24px;
  border: 1px solid rgba(255, 122, 24, 0.2);
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.1);
  animation: wheelOrbitReverse 11s linear infinite;
}
.recipe-wheel-shadow {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -22px;
  height: 26px;
  z-index: -2;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.34), transparent 72%);
}
.recipe-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 207, 150, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(16,10,7,0.99) 0 18%, transparent 19%),
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.14), transparent 20%),
    conic-gradient(
      from -10deg,
      rgba(255, 146, 48, 0.94) 0 12.5%,
      rgba(255, 210, 142, 0.9) 12.5% 25%,
      rgba(125, 58, 18, 0.84) 25% 37.5%,
      rgba(255, 178, 94, 0.86) 37.5% 50%,
      rgba(76, 31, 10, 0.9) 50% 62.5%,
      rgba(255, 194, 117, 0.82) 62.5% 75%,
      rgba(175, 74, 18, 0.88) 75% 87.5%,
      rgba(255, 122, 24, 0.8) 87.5% 100%
    );
  box-shadow:
    0 28px 78px rgba(0,0,0,0.34),
    0 0 54px rgba(255, 122, 24, 0.16),
    inset 0 0 0 12px rgba(255,255,255,0.035),
    inset 0 0 0 1px rgba(255,255,255,0.13);
  transform: rotate(var(--spin-deg, 0deg));
  transition: transform 1180ms cubic-bezier(0.1, 0.82, 0.12, 1);
}
.recipe-wheel.is-spinning {
  filter: saturate(1.2) brightness(1.08);
  box-shadow:
    0 34px 86px rgba(0,0,0,0.36),
    0 0 72px rgba(255, 122, 24, 0.24),
    0 0 42px rgba(255, 207, 150, 0.12),
    inset 0 0 0 12px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}
.recipe-wheel__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 88px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 207, 150, 0.28);
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, rgba(42,18,7,0.98), rgba(8,6,5,0.96));
  color: rgba(255, 236, 209, 0.96);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0,0,0,0.34), 0 0 24px rgba(255, 122, 24, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
}
.recipe-wheel__label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  transform-origin: 0 0;
  transform: rotate(calc((360deg / var(--total)) * var(--i))) translate(58px, -50%);
  color: rgba(255, 247, 238, 0.94);
  font-size: 0.7rem;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.48);
  font-weight: 900;
}
.roulette-stage__side {
  display: grid;
  gap: 14px;
  padding: clamp(1rem, 2vw, 1.2rem);
  border-radius: 26px;
  border: 1px solid rgba(255, 207, 150, 0.1);
  background: rgba(255,255,255,0.026);
}
.roulette-stage__side h3 {
  margin: -0.2rem 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.02;
  max-width: 13ch;
}
.roulette-stage__side .btn {
  width: fit-content;
}
.roulette-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.roulette-hints span {
  padding: 0.5rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 150, 0.13);
  background: rgba(255,255,255,0.04);
  color: rgba(245,245,247,0.72);
  font-size: 0.78rem;
  font-weight: 850;
}
.roulette-empty-state span {
  color: #ffd7a0;
  font-size: 2rem;
}
.timer-ring {
  width: min(240px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(12,12,15,0.96) 0 54%, transparent 55%),
    conic-gradient(#ff9a3d var(--progress), rgba(255,255,255,0.08) 0);
  border: 1px solid rgba(255, 207, 150, 0.14);
  box-shadow: 0 26px 66px rgba(0,0,0,0.26), 0 18px 60px rgba(255, 122, 24, 0.1);
}
.timer-ring strong {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  color: #fff5e6;
}
.timer-ring span {
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.timer-panel {
  display: grid;
  gap: 14px;
  padding: clamp(1rem, 2vw, 1.2rem);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.075);
  background: rgba(255,255,255,0.025);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.tool-card {
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.085);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.044), rgba(255,255,255,0.015)),
    rgba(10,10,14,0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 1rem;
}
.tool-card--wide {
  grid-column: 1 / -1;
}
.tool-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.tool-card__head h3 {
  margin: 0.2rem 0 0;
}
.tool-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}
.tool-controls--convert {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tool-controls--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
}
.tool-controls label {
  display: grid;
  gap: 0.42rem;
}
.tool-controls span {
  color: rgba(245, 245, 247, 0.54);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tool-controls input,
.tool-controls select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.052);
  color: var(--text);
  padding: 0.85rem 0.92rem;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.tool-controls input:focus,
.tool-controls select:focus {
  border-color: rgba(255, 207, 150, 0.32);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.08);
}
.tool-output {
  display: grid;
  gap: 0.9rem;
}
.tool-output--highlight {
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.085);
  background:
    linear-gradient(135deg, rgba(255, 179, 107, 0.055), rgba(255,255,255,0.018)),
    rgba(255,255,255,0.028);
}
.convert-result-panel {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 190px;
  align-content: center;
  padding: clamp(1.15rem, 2.5vw, 1.7rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 207, 150, 0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 145, 47, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.062), rgba(255,255,255,0.018)),
    rgba(8,8,11,0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.convert-result-panel::after {
  content: "↔";
  position: absolute;
  right: clamp(1rem, 3vw, 1.7rem);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 207, 150, 0.16);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
}
.convert-result-panel > span {
  color: rgba(245,245,247,0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 850;
}
.convert-result-panel strong {
  position: relative;
  z-index: 1;
  color: #fff5e6;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}
.convert-result-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(245,245,247,0.72);
  line-height: 1.55;
  max-width: 62ch;
}
.tool-output strong {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 247, 238, 0.98);
}
.tool-output p {
  margin: 0;
  color: var(--muted);
}
.tool-note {
  min-height: 1.2em;
  color: rgba(255, 207, 150, 0.84);
  font-size: 0.82rem;
}
.tool-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.085);
  background: rgba(255,255,255,0.045);
  color: rgba(245,245,247,0.8);
  font-size: 0.82rem;
}
button.tool-chip {
  cursor: pointer;
}
.tool-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.tool-metric {
  min-height: 112px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.014)),
    rgba(255,255,255,0.024);
  display: grid;
  align-content: center;
  gap: 0.55rem;
}
.tool-metric span {
  color: rgba(245,245,247,0.54);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.tool-metric strong {
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  line-height: 1;
}
.tool-metric small {
  color: rgba(255, 207, 150, 0.76);
  font-weight: 850;
}
.week-planner-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.2rem 0 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.065);
}
.week-planner-head h3 {
  margin: 0.18rem 0 0.3rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}
.week-planner-head p:not(.detail-kicker) {
  margin: 0;
  color: rgba(245,245,247,0.62);
}
.week-planner-head__badge {
  flex: 0 0 auto;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.24), rgba(255, 207, 150, 0.1));
  border: 1px solid rgba(255, 207, 150, 0.16);
  color: rgba(255, 239, 218, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
}
.week-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin: 1rem 0;
}
.week-days button {
  min-height: 66px;
  display: grid;
  place-items: center;
  gap: 0.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.046), rgba(255,255,255,0.014)),
    rgba(255,255,255,0.024);
  color: rgba(245,245,247,0.78);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.week-days button span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,245,247,0.52);
}
.week-days button strong {
  font-size: 0.9rem;
}
.week-days button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 207, 150, 0.18);
}
.week-days button.is-today {
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.08);
}
.week-days button.active {
  color: #211102;
  background: linear-gradient(135deg, rgba(255, 207, 150, 0.96), rgba(255, 122, 24, 0.86));
  border-color: rgba(255, 207, 150, 0.35);
}
.week-days button.active span,
.week-days button.active strong {
  color: #211102;
}
.week-focus {
  display: grid;
  grid-template-columns: 0.85fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.week-focus__intro,
.week-recipe-card {
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 24, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.2);
  overflow: hidden;
}
.week-focus__intro {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1rem;
}
.week-focus__intro h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}
.week-focus__intro p:not(.detail-kicker) {
  margin: 0;
  color: rgba(245,245,247,0.62);
  line-height: 1.5;
}
.week-recipe-card {
  display: grid;
  grid-template-rows: minmax(150px, 0.9fr) auto;
}
.week-recipe-card__media {
  position: relative;
  overflow: hidden;
}
.week-recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 420ms ease;
}
.week-recipe-card:hover .week-recipe-card__media img {
  transform: scale(1.04);
}
.week-recipe-card:hover .recipe-image-placeholder {
  transform: scale(1.04);
}
.week-recipe-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.56));
}
.week-recipe-card__media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 0.44rem 0.62rem;
  border-radius: 999px;
  background: rgba(5,5,7,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 800;
}
.week-recipe-card__body {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem;
}
.week-recipe-card__body h3 {
  margin: -0.1rem 0 0;
  font-size: 1.1rem;
  line-height: 1.08;
}
.week-recipe-card__body p:not(.detail-kicker) {
  margin: 0;
  color: rgba(245,245,247,0.62);
  font-size: 0.86rem;
  line-height: 1.42;
}
.week-recipe-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.2rem;
  color: rgba(245,245,247,0.54);
  font-size: 0.8rem;
}
.utensil-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.1rem 0 1.25rem;
}
.utensil-category-row button {
  min-height: 42px;
  padding: 0.58rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 150, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.018);
  color: rgba(255, 246, 235, 0.78);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.utensil-category-row button:hover,
.utensil-category-row button.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 107, 0.34);
  background:
    radial-gradient(circle at 18% 40%, rgba(255, 122, 24, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 179, 107, 0.12), rgba(255,255,255,0.018));
  color: rgba(255, 248, 240, 0.96);
}
.utensil-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.utensil-shop-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px minmax(0, 1fr);
  border-radius: 30px;
  border: 1px solid rgba(255, 207, 150, 0.11);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 122, 24, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.014)),
    rgba(10,10,14,0.22);
  box-shadow:
    0 24px 62px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.utensil-shop-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 179, 107, 0.26);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 122, 24, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.062), rgba(255,255,255,0.018)),
    rgba(12,10,13,0.28);
}
.utensil-shop-card--featured {
  grid-column: span 2;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
}
.utensil-shop-card__visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 207, 150, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(255,255,255,0.02));
}
.utensil-shop-card__visual span {
  font-size: clamp(3rem, 7vw, 5.2rem);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.28));
}
.utensil-shop-card__body {
  display: grid;
  align-content: start;
  gap: 0.78rem;
  padding: 1rem;
}
.utensil-shop-card__top,
.utensil-shop-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.utensil-shop-card__status {
  color: rgba(255, 207, 150, 0.75);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.utensil-shop-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1;
}
.utensil-shop-card p {
  margin: 0;
  color: rgba(245,245,247,0.68);
  line-height: 1.5;
}
.utensil-shop-card__note {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.026);
}
.utensil-shop-card__note strong {
  color: rgba(255, 226, 196, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.utensil-shop-card__note span,
.utensil-shop-card__actions span {
  color: rgba(245,245,247,0.56);
  font-size: 0.82rem;
  line-height: 1.42;
}
.utensil-shop-card__actions {
  margin-top: 0.1rem;
}
.utensil-buying-note {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 207, 150, 0.1);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 122, 24, 0.12), transparent 34%),
    rgba(255,255,255,0.026);
  text-align: center;
}
.utensil-buying-note h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
}
.utensil-buying-note p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(245,245,247,0.68);
  line-height: 1.6;
}
.article-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.article-story,
.article-aside,
.article-flow article,
.article-callout {
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.14);
}
.article-story h3,
.article-aside h3,
.article-flow article h3,
.article-callout h3 {
  margin: 0.2rem 0 0.6rem;
}
.article-story p,
.article-aside p,
.article-flow article p,
.article-callout p {
  margin: 0;
}
.article-flow {
  display: grid;
  gap: 14px;
}
.article-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.article-checklist li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}
.article-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 179, 107, 0.82);
}
.article-rail {
  display: grid;
  gap: 14px;
}
.mini-story {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}
.mini-story p {
  margin: 0;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.topic-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 100%;
  padding: 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.085);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 24, 0.11), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 207, 150, 0.055), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.047), rgba(255,255,255,0.012)),
    rgba(10,10,14,0.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 16px 44px rgba(0,0,0,0.16);
}
.topic-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 107, 0.32), transparent);
}
.topic-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 207, 150, 0.15);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 207, 150, 0.18), rgba(255, 122, 24, 0.08));
  color: rgba(255, 226, 196, 0.94);
  font-size: 1.25rem;
  font-weight: 900;
}
.topic-card h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.topic-card p {
  margin: 0;
}
.topic-card > p:not(.detail-kicker) {
  color: rgba(245,245,247,0.68);
  line-height: 1.62;
}
.blog-mini-link {
  color: rgba(255, 207, 150, 0.88);
  font-weight: 850;
}
.subpage-nav {
  display: grid;
  gap: 0.9rem;
}
.subpage-nav__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
}
.subpage-nav__head strong {
  font-size: 1rem;
}
.subpage-nav__head p {
  margin: 0;
  color: var(--muted-soft);
}
.article-card__footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted-soft);
}
@keyframes auroraShift { 0%,100% { background-position: 0% 0%, 10% 10%, 90% 70%, 50% 50%; } 50% { background-position: 12% 8%, 18% 24%, 80% 76%, 50% 50%; } }
@keyframes gridDrift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, 120px, 0); } }
@keyframes nebulaPulse { 0%,100% { opacity: 0.9; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes backgroundFloatOne { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(40px,30px,0); } }
@keyframes backgroundFloatTwo { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-38px,-28px,0); } }
@keyframes spiceFloatOne { 50% { transform: translateY(-16px); } }
@keyframes spiceFloatTwo { 50% { transform: translate(-18px,14px); } }
@keyframes spiceFloatThree { 50% { transform: translate(12px,-12px); } }
@keyframes spiceFloatFour { 50% { transform: translate(-10px,18px); } }
@keyframes spiceFloatFive { 50% { transform: translate(14px,-16px); } }
@keyframes spiceFloatSix { 50% { transform: translate(-14px,12px); } }
@keyframes spiceFloatSeven { 50% { transform: translate(12px,-10px); } }
@keyframes spiceFloatEight { 50% { transform: translate(-16px,10px); } }
@keyframes diceHop {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  16% { transform: translate3d(26px, -42px, 0) scale(1.02); }
  34% { transform: translate3d(-18px, -15px, 0) scale(1); }
  48% { transform: translate3d(12px, 6px, 0) scale(0.98); }
  63% { transform: translate3d(-8px, -18px, 0) scale(1.01); }
  79% { transform: translate3d(4px, 3px, 0) scale(0.99); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes diceStableRoll {
  0% { transform: translate(-50%, -50%) rotate(-7deg) scale(1); }
  14% { transform: translate(-44%, -62%) rotate(42deg) scale(1.04); }
  31% { transform: translate(-56%, -48%) rotate(126deg) scale(0.98); }
  48% { transform: translate(-47%, -52%) rotate(218deg) scale(1.02); }
  66% { transform: translate(-53%, -55%) rotate(308deg) scale(0.99); }
  82% { transform: translate(-49%, -49%) rotate(384deg) scale(1.01); }
  100% { transform: translate(-50%, -50%) rotate(353deg) scale(1); }
}
@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes wheelAura {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.025); }
  to { transform: rotate(360deg) scale(1); }
}
@keyframes wheelOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes wheelOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes cookCompleteGlow {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cookSparkPop {
  0% {
    opacity: 0;
    transform: scale(0.25) rotate(-18deg);
  }
  65% {
    opacity: 1;
    transform: scale(1.08) rotate(6deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes cookSparkRing {
  from {
    opacity: 0.9;
    transform: scale(0.72);
  }
  to {
    opacity: 0;
    transform: scale(1.36);
  }
}
@keyframes timerDonePulse {
  from {
    filter: brightness(1);
    box-shadow: 0 0 18px rgba(255, 122, 24, 0.18);
  }
  to {
    filter: brightness(1.14);
    box-shadow: 0 0 30px rgba(255, 179, 107, 0.34);
  }
}
@keyframes toolIconSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce), (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .cosmos::before {
    opacity: 0.32;
    -webkit-mask-image: none;
    mask-image: none;
    will-change: auto;
  }
  .cosmos__spice {
    animation: none !important;
  }
  .global-nav,
  .recipe-grid .recipe-card,
  .favorite-toggle,
  .cookie-banner {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .recipe-card:hover,
  .feature-card:hover,
  .content-panel:hover,
  .article-card:hover,
  .collection-card:hover,
  .shortcut-card:hover,
  .recipe-card:hover .recipe-card__media img,
  .recipe-card:hover .recipe-image-placeholder {
    transform: none;
    filter: none;
  }
}
@media (max-width: 1100px) {
  .stats-row, .feature-grid, .recipe-grid, .triple-grid, .detail-hero, .detail-grid, .blog-grid, .footer__grid, .quick-grid, .duo-grid, .malin-grid, .malin-store-grid, .article-grid, .topic-grid, .week-menu, .week-focus, .tool-launcher-grid, .blog-feature-grid, .recipe-tools-grid, .utensil-shop-grid { grid-template-columns: 1fr 1fr; }
  .search-shell { grid-template-columns: 1fr 1fr; }
  .search-shell--recipes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .search-shell--recipes .search-shell__field--wide { grid-column: 1 / -1; }
  .search-shell--magique { grid-template-columns: 1fr 1fr; }
  .malin-import-top, .malin-import-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: auto; }
  .tool-controls,
  .tool-controls--convert,
  .tool-controls--split,
  .tools-grid,
  .tool-kpis,
  .dice-tool,
  .roulette-stage,
  .timer-tool { grid-template-columns: 1fr 1fr; }
  .express-result-card { grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1fr); }
  .tool-card--wide { grid-column: auto; }
}
@media (max-width: 760px) {
  .global-nav__inner, .stats-row, .feature-grid, .recipe-grid, .triple-grid, .detail-hero, .detail-grid, .blog-grid, .footer__grid, .quick-grid, .duo-grid, .search-shell, .malin-grid, .malin-store-grid, .article-grid, .topic-grid, .tools-grid, .tool-controls, .tool-controls--convert, .tool-controls--split, .week-menu, .week-focus, .tool-launcher-grid, .tool-kpis, .dice-tool, .roulette-stage, .timer-tool, .recipe-portion-mini, .contact-grid, .cookie-banner__panel, .blog-hero, .blog-feature-grid, .blog-story-row, .recipe-tools-grid, .utensil-shop-grid { grid-template-columns: 1fr; }
  .search-shell--recipes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 7px;
    row-gap: 9px;
    padding: 0.62rem;
  }
  .search-shell--recipes .search-shell__field--wide {
    grid-column: 1 / -1;
  }
  .search-shell--recipes .search-shell__field label {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }
  .search-shell--recipes .search-shell__field input,
  .search-shell--recipes .search-shell__field select {
    min-height: 39px;
    padding: 0.5rem 0.55rem;
    font-size: 0.78rem;
  }
  .search-shell--recipes .search-shell__field--wide input {
    min-height: 58px;
    border-radius: 20px;
    padding: 0.9rem 1rem;
    border: 1.5px solid rgba(255, 207, 150, 0.24);
    background:
      radial-gradient(circle at 92% 50%, rgba(255, 122, 24, 0.075), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,0.034), rgba(255,255,255,0.012)),
      rgba(10,10,14,0.34);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.035) inset,
      inset 0 1px 0 rgba(255,255,255,0.06),
      0 0 28px rgba(255, 122, 24, 0.055),
      0 12px 26px rgba(0,0,0,0.16);
    font-size: 1rem;
  }
  .search-shell--recipes .search-shell__field--wide input:focus {
    border-color: rgba(255, 207, 150, 0.42);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.045) inset,
      0 0 0 4px rgba(255, 122, 24, 0.08),
      0 0 32px rgba(255, 122, 24, 0.11),
      0 14px 30px rgba(0,0,0,0.18);
  }
  .search-shell--recipes .select-popover {
    position: static;
    min-width: 0;
  }
  .search-shell--recipes .select-popover__button {
    min-width: 0;
    min-height: 40px;
    gap: 6px;
    padding: 0.52rem 0.48rem;
    font-size: 0.68rem;
    border-radius: 13px;
  }
  .search-shell--recipes .select-popover__value {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .search-shell--recipes .select-popover__chevron {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 9px;
  }
  .search-shell--recipes .select-popover__chevron::before {
    width: 7px;
    height: 7px;
    border-width: 1.5px;
  }
  .search-shell--recipes .select-popover__list {
    position: fixed;
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 18px;
    max-height: min(360px, 54dvh);
    padding: 0.62rem;
    border-radius: 24px;
    transform: translateY(18px) scale(0.98);
  }
  .search-shell--recipes .select-popover.is-open .select-popover__list {
    transform: translateY(0) scale(1);
  }
  .select-popover__option {
    min-height: 46px;
    border-radius: 16px;
    padding: 0.7rem 0.82rem;
  }
  .global-nav { padding-top: calc(8px + env(safe-area-inset-top, 0px)); }
  .global-nav__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 58px;
    padding: 8px 0;
  }
  .global-nav__links,
  .global-nav__actions .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
  .brand__copy small { display: none; }
  .brand__text { font-size: 0.95rem; }
  .hero { padding-top: 3.8rem; }
  .hero__inner {
    padding: 1.2rem;
    border-radius: 26px;
  }
  .tool-card {
    padding: 0.95rem;
    border-radius: 22px;
  }
  .tool-card--tool {
    padding: 0.95rem;
    border-radius: 24px;
  }
  .tool-page-head {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 0.85rem;
  }
  .tool-page-head h2 {
    text-align: left;
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
  .tool-page-head::after {
    display: none;
  }
  .tool-controls {
    gap: 10px;
  }
  .chef-tool-head {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .chef-tool-head h3 {
    max-width: 17ch;
  }
  .chef-tool-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .chef-tool-presets button {
    width: 100%;
    padding-inline: 0.72rem;
  }
  .tool-controls input,
  .tool-controls select,
  .portion-stepper__control {
    min-height: 50px;
  }
  .tool-actions .btn {
    flex: 1 1 140px;
    min-height: 46px;
  }
  .tool-launcher {
    min-height: 210px;
    padding: 1rem;
  }
  .tool-launcher__orb {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }
  .recipe-dice,
  .recipe-wheel-wrap,
  .timer-ring {
    width: min(210px, 78vw);
    justify-self: center;
  }
  .dice-tool__copy {
    text-align: center;
    justify-items: center;
  }
  .dice-tool__copy h3 {
    max-width: 16ch;
  }
  .express-tool-head {
    text-align: center;
    justify-items: center;
  }
  .express-tool-head h3 {
    max-width: 16ch;
  }
  .express-quick-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .express-quick-row button {
    width: 100%;
  }
  .roulette-stage__side {
    justify-items: center;
    text-align: center;
  }
  .roulette-hints {
    justify-content: center;
  }
  .roulette-stage__side h3 {
    max-width: 16ch;
  }
  .roulette-stage__side .btn {
    width: 100%;
  }
  .timer-panel {
    justify-items: stretch;
  }
  .timer-panel .tool-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .express-result-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .express-result-card__media {
    min-height: 210px;
  }
  .express-result-card__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .express-result-card__actions .recipe-card__cta,
  .express-result-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .week-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .week-days button {
    min-height: 58px;
  }
  .week-planner-head {
    display: grid;
    gap: 0.8rem;
  }
  .week-planner-head__badge {
    width: fit-content;
  }
  .week-focus {
    gap: 10px;
  }
  .week-recipe-card {
    grid-template-rows: 190px auto;
  }
  .tool-metric {
    min-height: 92px;
  }
  .tool-card__topline {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero h1 { max-width: none; }
  .blog-hero {
    gap: 12px;
  }
  .blog-hero h2 {
    max-width: none;
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }
  .blog-feature-card--large {
    grid-row: auto;
  }
  .blog-feature-card__media,
  .blog-feature-card--large .blog-feature-card__media {
    min-height: 230px;
  }
  .blog-story-row {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .blog-story-row::after {
    justify-self: start;
  }
  .blog-story-row::before {
    right: 1rem;
    left: auto;
    bottom: 0.75rem;
  }
  .blog-story-row__links {
    justify-content: flex-start;
  }
  .topic-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .blog-article__hero {
    grid-template-columns: 1fr;
  }
  .blog-article__hero h1,
  .blog-article__intro h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.15rem);
  }
  .blog-article__content {
    padding: 1rem;
    border-radius: 24px;
  }
  .blog-article__hero img {
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }
  .blog-article__facts {
    grid-template-columns: 1fr;
  }
  .blog-dropcap::first-letter {
    font-size: 3.4rem;
  }
  .section { padding: 1rem 0 1.5rem; }
  .section__intro h2 { font-size: clamp(1.65rem, 8vw, 2.5rem); }
  .recipe-tool-card {
    padding: 0.9rem;
    border-radius: 22px;
  }
  .recipe-tool-fields,
  .recipe-tool-fields--two {
    grid-template-columns: 1fr;
  }
  .recipe-tool-actions {
    grid-template-columns: 1fr;
  }
  .utensil-category-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }
  .utensil-category-row::-webkit-scrollbar {
    display: none;
  }
  .utensil-category-row button {
    flex: 0 0 auto;
  }
  .utensil-shop-card,
  .utensil-shop-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 132px auto;
  }
  .utensil-shop-card__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .utensil-shop-card__actions .btn {
    width: 100%;
  }
  .section__intro--with-action {
    align-items: stretch;
    flex-direction: column;
  }
  .detail-cover {
    border-radius: 24px;
  }
  .detail-cover img {
    aspect-ratio: 4 / 3;
    max-height: 340px;
  }
  .detail-main-column {
    display: contents;
  }
  .detail-cover {
    order: 1;
  }
  .detail-panel--hero {
    order: 2;
    position: relative;
    top: auto;
  }
  .detail-panel--preparation {
    order: 3;
  }
  .triple-grid .content-panel--story {
    grid-column: auto;
  }
  .recipe-cook-launch {
    width: 100%;
  }
  .recipe-cook-mode {
    grid-template-rows: auto 5px minmax(0, 1fr) auto;
  }
  .recipe-cook-mode__top {
    min-height: 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.55rem 0.72rem;
    gap: 8px 10px;
  }
  .recipe-cook-mode__title {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .recipe-cook-mode__top strong {
    max-width: calc(100vw - 92px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .recipe-cook-timer {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 0.36rem 0 0.7rem;
    grid-template-columns: 34px minmax(0, 1fr) 34px 34px;
    border-radius: 20px;
    padding: 0.38rem;
  }
  .recipe-cook-timer__display {
    min-width: 0;
  }
  .recipe-cook-mode__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    row-gap: 0.1rem;
  }
  .recipe-cook-ingredients {
    grid-column: 1;
    grid-row: 1;
    max-height: 28vh;
    padding: 0.78rem 0.7rem 0.7rem;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
  }
  .recipe-cook-ingredients__head h3 {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.62);
  }
  .recipe-cook-ingredients__head {
    margin-bottom: 0.62rem;
  }
  .recipe-cook-ingredients__list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .recipe-cook-ingredients__list::-webkit-scrollbar {
    display: none;
  }
  .recipe-cook-ingredients__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 207, 150, 0.18);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 166, 82, 0.2), rgba(255, 122, 24, 0.08)),
      rgba(10,10,14,0.88);
    color: rgba(255, 239, 218, 0.96);
    box-shadow:
      0 10px 22px rgba(0,0,0,0.26),
      0 0 18px rgba(255, 122, 24, 0.14);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
  }
  .recipe-cook-ingredients__arrow--prev {
    left: -0.2rem;
  }
  .recipe-cook-ingredients__arrow--next {
    right: -0.2rem;
  }
  .recipe-cook-ingredients__arrow:active {
    transform: translateY(-50%) scale(0.94);
  }
  .recipe-cook-ingredient {
    min-width: min(230px, 74vw);
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 0.54rem 0.6rem;
    border: 0;
    border-radius: 16px;
    background: rgba(255,255,255,0.028);
    box-shadow: none;
    color: rgba(255, 248, 240, 0.86);
    font-size: 0.86rem;
    scroll-snap-align: start;
  }
  .recipe-cook-ingredient input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    border-radius: 999px;
  }
  .recipe-cook-ingredient:has(input:checked) {
    background: rgba(255, 122, 24, 0.08);
  }
  .recipe-cook-step {
    grid-column: 1;
    grid-row: 3;
    gap: 0.7rem;
    padding: 0.9rem 1rem 1.1rem;
  }
  .recipe-cook-step__badge {
    width: 46px;
    height: 46px;
  }
  .recipe-cook-step h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
    line-height: 1.24;
  }
  .recipe-cook-complete {
    padding: 1.2rem;
  }
  .recipe-cook-complete__spark {
    width: 82px;
    height: 82px;
  }
  .recipe-cook-complete h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .recipe-cook-mode__footer {
    padding: 0.7rem;
    gap: 8px;
  }
  .recipe-cook-mode__footer .btn {
    min-height: 48px;
    padding-inline: 0.8rem;
  }
  .section-links { gap: 8px; }
  .section-links a { min-height: 36px; padding: 0.6rem 0.85rem; font-size: 0.82rem; }
  .collection-card,
  .shortcut-card,
  .content-panel,
  .detail-panel,
  .article-card,
  .finder-card,
  .stat-card { padding: 1rem; border-radius: 22px; }
  .footer__grid { padding: 1.2rem; border-radius: 24px; }
  .cookie-banner {
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    padding: 0 10px;
  }
  .cookie-banner__panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 21px;
    gap: 10px;
    padding: 0.76rem;
  }
  .cookie-banner--expanded .cookie-banner__panel {
    grid-template-columns: 1fr;
  }
  .cookie-banner--expanded .cookie-banner__actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .cookie-banner__icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
  .cookie-banner__head {
    gap: 10px;
  }
  .cookie-banner__copy p {
    font-size: 0.84rem;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner__actions .btn {
    width: 100%;
  }
  .cookie-banner__details {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .scroll-top-button {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    width: 46px;
    height: 46px;
  }
  .finder-card--magique { padding: 0; }
  .search-shell--magique {
    grid-template-columns: 1fr;
    padding: 0.62rem;
  }
  .search-shell--magique .search-shell__field input,
  .search-shell--magique .select-popover__button {
    min-height: 54px;
  }
  .search-shell--magique .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 0;
  }
  .malin-entry, .malin-entry--postal, .recipe-pick, .malin-import-grid, .malin-import-top { grid-template-columns: 1fr; }
  .malin-shopping-app {
    min-height: auto;
    padding: 1rem;
    border-radius: 26px;
  }
  .malin-entry--hero {
    grid-template-columns: minmax(0, 1fr) 56px;
  }
  .malin-entry--hero input,
  .malin-add-button {
    min-height: 56px;
    border-radius: 18px;
  }
  .malin-add-button {
    width: 56px;
    font-size: 1.8rem;
  }
  .malin-guide-arrow {
    width: 60px;
    height: 60px;
    border-width: 4px;
  }
  .malin-list-bar {
    justify-content: center;
    text-align: center;
  }
  .malin-list__actions {
    justify-content: center;
  }
  .recipe-pick__actions, .store-card, .store-card__meta { justify-items: start; text-align: left; }
  .malin-import-card__footer { align-items: flex-start; flex-direction: column; }
  .recipe-heading__title {
    max-width: 11.5ch;
    font-size: clamp(2rem, 10.5vw, 3.25rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }
  .detail-panel--sticky { position: static; }
}
@media (max-width: 430px) {
  :root {
    --page: min(100% - 20px, 1360px);
  }
  .global-nav__inner {
    min-height: 54px;
  }
  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }
  .brand__text {
    font-size: 0.88rem;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }
  .mobile-menu {
    top: calc(66px + env(safe-area-inset-top, 0px));
    padding-inline: 8px;
  }
  .mobile-menu__panel {
    width: min(100%, 420px);
    max-height: calc(100svh - 82px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: 28px;
    padding: 0.78rem;
  }
  .mobile-menu__links {
    gap: 7px;
  }
  .mobile-menu__links a,
  .mobile-menu__cta {
    min-height: 50px;
    border-radius: 17px;
  }
  .tool-launcher-grid {
    gap: 10px;
  }
  .tool-launcher {
    min-height: 188px;
    padding: 0.95rem;
    gap: 0.58rem;
  }
  .tool-launcher__orb {
    width: 54px;
    height: 54px;
  }
  .tool-launcher strong {
    font-size: 1.18rem;
  }
  .tool-launcher p {
    font-size: 0.8rem;
  }
  .recipe-dice,
  .recipe-wheel-wrap,
  .timer-ring {
    width: min(198px, 74vw);
  }
  .recipe-wheel__core {
    width: 62px;
    font-size: 0.62rem;
  }
  .recipe-wheel__label {
    transform: rotate(calc((360deg / var(--total)) * var(--i))) translate(42px, -50%);
    font-size: 0.58rem;
  }
  .express-result-card__media {
    min-height: 185px;
  }
  .express-result-card__body {
    padding: 1rem;
  }
  .express-result-card__chips span {
    font-size: 0.78rem;
  }
}
