:root {
  color-scheme: dark;
  --black: #070706;
  --charcoal: #11100e;
  --smoke: #1b1a17;
  --steel: #929894;
  --ash: #d8d0c3;
  --cream: #fff4dc;
  --garlic: #f2d7a0;
  --flame: #f26a21;
  --ember: #b43b18;
  --olive: #6f7b3c;
  --line: rgba(255, 244, 220, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@supports selector(html:has(body.home-page)) {
  html:has(body.home-page) {
    height: 100%;
    overflow: hidden;
  }
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(242, 106, 33, 0.2), transparent 34rem),
    linear-gradient(90deg, rgba(111, 123, 60, 0.12), transparent 30%, rgba(180, 59, 24, 0.08)),
    var(--black);
  color: var(--ash);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  animation: pageEnter 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.site-gate-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 244, 220, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 244, 220, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 22% 28%, rgba(242, 106, 33, 0.2), transparent 32%),
    radial-gradient(circle at 78% 74%, rgba(111, 123, 60, 0.16), transparent 34%),
    #080706;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  animation: pageEnter 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.site-gate-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.34) 52%, rgba(8, 7, 6, 0.9)),
    url("../hero-grit-garlic.png") center / cover;
  opacity: 0.34;
  transform: scale(1.04);
}

.site-gate {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.site-gate-panel {
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
}

.site-gate h1 {
  margin: 0;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.6rem, 15vw, 10rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.site-gate .amp {
  color: var(--flame);
}

.site-gate-message {
  max-width: 680px;
  margin: 24px auto 28px;
  color: var(--ash);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.6;
}

.site-gate-status {
  display: grid;
  width: min(520px, 100%);
  margin: 4px auto 24px;
  border-top: 1px solid rgba(242, 106, 33, 0.55);
  border-bottom: 1px solid rgba(255, 244, 220, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(242, 106, 33, 0.12), transparent),
    rgba(17, 16, 14, 0.5);
  color: var(--garlic);
  padding: 16px 18px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gate-login-button {
  min-width: 160px;
}

.site-gate-user-card {
  display: grid;
  gap: 14px;
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(242, 106, 33, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), transparent 42%),
    rgba(17, 16, 14, 0.68);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.site-gate-user-card p {
  margin: 0;
  color: var(--ash);
  font-weight: 800;
  line-height: 1.55;
}

.site-gate-user-card .site-gate-user-kicker {
  color: var(--cream);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 900;
}

.site-gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.site-gate-actions .button {
  min-width: 150px;
}

.reset-panel {
  width: min(92vw, 720px);
}

.reset-panel h2 {
  margin: 4px 0 0;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  font-weight: 400;
  text-transform: uppercase;
}

.reset-form {
  text-align: left;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  color: inherit;
}

@media (pointer: fine) {
  .custom-cursor {
    display: none;
  }

  *,
  *::before,
  *::after {
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s' x='-45%25' y='-45%25' width='190%25' height='190%25'%3E%3CfeDropShadow dx='0' dy='2.6' stdDeviation='1.7' flood-color='%23000000' flood-opacity='.45'/%3E%3C/filter%3E%3Cpath filter='url(%23s)' d='M5 4 19.2 10.3 12.7 12.5 10.1 20 5 4Z' fill='%23f5d9a2' stroke='%23fff3d6' stroke-width='1.2' stroke-linejoin='round'/%3E%3Cpath d='M7.5 7.3 15.5 10.4 11.6 11.8 10 16.3 7.5 7.3Z' fill='%23f26a21' opacity='.95'/%3E%3Cpath d='M6.3 5.8 17.2 10.2' stroke='%23fff8e5' stroke-width='.8' opacity='.7'/%3E%3C/svg%3E") 4 4, auto !important;
  }

  :is(a, button, input, textarea, select, label, .custom-select-trigger, .collection, .mode-option):hover {
    cursor: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s' x='-45%25' y='-45%25' width='190%25' height='190%25'%3E%3CfeDropShadow dx='0' dy='3' stdDeviation='1.9' flood-color='%23000000' flood-opacity='.5'/%3E%3C/filter%3E%3Cpath filter='url(%23s)' d='M5 4 20.2 10.5 13.1 13 10.3 21 5 4Z' fill='%23f8dfae' stroke='%23fff7df' stroke-width='1.25' stroke-linejoin='round'/%3E%3Cpath d='M7.4 7.1 16.5 10.5 11.9 12.1 10.1 17.1 7.4 7.1Z' fill='%23ff7a24'/%3E%3Cpath d='M6.2 5.7 18.2 10.3' stroke='%23fff8e5' stroke-width='.85' opacity='.76'/%3E%3C/svg%3E") 4 4, auto !important;
  }
}

.custom-page-scrollbar {
  position: fixed;
  top: 10px;
  right: 8px;
  bottom: 10px;
  z-index: 1500;
  width: 7px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.custom-page-scrollbar.is-visible {
  opacity: 1;
}

body.is-loading .custom-page-scrollbar,
body.is-leaving .custom-page-scrollbar {
  opacity: 0;
}

.custom-page-scrollbar-thumb {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(242, 106, 33, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(242, 215, 160, 0.72), rgba(242, 106, 33, 0.92)),
    var(--flame);
  box-shadow: 0 0 18px rgba(242, 106, 33, 0.22);
  pointer-events: auto;
}

:is(.contact-modal, .modal-backdrop, .custom-select-menu, textarea) {
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 106, 33, 0.8) rgba(255, 244, 220, 0.055);
}

:is(.contact-modal, .modal-backdrop, .custom-select-menu, textarea)::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

:is(.contact-modal, .modal-backdrop, .custom-select-menu, textarea)::-webkit-scrollbar-track {
  background: rgba(255, 244, 220, 0.055);
  border-radius: 999px;
}

:is(.contact-modal, .modal-backdrop, .custom-select-menu, textarea)::-webkit-scrollbar-thumb {
  border: 2px solid rgba(17, 16, 14, 0.95);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--garlic), var(--flame));
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body.is-leaving .page-loader {
  opacity: 1;
  pointer-events: auto;
  transition-duration: 220ms;
}

body.is-loading .page-loader {
  opacity: 1;
  pointer-events: auto;
  transition-duration: 340ms;
}

html.route-loading body {
  animation: none;
}

html.route-loading .page-loader {
  opacity: 1;
  pointer-events: auto;
}

html.route-loading body > :not(.page-loader) {
  opacity: 0;
}

body.is-leaving > :not(.page-loader) {
  animation: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 244, 220, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 244, 220, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(242, 106, 33, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(8, 7, 6, 0.985), rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.99)),
    #080706;
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
  opacity: 0;
  isolation: isolate;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader > div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 17px;
  color: var(--garlic);
  font-weight: 900;
  padding-bottom: 46px;
  text-transform: uppercase;
}

.page-loader > div::before,
.page-loader > div::after {
  position: absolute;
  left: 50%;
  content: "";
  border-radius: 999px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.page-loader > div::before {
  bottom: 8px;
  width: min(214px, 48vw);
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 244, 220, 0.16), rgba(242, 106, 33, 0.36), rgba(255, 244, 220, 0.16), transparent);
  box-shadow:
    0 0 18px rgba(242, 106, 33, 0.16),
    0 0 1px rgba(255, 244, 220, 0.18);
  opacity: 0.74;
  transform: translateX(-50%);
}

.page-loader > div::after {
  bottom: 7px;
  width: min(86px, 25vw);
  height: 4px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 244, 220, 0.86) 24%, rgba(255, 159, 78, 0.98) 52%, transparent);
  box-shadow:
    0 0 16px rgba(242, 106, 33, 0.34),
    0 0 5px rgba(255, 244, 220, 0.36);
  transform-origin: center;
  animation: loaderPlateLine 1600ms cubic-bezier(0.2, 0.72, 0.18, 1) infinite;
}

.page-loader strong {
  position: relative;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow:
    0 0 20px rgba(255, 244, 220, 0.08),
    0 0 38px rgba(242, 106, 33, 0.12);
  white-space: nowrap;
  animation: loaderLogoPulse 1800ms ease-in-out infinite;
}

.page-loader .loader-amp {
  background: linear-gradient(135deg, #ffb35c 0%, var(--flame) 46%, var(--ember) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(242, 106, 33, 0.24);
}

.page-loader small {
  color: var(--garlic);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.loader-amp {
  background: linear-gradient(135deg, #ff9a3d 0%, var(--flame) 48%, var(--ember) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(242, 106, 33, 0.2);
}

@keyframes loaderLogoPulse {
  0% {
    opacity: 0.8;
    transform: translateY(0);
  }
  48% {
    opacity: 1;
    transform: translateY(-1px);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }
}

@keyframes loaderPlateLine {
  0% {
    opacity: 0;
    transform: translateX(-188%) scaleX(0.65);
  }
  12% {
    opacity: 1;
  }
  48% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.12);
  }
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(88%) scaleX(0.72);
  }
}

body.header-expanded-from-home .site-header {
  animation: headerExpand 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.header-expanded-from-home .brand-mark {
  animation: brandReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

body.header-expanded-from-home .main-nav {
  animation: navSettle 520ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

body.header-shrunk-to-home .home-header {
  animation: headerShrink 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pageExit {
  to {
    opacity: 0;
  }
}

@keyframes headerExpand {
  from {
    max-width: 360px;
    min-height: 62px;
    padding-left: 10px;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    max-width: 1240px;
    min-height: 74px;
    padding-left: 16px;
    transform: translateY(0) scale(1);
  }
}

@keyframes brandReveal {
  from {
    max-width: 0;
    opacity: 0;
    transform: translateX(-14px);
  }

  to {
    max-width: 260px;
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes navSettle {
  from {
    transform: translateX(-12px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes headerShrink {
  from {
    width: min(1240px, calc(100vw - 88px));
    max-width: 1240px;
    min-height: 74px;
    padding: 12px 14px 12px 16px;
    transform: translateX(-50%) translateY(-8px) scale(1.02);
  }

  to {
    width: max-content;
    max-width: calc(100% - 28px);
    min-height: 62px;
    padding: 10px;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.site-header {
  position: fixed;
  inset: 18px clamp(14px, 4vw, 44px) auto;
  z-index: 30;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 14px 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.085), rgba(255, 244, 220, 0.04) 44%, rgba(111, 123, 60, 0.06)),
    rgba(10, 9, 7, 0.94);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 244, 220, 0.07),
    inset 0 -1px 0 rgba(242, 106, 33, 0.045);
}

.site-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(18px, 4vw, 44px);
  right: clamp(18px, 4vw, 44px);
  bottom: -16px;
  height: 16px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(7, 7, 6, 0.34), transparent);
}

.home-header {
  left: 50%;
  right: auto;
  width: max-content;
  max-width: calc(100% - 28px);
  min-height: 62px;
  justify-content: center;
  transform: translateX(-50%);
  padding: 10px;
}

.home-header .main-nav {
  justify-content: center;
}

.header-menu-stack {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.58);
  border-radius: 50%;
  background: linear-gradient(145deg, #21120b, #080706);
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 244, 220, 0.06);
}

.brand-icon-image {
  overflow: hidden;
  padding: 0;
}

.brand-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-frame,
.brand-image-frame {
  display: grid;
  width: clamp(118px, 14vw, 176px);
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
}

.brand-logo-frame img,
.brand-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark strong,
h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark strong {
  display: block;
  color: var(--cream);
  font-size: 1.05rem;
}

.brand-mark small {
  display: block;
  color: var(--steel);
  font-size: 0.76rem;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a,
.nav-contact {
  min-height: 40px;
  border-radius: 999px;
  color: var(--ash);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  padding: 10px 13px;
}

.nav-shop-link {
  position: relative;
  gap: 7px;
}

.nav-cart-count {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 18px;
  height: 18px;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 244, 220, 0.34), transparent 42%),
    linear-gradient(135deg, #8d281f 0%, var(--flame) 100%);
  color: #fff4dc;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.22),
    0 2px 7px rgba(210, 56, 43, 0.24);
  font-size: 0.58rem;
  font-weight: 1000;
  line-height: 1;
  margin-left: 0;
  padding: 0 5px;
  transform: translateY(-1px);
  transform-origin: 50% 50%;
  animation: none;
}

.nav-cart-count::before {
  content: none;
}

.nav-cart-count[hidden] {
  display: none;
}

.nav-shop-link.has-cart-count {
  border-color: transparent;
  background: transparent;
  color: var(--ash);
  padding-right: 13px;
}

.nav-home {
  width: 42px;
  padding: 0;
}

.nav-home svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(242, 106, 33, 0.62);
  background: rgba(242, 106, 33, 0.13);
  padding: 10px 16px;
  color: var(--garlic);
}

.nav-contact-icon {
  display: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-contact:hover {
  background: rgba(255, 244, 220, 0.08);
  border-color: rgba(255, 244, 220, 0.2);
  color: var(--cream);
}

.nav-contact:hover {
  background: var(--flame);
  border-color: var(--flame);
  color: #160904;
}

.header-account-pill {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: min(470px, calc(100vw - 48px));
  padding: 16px 8px 8px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-top-color: rgba(242, 106, 33, 0.2);
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.13), rgba(255, 244, 220, 0.04)),
    rgba(10, 9, 7, 0.93);
  box-shadow: 0 11px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px) saturate(1.1);
  transform: translateX(-50%);
}

.header-account-pill[hidden] {
  display: none;
}

.header-account-pill span {
  overflow: hidden;
  max-width: 126px;
  color: var(--steel);
  font-size: 0.66rem;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-account-pill button,
.header-account-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.055);
  color: var(--ash);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 5px 8px;
  text-decoration: none;
}

.header-account-pill button:hover,
.header-account-pill a:hover {
  border-color: rgba(242, 106, 33, 0.45);
  background: rgba(242, 106, 33, 0.16);
  color: var(--cream);
}

.home-page {
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100vh;
  height: 100svh;
}

.home-page .custom-page-scrollbar {
  display: none;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 420px);
  gap: clamp(26px, 5vw, 68px);
  min-height: 100vh;
  height: 100vh;
  min-height: 100svh;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(16px, 6vw, 78px) 40px;
}

.home-background {
  --home-bg-position: center;
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #080706 url("../hero-grit-garlic.png") center / cover no-repeat;
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.45), calc(var(--parallax-y, 0px) * -0.45), 0) scale(1.035);
  transition: transform 200ms ease-out;
}

.home-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, var(--home-overlay-side, 0.92)), rgba(7, 7, 6, var(--home-overlay-mid, 0.58)) 42%, rgba(7, 7, 6, var(--home-overlay-far, 0.2))),
    linear-gradient(180deg, rgba(7, 7, 6, 0.02), rgba(7, 7, 6, var(--home-overlay-bottom, 0.86)));
  pointer-events: none;
}

.home-background[data-position="top"] {
  --home-bg-position: center top;
}

.home-background[data-position="bottom"] {
  --home-bg-position: center bottom;
}

.home-background[data-position="left"] {
  --home-bg-position: left center;
}

.home-background[data-position="right"] {
  --home-bg-position: right center;
}

.home-background[data-overlay="light"] {
  --home-overlay-side: 0.82;
  --home-overlay-mid: 0.46;
  --home-overlay-far: 0.12;
  --home-overlay-bottom: 0.76;
}

.home-background[data-overlay="deep"] {
  --home-overlay-side: 0.96;
  --home-overlay-mid: 0.68;
  --home-overlay-far: 0.32;
  --home-overlay-bottom: 0.92;
}

.home-background-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--home-bg-position);
}

.home-background video.home-background-media {
  filter: saturate(1.05) contrast(1.03);
}

.home-hero[data-background-animation="still"] .home-background,
.home-hero[data-background-animation="zoom"] .home-background {
  transform: scale(1.018);
}

.home-hero[data-background-animation="zoom"] .home-background-media {
  animation: homeBackgroundZoom 18s ease-in-out infinite alternate;
}

@keyframes homeBackgroundZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.075);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero[data-background-animation="zoom"] .home-background-media {
    animation: none;
  }
}

.home-panel {
  max-width: 760px;
  transform: translate3d(calc(var(--parallax-x, 0px) * 0.18), calc(var(--parallax-y, 0px) * 0.18), 0);
  transition: transform 220ms ease-out;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--flame);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-panel h1,
.page-intro h1,
.recipe-detail-intro h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.84;
}

.home-panel h1 .amp {
  color: var(--flame);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .home-panel h1 .amp {
    background-image: linear-gradient(180deg, #ffd08a 0%, var(--flame) 46%, var(--ember) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.home-lede,
.page-intro p,
.recipe-detail-intro p,
.quote-block p {
  color: #e1dacd;
  line-height: 1.64;
}

.home-lede {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.home-actions,
.social-grid,
.detail-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 244, 220, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 12px 18px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 244, 220, 0.18), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.button.is-processing {
  gap: 10px;
  isolation: isolate;
  cursor: progress;
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.18), 0 18px 42px rgba(242, 106, 33, 0.24);
  background-size: 220% 100%;
  animation: buttonProcessingPulse 1200ms ease-in-out infinite;
}

.button.is-processing::before {
  content: "";
  width: 1em;
  height: 1em;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 244, 220, 0.4);
  border-top-color: currentColor;
  border-right-color: currentColor;
  border-radius: 999px;
  animation: buttonProcessingSpin 720ms linear infinite;
}

.button.is-processing::after {
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(255, 244, 220, 0.24), transparent),
    repeating-linear-gradient(90deg, rgba(255, 244, 220, 0.05) 0 8px, transparent 8px 16px);
  opacity: 0.72;
  transform: translateX(-115%);
  animation: buttonProcessingSweep 1100ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.button.is-processing > * {
  position: relative;
  z-index: 1;
}

.contact-form.is-processing {
  cursor: progress;
}

.contact-form.is-processing :is(label, input, textarea, select, [data-login-step], .login-recovery-link, .login-back-button) {
  cursor: progress;
}

.contact-form.is-processing :is(input, textarea, select, .login-recovery-link, .login-back-button):not(.is-processing) {
  opacity: 0.62;
}

@keyframes buttonProcessingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes buttonProcessingSweep {
  to {
    transform: translateX(115%);
  }
}

@keyframes buttonProcessingPulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.13);
  }
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.button.primary {
  border-color: rgba(242, 106, 33, 0.92);
  background: var(--flame);
  color: #160904;
}

.button.ghost {
  background: rgba(255, 244, 220, 0.08);
  color: var(--cream);
}

.home-actions .button:hover {
  border-color: rgba(242, 106, 33, 0.72);
}

.button.secondary {
  justify-content: center;
  background: rgba(242, 106, 33, 0.1);
  color: var(--garlic);
}

.social-panel {
  display: grid;
  width: min(660px, 100%);
  gap: 11px;
  margin-top: 28px;
}

.social-panel > p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #ddd3c4;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.social-panel > p::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 106, 33, 0.58), rgba(242, 215, 160, 0.12), transparent);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.social-grid a {
  --social-accent: var(--flame);
  --social-accent-rgb: 242, 106, 33;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  min-height: 112px;
  gap: 9px 12px;
  align-items: start;
  border: 1px solid rgba(255, 244, 220, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--social-accent-rgb), 0.24), transparent 43%),
    linear-gradient(145deg, rgba(255, 244, 220, 0.1), rgba(7, 7, 6, 0.72) 54%, rgba(var(--social-accent-rgb), 0.08));
  padding: 12px 13px 13px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 244, 220, 0.1);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-grid a[data-social-tone="youtube"] {
  --social-accent: #ff4d3d;
  --social-accent-rgb: 255, 77, 61;
}

.social-grid a[data-social-tone="instagram"] {
  --social-accent: #df5fba;
  --social-accent-rgb: 223, 95, 186;
}

.social-grid a[data-social-tone="tiktok"] {
  --social-accent: #25f4ee;
  --social-accent-rgb: 37, 244, 238;
}

.social-grid a[data-social-tone="facebook"] {
  --social-accent: #5f8df4;
  --social-accent-rgb: 95, 141, 244;
}

.social-grid a[data-social-tone="x"],
.social-grid a[data-social-tone="email"],
.social-grid a[data-social-tone="threads"] {
  --social-accent: var(--garlic);
  --social-accent-rgb: 242, 215, 160;
}

.social-grid a[data-social-tone="linkedin"],
.social-grid a[data-social-tone="telegram"] {
  --social-accent: #64a9ff;
  --social-accent-rgb: 100, 169, 255;
}

.social-grid a[data-social-tone="spotify"],
.social-grid a[data-social-tone="whatsapp"] {
  --social-accent: #52d273;
  --social-accent-rgb: 82, 210, 115;
}

.social-grid a[data-social-tone="twitch"],
.social-grid a[data-social-tone="discord"] {
  --social-accent: #a970ff;
  --social-accent-rgb: 169, 112, 255;
}

.social-grid a[data-social-tone="pinterest"] {
  --social-accent: #e75d52;
  --social-accent-rgb: 231, 93, 82;
}

.social-grid a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(var(--social-accent-rgb), 0.9), transparent);
  opacity: 0.82;
  transition: opacity 180ms ease, width 180ms ease;
  z-index: 0;
}

.social-grid a::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(var(--social-accent-rgb), 0.72);
  border-right: 2px solid rgba(var(--social-accent-rgb), 0.72);
  opacity: 0.72;
  transform: translate(-3px, 3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--social-accent-rgb), 0.58);
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--social-accent-rgb), 0.32), transparent 45%),
    linear-gradient(145deg, rgba(255, 244, 220, 0.13), rgba(8, 7, 6, 0.72) 48%, rgba(var(--social-accent-rgb), 0.13));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--social-accent-rgb), 0.14),
    inset 0 1px 0 rgba(255, 244, 220, 0.16);
}

.social-grid a:hover::before,
.social-grid a:focus-visible::before {
  width: 5px;
  opacity: 1;
}

.social-grid a:hover::after,
.social-grid a:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.social-grid a:focus-visible {
  outline: 2px solid rgba(var(--social-accent-rgb), 0.52);
  outline-offset: 3px;
}

.social-icon {
  display: grid;
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(var(--social-accent-rgb), 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 244, 220, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(var(--social-accent-rgb), 0.22), rgba(255, 244, 220, 0.045));
  color: var(--social-accent);
  grid-row: 1 / span 2;
  box-shadow:
    0 10px 24px rgba(var(--social-accent-rgb), 0.1),
    inset 0 1px 0 rgba(255, 244, 220, 0.12);
}

.social-icon svg,
.social-icon img {
  width: 22px;
  height: 22px;
}

.social-icon img {
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(var(--social-accent-rgb), 0.18));
}

.social-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-copy {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 4px;
  min-width: 0;
  padding-right: 16px;
}

.social-grid strong {
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.08;
}

.social-grid small {
  color: #cfc4b6;
  font-size: 0.72rem;
  line-height: 1.32;
}

.social-followers {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  border: 1px solid rgba(var(--social-accent-rgb), 0.3);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--social-accent-rgb), 0.24), transparent 45%),
    rgba(var(--social-accent-rgb), 0.1);
  color: var(--garlic);
  margin-top: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
}

.social-followers b {
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.social-followers small {
  color: rgba(255, 244, 220, 0.78);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-side-stack {
  display: grid;
  align-self: end;
  gap: 14px;
  margin: 0 0 clamp(20px, 4vh, 52px);
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.22), calc(var(--parallax-y, 0px) * -0.22), 0);
  transition: transform 240ms ease-out;
}

.home-community-picks {
  --community-accent: var(--flame);
  --community-accent-soft: rgba(242, 106, 33, 0.16);
  --community-border: rgba(242, 106, 33, 0.26);
  --community-panel: linear-gradient(135deg, rgba(255, 244, 220, 0.06), rgba(7, 7, 6, 0.5)), rgba(7, 7, 6, 0.64);
  --community-card-border: rgba(255, 244, 220, 0.12);
  --community-card-background: linear-gradient(135deg, rgba(255, 244, 220, 0.05), rgba(7, 7, 6, 0.58)), rgba(7, 7, 6, 0.48);
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.home-community-picks::before,
.home-community-picks::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-community-picks[data-community-style="ember"] {
  --community-accent: #ff8a3d;
  --community-accent-soft: rgba(255, 138, 61, 0.15);
  --community-border: rgba(255, 161, 92, 0.28);
  --community-panel:
    radial-gradient(circle at 95% 8%, rgba(255, 138, 61, 0.15), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(255, 99, 35, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(18, 17, 15, 0.9), rgba(6, 6, 5, 0.72));
  --community-card-border: rgba(255, 161, 92, 0.18);
  --community-card-background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 61, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.56)),
    rgba(7, 7, 6, 0.58);
}

.home-community-picks[data-community-style="pantry"] {
  --community-accent: #f2d7a0;
  --community-accent-soft: rgba(242, 215, 160, 0.12);
  --community-border: rgba(242, 215, 160, 0.3);
  --community-panel:
    linear-gradient(90deg, rgba(242, 215, 160, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.075), rgba(7, 7, 6, 0.54)),
    rgba(14, 10, 7, 0.72);
  --community-card-border: rgba(242, 215, 160, 0.22);
  --community-card-background:
    linear-gradient(90deg, rgba(242, 215, 160, 0.09), transparent 34%),
    rgba(7, 7, 6, 0.5);
}

.home-community-picks[data-community-style="forge"] {
  --community-accent: #ff8352;
  --community-accent-soft: rgba(255, 131, 82, 0.16);
  --community-border: rgba(255, 131, 82, 0.34);
  --community-panel:
    linear-gradient(135deg, rgba(255, 131, 82, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), rgba(7, 7, 6, 0.64)),
    rgba(8, 8, 8, 0.82);
  --community-card-border: rgba(255, 131, 82, 0.22);
  --community-card-background:
    linear-gradient(135deg, rgba(255, 131, 82, 0.1), transparent 38%),
    rgba(4, 4, 4, 0.58);
}

.home-community-picks[data-community-style="garden"] {
  --community-accent: #aab68a;
  --community-accent-soft: rgba(170, 182, 138, 0.16);
  --community-border: rgba(170, 182, 138, 0.32);
  --community-panel: linear-gradient(135deg, rgba(170, 182, 138, 0.13), rgba(7, 7, 6, 0.52)), rgba(8, 13, 9, 0.68);
  --community-card-border: rgba(170, 182, 138, 0.22);
  --community-card-background: linear-gradient(135deg, rgba(170, 182, 138, 0.09), rgba(7, 7, 6, 0.54)), rgba(8, 13, 9, 0.56);
}

.home-community-picks[data-community-style="press"] {
  --community-accent: #f4efe2;
  --community-accent-soft: rgba(244, 239, 226, 0.12);
  --community-border: rgba(244, 239, 226, 0.24);
  --community-panel:
    linear-gradient(90deg, rgba(244, 239, 226, 0.11), transparent 1px) 0 0 / 12px 100%,
    linear-gradient(180deg, rgba(244, 239, 226, 0.07), rgba(7, 7, 6, 0.6)),
    rgba(8, 9, 10, 0.76);
  --community-card-border: rgba(244, 239, 226, 0.17);
  --community-card-background:
    linear-gradient(180deg, rgba(244, 239, 226, 0.06), rgba(7, 7, 6, 0.54)),
    rgba(8, 9, 10, 0.64);
}

.home-recipe-carousel {
  position: relative;
  display: grid;
  gap: 11px;
  border: 1px solid var(--community-border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--community-accent-soft), transparent 38%) top / 100% 2px no-repeat,
    var(--community-panel);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 244, 220, 0.06);
  overflow: hidden;
  padding: 12px;
  touch-action: pan-y;
}

.home-recipe-carousel::before,
.home-recipe-carousel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-recipe-carousel[hidden] {
  display: none;
}

.home-recipe-carousel-head,
.home-recipe-carousel-controls,
.home-recipe-carousel-dots {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-recipe-carousel-head {
  justify-content: space-between;
  gap: 10px;
}

.home-recipe-carousel-head > span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--community-accent);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-recipe-carousel-controls {
  flex: 0 0 auto;
  gap: 5px;
}

.home-recipe-carousel-controls button,
.home-recipe-carousel-dots button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 244, 220, 0.16);
  background: rgba(255, 244, 220, 0.045);
  color: var(--community-accent);
  cursor: pointer;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, color 190ms ease, box-shadow 190ms ease;
}

.home-recipe-carousel-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 244, 220, 0.12), transparent 38%),
    rgba(7, 7, 6, 0.54);
}

.home-recipe-carousel-controls button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.home-recipe-carousel-controls button:hover,
.home-recipe-carousel-dots button:hover,
.home-recipe-carousel-dots button.is-active {
  border-color: var(--community-border);
  background: var(--community-accent-soft);
  color: var(--cream);
}

.home-recipe-carousel-dots button.is-active {
  transform: translateY(-1px) scale(1.1);
}

.home-recipe-carousel:not([data-indicator-style="bars"]) .home-recipe-carousel-dots button.is-active {
  animation: homeCarouselIndicatorSelect 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-recipe-carousel-controls button:hover {
  transform: translateY(-1px) scale(1.04);
}

.home-recipe-carousel-track {
  display: grid;
  height: 128px;
  position: relative;
  z-index: 1;
  touch-action: pan-y;
}

.home-recipe-spotlight-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  height: 128px;
  overflow: hidden;
  border: 1px solid var(--community-card-border);
  border-radius: calc(var(--radius) - 2px);
  background: var(--community-card-background);
  color: var(--cream);
  padding: 9px;
  -webkit-user-drag: none;
  user-select: none;
  animation: homeCarouselCardIn 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-recipe-carousel[data-carousel-direction="prev"] .home-recipe-spotlight-card {
  animation-name: homeCarouselCardInPrev;
}

.home-recipe-spotlight-card:hover {
  border-color: var(--community-border);
  background: var(--community-accent-soft);
  transform: translateY(-1px);
}

.home-recipe-spotlight-image {
  width: 82px;
  height: 82px;
  border-radius: 10px;
  background-color: rgba(255, 244, 220, 0.06);
  background-position: center;
  background-size: cover;
  animation: homeCarouselImageIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-recipe-spotlight-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  animation: homeCarouselCopyIn 640ms 70ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-recipe-spotlight-copy small,
.home-recipe-spotlight-copy em {
  color: var(--community-accent);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.home-recipe-spotlight-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-recipe-spotlight-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: #d2cabd;
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-recipe-spotlight-copy em {
  color: var(--garlic);
}

.home-shop-picks {
  position: relative;
  display: grid;
  min-width: 0;
}

.home-product-carousel {
  position: relative;
  display: grid;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(111, 123, 60, 0.14), transparent 44%) top / 100% 2px no-repeat,
    linear-gradient(135deg, rgba(255, 244, 220, 0.04), rgba(7, 7, 6, 0.58)),
    rgba(8, 9, 8, 0.6);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 244, 220, 0.045);
  padding: 10px;
  touch-action: pan-y;
}

.home-shop-picks[hidden],
.home-product-carousel[hidden] {
  display: none;
}

.home-product-carousel-head,
.home-product-carousel-controls,
.home-product-carousel-dots {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.home-product-carousel-head {
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
}

.home-product-carousel-head > span {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: rgba(242, 215, 160, 0.9);
  font-size: 0.64rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-product-carousel-controls {
  flex: 0 0 auto;
  gap: 5px;
}

.home-product-carousel-controls button,
.home-product-carousel-dots button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 244, 220, 0.13);
  background: rgba(255, 244, 220, 0.04);
  color: var(--garlic);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-product-carousel-controls button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 244, 220, 0.1), transparent 38%),
    rgba(7, 7, 6, 0.52);
}

.home-product-carousel-controls button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.home-product-carousel-controls button:hover,
.home-product-carousel-dots button:hover,
.home-product-carousel-dots button.is-active {
  border-color: rgba(242, 215, 160, 0.34);
  background: rgba(111, 123, 60, 0.18);
  color: var(--cream);
}

.home-product-carousel-controls button:hover {
  transform: translateY(-1px);
}

.home-product-carousel-track {
  display: grid;
  min-height: 84px;
  position: relative;
  z-index: 1;
  touch-action: pan-y;
}

.home-product-spotlight-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 84px;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(111, 123, 60, 0.1), rgba(7, 7, 6, 0.48)),
    rgba(7, 7, 6, 0.48);
  color: var(--cream);
  padding: 8px;
  -webkit-user-drag: none;
  user-select: none;
  animation: homeCarouselCardIn 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-product-carousel[data-carousel-direction="prev"] .home-product-spotlight-card {
  animation-name: homeCarouselCardInPrev;
}

.home-product-spotlight-card:hover {
  border-color: rgba(242, 215, 160, 0.26);
  background:
    linear-gradient(135deg, rgba(111, 123, 60, 0.16), rgba(242, 106, 33, 0.055)),
    rgba(7, 7, 6, 0.54);
  transform: translateY(-1px);
}

.home-product-spotlight-image {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 244, 220, 0.055);
  box-shadow: inset 0 -20px 24px rgba(7, 7, 6, 0.16);
}

.home-product-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-spotlight-image .store-image-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  font-size: 0.82rem;
}

.home-product-spotlight-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.home-product-spotlight-copy small {
  overflow: hidden;
  color: #bac49a;
  font-size: 0.6rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-product-spotlight-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--cream);
  font-size: 0.86rem;
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-spotlight-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(216, 208, 195, 0.82);
  font-size: 0.68rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.home-product-spotlight-price {
  display: grid;
  justify-items: end;
  gap: 5px;
  min-width: 58px;
}

.home-product-price-stack {
  color: var(--garlic);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-align: right;
}

.home-product-price-stack.is-sale {
  display: grid;
  gap: 3px;
}

.home-product-price-stack s {
  color: rgba(216, 208, 195, 0.48);
  font-size: 0.62rem;
}

.home-product-spotlight-price em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(242, 106, 33, 0.26);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.11);
  color: var(--garlic);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 950;
  padding: 4px 7px;
  text-transform: uppercase;
}

.home-product-carousel-dots {
  justify-content: flex-end;
  gap: 5px;
  min-height: 10px;
}

.home-product-carousel-dots button {
  width: 18px;
  height: 5px;
  border-radius: 999px;
  padding: 0;
}

.home-product-carousel-dots button.is-active {
  width: 30px;
  transform: none;
}

.home-product-carousel[data-indicator-style="dots"] .home-product-carousel-dots button {
  width: 7px;
  height: 7px;
}

.home-product-carousel[data-indicator-style="dots"] .home-product-carousel-dots button.is-active {
  width: 7px;
  transform: scale(1.2);
}

.home-product-carousel[data-indicator-style="bars"] .home-product-carousel-dots button {
  position: relative;
  width: 26px;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 244, 220, 0.075);
}

.home-product-carousel[data-indicator-style="bars"] .home-product-carousel-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #bac49a, var(--garlic));
  transform: scaleX(0);
  transform-origin: left center;
}

.home-product-carousel[data-indicator-style="bars"][data-carousel-autoplay="true"] .home-product-carousel-dots button.is-active::after {
  animation: homeProductIndicatorFill var(--home-product-interval, 6200ms) linear forwards;
}

.home-product-carousel[data-indicator-style="numbers"] .home-product-carousel-dots button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: rgba(255, 244, 220, 0.62);
  font-size: 0.58rem;
  font-weight: 950;
}

.home-product-carousel[data-product-style="ticket"] .home-product-spotlight-card {
  grid-template-columns: minmax(0, 1fr) auto;
  border-style: dashed;
}

.home-product-carousel[data-product-style="ticket"] .home-product-spotlight-image {
  display: none;
}

.home-product-carousel[data-product-style="mini"] {
  padding: 9px;
}

.home-product-carousel[data-product-style="mini"] .home-product-carousel-track,
.home-product-carousel[data-product-style="mini"] .home-product-spotlight-card {
  min-height: 64px;
}

.home-product-carousel[data-product-style="mini"] .home-product-spotlight-card {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

.home-product-carousel[data-product-style="mini"] .home-product-spotlight-image {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.home-product-carousel[data-product-style="mini"] .home-product-spotlight-copy span {
  display: none;
}

.home-product-carousel[data-product-style="price"] .home-product-spotlight-card {
  grid-template-columns: minmax(0, 1fr) minmax(88px, auto);
  background:
    linear-gradient(90deg, rgba(242, 215, 160, 0.085), rgba(7, 7, 6, 0.48)),
    rgba(7, 7, 6, 0.5);
}

.home-product-carousel[data-product-style="price"] .home-product-spotlight-image {
  display: none;
}

.home-product-carousel[data-product-style="price"] .home-product-price-stack {
  font-size: 1rem;
}

@keyframes homeProductIndicatorFill {
  to {
    transform: scaleX(1);
  }
}

.home-community-picks[data-community-style="pantry"] .home-recipe-carousel {
  gap: 12px;
  border-radius: 14px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 -10px 0 rgba(242, 215, 160, 0.045);
  padding: 13px 13px 16px;
}

.home-community-picks[data-community-style="pantry"] .home-recipe-carousel-head {
  border-radius: 999px;
  border: 1px solid rgba(242, 215, 160, 0.18);
  background:
    linear-gradient(90deg, rgba(242, 215, 160, 0.16), rgba(242, 215, 160, 0.06) 54%, transparent),
    rgba(7, 7, 6, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.16);
  padding: 7px 6px 7px 13px;
}

.home-community-picks[data-community-style="pantry"] .home-recipe-carousel-head > span {
  max-width: calc(100% - 78px);
  display: block;
  color: #fff4dc;
  width: fit-content;
  background: none;
  padding: 0 2px 0 0;
  font-size: 0.72rem;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.62),
    0 0 14px rgba(242, 106, 33, 0.2);
}

.home-community-picks[data-community-style="pantry"] .home-recipe-spotlight-card {
  grid-template-columns: 72px minmax(0, 1fr);
  border-radius: 12px;
  padding: 10px;
}

.home-community-picks[data-community-style="pantry"] .home-recipe-spotlight-image {
  width: 72px;
  height: 90px;
  border-radius: 36px 36px 10px 10px;
  box-shadow: 0 0 0 5px rgba(242, 215, 160, 0.075);
}

.home-community-picks[data-community-style="ember"] .home-recipe-carousel {
  gap: 11px;
  border-width: 1px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), transparent 44%),
    var(--community-panel);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 244, 220, 0.04),
    inset 0 -22px 38px rgba(255, 138, 61, 0.045);
  padding: 12px;
}

.home-community-picks[data-community-style="ember"] .home-recipe-carousel::before {
  display: none;
}

.home-community-picks[data-community-style="ember"] .home-recipe-carousel::after {
  right: -22px;
  bottom: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.2), rgba(255, 138, 61, 0.065) 38%, transparent 70%);
}

.home-community-picks[data-community-style="ember"] .home-recipe-carousel-head {
  min-height: 34px;
}

.home-community-picks[data-community-style="ember"] .home-recipe-carousel-head > span {
  max-width: calc(100% - 78px);
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 7px 2px 7px 2px;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.2), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.5);
  color: #ffe0bf;
  padding: 7px 9px;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.1),
    0 9px 20px rgba(0, 0, 0, 0.22);
  text-shadow: 0 0 14px rgba(255, 138, 61, 0.22);
}

.home-community-picks[data-community-style="ember"] .home-recipe-carousel-controls button {
  border-radius: 9px 3px 9px 3px;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 244, 220, 0.1), transparent 38%),
    rgba(7, 7, 6, 0.58);
}

.home-community-picks[data-community-style="ember"] .home-recipe-spotlight-card {
  border-color: rgba(255, 161, 92, 0.22);
  border-radius: 8px 2px 10px 2px;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.08), transparent 34%),
    var(--community-card-background);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 220, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.home-community-picks[data-community-style="ember"] .home-recipe-spotlight-image {
  border-radius: 7px 2px 8px 2px;
  box-shadow:
    inset 0 -26px 30px rgba(7, 7, 6, 0.16),
    0 0 0 1px rgba(255, 138, 61, 0.11);
  filter: saturate(1.08) contrast(1.06) brightness(0.96);
}

.home-community-picks[data-community-style="forge"] .home-recipe-carousel {
  gap: 12px;
  border-width: 1px;
  border-radius: 8px 2px 10px 2px;
  background:
    linear-gradient(90deg, rgba(255, 131, 82, 0.13), transparent 58%) top / 100% 3px no-repeat,
    linear-gradient(135deg, rgba(255, 244, 220, 0.04), transparent 42%),
    var(--community-panel);
  box-shadow:
    5px 5px 0 rgba(255, 131, 82, 0.08),
    0 20px 46px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 244, 220, 0.055);
  padding: 12px;
}

.home-community-picks[data-community-style="forge"] .home-recipe-carousel::before {
  display: none;
}

.home-community-picks[data-community-style="forge"] .home-recipe-carousel-head {
  background:
    linear-gradient(90deg, rgba(255, 131, 82, 0.2), rgba(255, 131, 82, 0.035) 58%, transparent),
    rgba(255, 244, 220, 0.035);
  border: 1px solid rgba(255, 131, 82, 0.2);
  border-radius: 6px 2px 6px 2px;
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.07);
  padding: 7px 8px 7px 10px;
}

.home-community-picks[data-community-style="forge"] .home-recipe-carousel-head > span {
  color: #ffb08b;
  text-shadow: 0 0 14px rgba(255, 131, 82, 0.18);
}

.home-community-picks[data-community-style="forge"] .home-recipe-spotlight-card {
  border-top: 3px solid var(--community-accent);
  border-left-width: 1px;
  border-radius: 6px 2px 9px 2px;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.home-community-picks[data-community-style="forge"] .home-recipe-spotlight-image {
  border-radius: 5px 2px 6px 2px;
  filter: contrast(1.08) saturate(0.95);
}

.home-community-picks[data-community-style="garden"] .home-recipe-carousel {
  gap: 13px;
  border-radius: 16px 8px 16px 8px;
  padding: 13px;
}

.home-community-picks[data-community-style="garden"] .home-recipe-carousel-controls button {
  border-radius: 10px 4px;
}

.home-community-picks[data-community-style="garden"] .home-recipe-spotlight-card {
  border-radius: 14px 6px 14px 6px;
}

.home-community-picks[data-community-style="garden"] .home-recipe-spotlight-image {
  border-radius: 14px 5px 14px 5px;
}

.home-community-picks[data-community-style="press"] .home-recipe-carousel {
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: var(--community-panel);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(244, 239, 226, 0.14);
  padding: 12px 12px 10px;
}

.home-community-picks[data-community-style="press"] .home-recipe-carousel-head {
  align-items: stretch;
  border-bottom: 2px solid rgba(244, 239, 226, 0.18);
  padding-bottom: 7px;
}

.home-community-picks[data-community-style="press"] .home-recipe-carousel-head > span {
  align-self: center;
  color: #f4efe2;
  font-size: 0.6rem;
}

.home-community-picks[data-community-style="press"] .home-recipe-spotlight-card,
.home-community-picks[data-community-style="press"] .home-recipe-spotlight-image {
  border-radius: 0;
}

.home-community-picks[data-community-style="press"] .home-recipe-carousel-dots {
  justify-content: flex-start;
}

.home-recipe-carousel[data-carousel-style="showcase"] {
  gap: 10px;
}

.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-carousel-track,
.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-spotlight-card {
  height: 216px;
}

.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-spotlight-card {
  grid-template-columns: 1fr;
  grid-template-rows: 100px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  padding: 9px;
}

.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-spotlight-image {
  width: 100%;
  height: 100px;
  border-radius: 7px;
  background-position: center 46%;
  box-shadow: inset 0 -32px 40px rgba(7, 7, 6, 0.22);
}

.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-spotlight-copy {
  align-content: start;
  border-top: 1px solid rgba(255, 244, 220, 0.1);
  padding: 8px 2px 1px;
}

.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-spotlight-copy strong {
  display: block;
  overflow: hidden;
  font-size: 1.06rem;
  min-height: 1.34em;
  line-height: 1.25;
  padding-bottom: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-recipe-carousel[data-carousel-style="showcase"] .home-recipe-spotlight-copy span {
  -webkit-line-clamp: 1;
}

.home-recipe-carousel[data-carousel-style="compact"] {
  gap: 10px;
  padding: 10px;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-carousel-track,
.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-card {
  height: 132px;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-card {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border-left-width: 1px;
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.1), rgba(7, 7, 6, 0.44)),
    var(--community-card-background);
  padding: 0;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-image {
  width: 92px;
  height: 100%;
  border-radius: 10px 0 0 10px;
  box-shadow:
    inset -28px 0 30px rgba(7, 7, 6, 0.36),
    1px 0 0 rgba(255, 244, 220, 0.08);
  filter: saturate(1.05) contrast(1.04);
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-copy {
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 3px 8px;
  padding: 11px 12px;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-copy strong,
.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-copy span {
  grid-column: 1 / -1;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-copy span {
  -webkit-line-clamp: 1;
}

.home-recipe-carousel[data-carousel-style="compact"] .home-recipe-spotlight-copy em {
  justify-self: end;
  white-space: nowrap;
}

.home-recipe-carousel[data-carousel-style="split"] {
  padding: 10px;
}

.home-recipe-carousel[data-carousel-style="split"] .home-recipe-carousel-track,
.home-recipe-carousel[data-carousel-style="split"] .home-recipe-spotlight-card {
  height: 154px;
}

.home-recipe-carousel[data-carousel-style="split"] .home-recipe-spotlight-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  border-left-width: 1px;
  border-radius: 10px 3px 10px 3px;
  background: rgba(7, 7, 6, 0.42);
  padding: 0;
}

.home-recipe-carousel[data-carousel-style="split"] .home-recipe-spotlight-image {
  width: 100%;
  height: 100%;
  border-radius: 9px 0 0 2px;
  background-position: center;
  box-shadow:
    inset -34px 0 42px rgba(7, 7, 6, 0.24),
    1px 0 0 rgba(255, 244, 220, 0.08);
  filter: saturate(1.08) contrast(1.03);
}

.home-recipe-carousel[data-carousel-style="split"] .home-recipe-spotlight-copy {
  align-content: end;
  border-left: 1px solid var(--community-card-border);
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.18)),
    rgba(7, 7, 6, 0.34);
  padding: 12px;
}

.home-recipe-carousel[data-carousel-style="split"] .home-recipe-spotlight-copy strong {
  font-size: 1rem;
  line-height: 1.12;
}

.home-recipe-carousel[data-carousel-style="split"] .home-recipe-spotlight-copy span {
  -webkit-line-clamp: 2;
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-carousel-track,
.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-card {
  height: 196px;
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-card {
  position: relative;
  grid-template-columns: 1fr;
  align-items: end;
  border-left-width: 1px;
  isolation: isolate;
  background: rgba(7, 7, 6, 0.34);
  padding: 0;
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.02) 0%, rgba(7, 7, 6, 0.04) 42%, rgba(7, 7, 6, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.5), rgba(7, 7, 6, 0.12) 48%, rgba(7, 7, 6, 0.05));
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  filter: saturate(1.12) contrast(1.03) brightness(1.02);
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-copy {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 9px;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-top: 1px solid rgba(255, 244, 220, 0.14);
  border-left: 4px solid var(--community-accent);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.86), rgba(7, 7, 6, 0.48) 76%, rgba(7, 7, 6, 0.25)),
    rgba(7, 7, 6, 0.46);
  box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.2);
  padding: 9px 12px 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(1.5px);
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-copy strong {
  grid-column: 1 / -1;
  font-size: 1.02rem;
  line-height: 1.06;
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-copy span {
  grid-column: 1 / -1;
  color: #f0e5d0;
  font-size: 0.76rem;
  line-height: 1.28;
  -webkit-line-clamp: 1;
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-copy small {
  grid-column: 1;
}

.home-recipe-carousel[data-carousel-style="poster"] .home-recipe-spotlight-copy em {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: #fff4dc;
  white-space: nowrap;
}

.home-recipe-carousel[data-carousel-style="minimal"] {
  border-style: solid;
  background:
    linear-gradient(90deg, rgba(255, 244, 220, 0.05), transparent 1px) 0 0 / 14px 100%,
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), rgba(7, 7, 6, 0.38)),
    rgba(7, 7, 6, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.045),
    0 12px 32px rgba(0, 0, 0, 0.2);
  padding: 12px 13px;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-carousel-track,
.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-card {
  height: 116px;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-card {
  position: relative;
  grid-template-columns: 1fr;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow:
    inset 4px 0 0 var(--community-accent),
    inset 0 1px 0 rgba(255, 244, 220, 0.1),
    inset 0 -1px 0 rgba(255, 244, 220, 0.08);
  padding: 12px 2px 12px 17px;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-image {
  display: none;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-copy {
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 4px 10px;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-copy strong,
.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-copy span {
  grid-column: 1 / -1;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-copy strong {
  font-size: 1.08rem;
  line-height: 1.14;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-copy span {
  -webkit-line-clamp: 1;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-spotlight-copy em {
  justify-self: end;
  white-space: nowrap;
}

.home-recipe-carousel[data-carousel-style="minimal"] .home-recipe-carousel-dots {
  justify-content: flex-start;
}

.home-recipe-carousel-dots {
  justify-content: center;
  gap: 6px;
  counter-reset: homeCarouselIndicator;
}

.home-recipe-carousel-dots button {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  will-change: transform;
}

.home-recipe-carousel-dots button::before,
.home-recipe-carousel-dots button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-recipe-carousel[data-indicator-style="bars"] .home-recipe-carousel-dots {
  gap: 5px;
}

.home-recipe-carousel[data-indicator-style="bars"] .home-recipe-carousel-dots button {
  width: 32px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 244, 220, 0.08);
  transform: none;
}

.home-recipe-carousel[data-indicator-style="bars"] .home-recipe-carousel-dots button::before {
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--community-accent), rgba(255, 244, 220, 0.58));
  opacity: 0.48;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: opacity 190ms ease, transform 220ms ease;
}

.home-recipe-carousel[data-indicator-style="bars"] .home-recipe-carousel-dots button.is-active::before,
.home-recipe-carousel[data-indicator-style="bars"] .home-recipe-carousel-dots button:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.home-recipe-carousel[data-indicator-style="bars"][data-carousel-autoplay="true"][data-carousel-playable="true"] .home-recipe-carousel-dots button.is-active::before {
  transform: scaleX(0.18);
  animation: homeCarouselIndicatorFill var(--home-carousel-interval, 5600ms) linear forwards;
}

.home-recipe-carousel[data-indicator-style="bars"][data-carousel-autoplay="true"][data-carousel-playable="true"][data-carousel-paused="true"] .home-recipe-carousel-dots button.is-active::before {
  animation-play-state: paused;
}

.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots {
  gap: 6px;
}

.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button {
  width: 25px;
  height: 12px;
  border-color: rgba(255, 244, 220, 0.1);
  border-radius: 999px 999px 999px 4px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.08)),
    rgba(7, 7, 6, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 220, 0.035),
    0 3px 9px rgba(0, 0, 0, 0.18);
  overflow: visible;
  transform: translateY(0) scale(1);
}

.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button::before {
  inset: 3px 14px 3px 4px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 244, 220, 0.8), transparent 28%),
    linear-gradient(90deg, rgba(255, 244, 220, 0.42), var(--community-accent));
  opacity: 0.34;
  transform: scaleX(0.55);
  transform-origin: left;
  transition: inset 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}

.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button::after {
  right: 4px;
  bottom: -3px;
  left: 4px;
  height: 3px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, var(--community-accent-soft), transparent 70%);
  opacity: 0.25;
  transform: scaleX(0.65);
  transition: opacity 220ms ease, transform 260ms ease;
}

.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button.is-active::before,
.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button:hover::before {
  inset: 3px 4px;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 244, 220, 0.9), transparent 24%),
    linear-gradient(90deg, rgba(255, 244, 220, 0.75), var(--community-accent) 52%, rgba(255, 122, 47, 0.78));
  opacity: 1;
  box-shadow:
    0 0 12px var(--community-accent-soft),
    0 0 18px rgba(255, 122, 47, 0.16);
  transform: scaleX(1);
}

.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button.is-active::after,
.home-recipe-carousel[data-indicator-style="embers"] .home-recipe-carousel-dots button:hover::after {
  opacity: 0.86;
  transform: scaleX(1);
}

.home-recipe-carousel[data-indicator-style="plates"] .home-recipe-carousel-dots {
  gap: 8px;
}

.home-recipe-carousel[data-indicator-style="plates"] .home-recipe-carousel-dots button {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 244, 220, 0.05) 0 42%, transparent 44%),
    rgba(7, 7, 6, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 220, 0.11),
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.home-recipe-carousel[data-indicator-style="plates"] .home-recipe-carousel-dots button::before {
  inset: 5px;
  border-radius: 50%;
  background: rgba(255, 244, 220, 0.18);
  transition: inset 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.home-recipe-carousel[data-indicator-style="plates"] .home-recipe-carousel-dots button.is-active::before,
.home-recipe-carousel[data-indicator-style="plates"] .home-recipe-carousel-dots button:hover::before {
  inset: 3px;
  background: var(--community-accent);
  box-shadow: 0 0 13px var(--community-accent-soft);
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots {
  gap: 4px;
  width: fit-content;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button {
  counter-increment: homeCarouselIndicator;
  width: 26px;
  height: 20px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.075), rgba(7, 7, 6, 0.22)),
    rgba(7, 7, 6, 0.46);
  color: rgba(255, 244, 220, 0.72);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 950;
  line-height: 1;
  overflow: hidden;
  transform-origin: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    0 5px 12px rgba(0, 0, 0, 0.18);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button::before {
  content: counter(homeCarouselIndicator);
  position: relative;
  z-index: 1;
  transition: color 260ms ease, transform 260ms ease;
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button::after {
  inset: 2px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 244, 220, 0.3), transparent 32%),
    linear-gradient(135deg, var(--community-accent), rgba(242, 215, 160, 0.72));
  opacity: 0;
  transform: scale(0.82);
  transform-origin: center;
  transition: opacity 230ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button.is-active,
.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button:hover {
  border-color: var(--community-border);
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.1), rgba(7, 7, 6, 0.2)),
    rgba(7, 7, 6, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.14),
    0 0 16px var(--community-accent-soft),
    0 7px 14px rgba(0, 0, 0, 0.22);
  color: #080706;
  transform: translateY(-1px);
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button.is-active::after,
.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button:hover::after {
  opacity: 1;
  transform: scale(1);
}

.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button.is-active::before,
.home-recipe-carousel[data-indicator-style="numbers"] .home-recipe-carousel-dots button:hover::before {
  color: #080706;
  transform: translateY(-1px);
}

@keyframes homeCarouselIndicatorSelect {
  0% {
    transform: translateY(0) scale(0.86);
  }

  62% {
    transform: translateY(-2px) scale(1.18);
  }

  100% {
    transform: translateY(-1px) scale(1.1);
  }
}

@keyframes homeCarouselIndicatorFill {
  from {
    transform: scaleX(0.18);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes homeCarouselCardIn {
  from {
    opacity: 0;
    transform: translateX(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes homeCarouselCardInPrev {
  from {
    opacity: 0;
    transform: translateX(-14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes homeCarouselImageIn {
  from {
    opacity: 0.58;
    transform: scale(1.055);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes homeCarouselCopyIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.back-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--garlic);
  font-weight: 900;
  padding: 6px 0;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 106, 33, 0.88), rgba(242, 215, 160, 0.42));
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 240ms ease;
}

.back-link-arrow {
  display: inline-block;
  color: var(--cream);
  transition: transform 180ms ease;
}

.back-link:hover {
  transform: translateY(-2px);
  color: var(--cream);
}

.back-link:hover::after {
  transform: scaleX(1);
}

.back-link:hover .back-link-arrow {
  transform: translateX(-4px);
}

.back-link:focus-visible {
  outline: 2px solid rgba(242, 215, 160, 0.82);
  outline-offset: 3px;
}

.ethos-panel {
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.08), rgba(255, 244, 220, 0.025)),
    rgba(7, 7, 6, 0.56);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
  transition: border-color 180ms ease, background 180ms ease;
}

.ethos-panel h2 {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.ethos-list {
  display: grid;
  gap: 12px;
}

.ethos-list div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 244, 220, 0.13);
  padding-top: 12px;
}

.ethos-list strong {
  color: var(--garlic);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.ethos-list span {
  color: #d2cabd;
  line-height: 1.5;
}

.page-shell,
.recipe-detail-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 142px 0 64px;
}

body.has-admin-dock .page-shell,
body.has-admin-dock .recipe-detail-page,
body.has-admin-dock .reviews-shell,
body.has-admin-dock .review-detail-page {
  padding-bottom: 112px;
}

body.has-header-account .page-shell,
body.has-header-account .recipe-detail-page {
  padding-top: 158px;
}

@media (max-width: 900px) {
  .page-shell,
  .recipe-detail-page {
    width: min(100% - 22px, 760px);
    padding-top: 106px;
  }

  body.has-header-account .page-shell,
  body.has-header-account .recipe-detail-page {
    padding-top: 126px;
  }
}

body.has-admin-dock.home-page .home-hero {
  padding-bottom: 0;
}

body.has-admin-dock.management-page .management-shell {
  padding-bottom: 112px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.page-intro h1 {
  font-size: clamp(3.6rem, 11vw, 8rem);
}

.page-intro-copy {
  display: grid;
  gap: 14px;
  justify-self: end;
}

.page-intro-copy .eyebrow {
  margin: 0;
  text-align: right;
}

.page-intro-copy p:not(.eyebrow) {
  margin: 0 0 10px;
  max-width: 520px;
  text-align: right;
}

.error-shell {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  place-items: center;
  padding: clamp(28px, 6vw, 72px) 18px;
  isolation: isolate;
}

.error-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 44%, rgba(242, 106, 33, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(111, 123, 60, 0.11), transparent 24rem),
    linear-gradient(115deg, rgba(7, 7, 6, 0.98), rgba(22, 12, 8, 0.92) 52%, rgba(7, 7, 6, 0.98)),
    var(--black);
  pointer-events: none;
}

.error-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: min(940px, calc(100% - 24px));
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(242, 106, 33, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(30, 24, 19, 0.92), rgba(9, 8, 7, 0.94));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 244, 220, 0.06);
}

.error-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -32% 44%;
  height: 52%;
  background: radial-gradient(circle, rgba(242, 106, 33, 0.16), transparent 64%);
  pointer-events: none;
}

.error-code {
  position: relative;
  z-index: 1;
  color: rgba(255, 244, 220, 0.09);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.78;
  text-shadow: 0 0 42px rgba(242, 106, 33, 0.16);
}

.error-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.error-copy h1 {
  max-width: 560px;
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  line-height: 0.84;
}

.error-copy p:not(.eyebrow) {
  max-width: 580px;
  color: #d5ccbc;
  font-size: 1.05rem;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.recipe-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(170px, 220px));
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.78);
}

.recipe-tools label,
.page-size-control,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recipe-tools input,
.recipe-tools select,
.page-size-control select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.8);
  color: var(--cream);
  padding: 11px 12px;
  outline: none;
}

.recipe-tools select,
.page-size-control select,
.contact-form select {
  appearance: none;
  color-scheme: dark;
  background-color: rgba(7, 7, 6, 0.8);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--flame) 50%),
    linear-gradient(135deg, var(--flame) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

.recipe-tools select option,
.page-size-control select option,
.contact-form select option {
  background: #11100e;
  color: var(--cream);
}

.recipe-tools select option:checked,
.page-size-control select option:checked,
.contact-form select option:checked {
  background: linear-gradient(90deg, rgba(242, 106, 33, 0.35), rgba(17, 16, 14, 0.95));
  color: var(--garlic);
  font-weight: 800;
}

.native-select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.custom-select {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 1501;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), rgba(255, 244, 220, 0.01)),
    rgba(7, 7, 6, 0.86);
  color: var(--cream);
  cursor: pointer;
  padding: 11px 14px;
  text-align: left;
  font-weight: 900;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.page-size-control .custom-select-trigger {
  min-height: 42px;
  border-radius: 999px;
  padding: 9px 14px;
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
  border-color: rgba(242, 106, 33, 0.78);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.13);
}

.custom-select-icon {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--flame);
  border-bottom: 2px solid var(--flame);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-icon {
  transform: translateY(2px) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: min(320px, calc(100svh - 24px));
  border: 1px solid rgba(242, 106, 33, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(242, 106, 33, 0.12), rgba(17, 16, 14, 0.98) 38%),
    #11100e;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  transition: opacity 160ms ease, transform 160ms ease;
}

.custom-select.opens-up .custom-select-menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom;
}

.custom-select.is-open .custom-select-menu {
  z-index: 1500;
  max-height: var(--custom-select-max-height, min(320px, calc(100svh - 24px)));
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-menu.is-portaled {
  position: fixed;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 3200;
  max-height: var(--custom-select-max-height, min(320px, calc(100svh - 24px)));
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  width: 100%;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  padding: 9px 10px;
  text-align: left;
  font-weight: 800;
}

.custom-select-option:hover,
.custom-select-option[aria-selected="true"] {
  border-color: rgba(242, 106, 33, 0.34);
  background: rgba(242, 106, 33, 0.14);
  color: var(--cream);
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.number-stepper {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  grid-template-columns: 34px minmax(42px, 1fr) 34px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), rgba(255, 244, 220, 0.01)),
    rgba(7, 7, 6, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.number-stepper:focus-within {
  border-color: rgba(242, 106, 33, 0.75);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.16);
}

.number-stepper-input[type="number"] {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--cream);
  padding: 0 8px !important;
  text-align: center;
  outline: 0 !important;
}

.number-stepper-button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: rgba(255, 244, 220, 0.045);
  color: var(--garlic);
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.number-stepper-button:first-child {
  border-right: 1px solid rgba(255, 244, 220, 0.1);
}

.number-stepper-button:last-child {
  border-left: 1px solid rgba(255, 244, 220, 0.1);
}

.number-stepper-button::before,
.number-stepper-button--increase::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.number-stepper-button--increase::after {
  transform: rotate(90deg);
}

.number-stepper-button:hover,
.number-stepper-button:focus-visible {
  background: rgba(242, 106, 33, 0.2);
  color: #fff4dc;
  outline: 0;
}

.number-stepper-button:disabled,
.number-stepper.is-disabled .number-stepper-button {
  cursor: not-allowed;
  opacity: 0.38;
}

.recipe-tools input:focus,
.recipe-tools select:focus,
.page-size-control select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 106, 33, 0.75);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.18);
}

.recipe-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}

.recipe-layout--right {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.recipe-layout--right .recipe-sidebar-column {
  order: 2;
}

.recipe-layout--right > :not(.recipe-sidebar-column) {
  order: 1;
}

.recipe-layout--disabled {
  grid-template-columns: 1fr;
}

.recipe-layout--disabled .recipe-sidebar-column {
  display: none;
}

.recipe-sidebar-column {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
}

.recipe-sidebar {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.78);
}

.recipe-sidebar h2,
.ingredients-panel h2,
.steps-panel h2 {
  margin: 0 0 16px;
  color: var(--garlic);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-sidebar h2 {
  position: relative;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 244, 220, 0.11);
}

.recipe-sidebar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, var(--flame), transparent);
}

.collection {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  margin-bottom: 7px;
  padding: 9px 12px;
  font-weight: 800;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.collection:hover,
.collection.is-active {
  border-color: rgba(242, 106, 33, 0.4);
  background: rgba(242, 106, 33, 0.1);
  color: var(--cream);
}

.collection:hover {
  transform: translateX(3px);
}

.dynamic-collections {
  display: grid;
  gap: 6px;
}

.quote-block {
  margin-top: 12px;
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(111, 123, 60, 0.06)),
    rgba(7, 7, 6, 0.36);
  padding: 14px;
}

.quote-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--garlic);
}

.quote-block p {
  margin: 0;
}

.owner-panel {
  display: grid;
  gap: 10px;
}

.owner-panel.is-authenticated {
  border: 1px solid rgba(242, 106, 33, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.035) 44%, rgba(7, 7, 6, 0.72)),
    rgba(17, 16, 14, 0.72);
  padding: 14px;
}

.owner-panel p {
  margin: 0;
  color: var(--garlic);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.owner-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.owner-panel.is-authenticated .owner-actions {
  grid-template-columns: 42px minmax(0, 1fr);
}

.owner-panel.is-authenticated.is-admin .owner-actions {
  grid-template-columns: 42px 42px minmax(0, 1fr);
}

.recipe-count {
  min-height: 28px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recipe-layout--disabled .recipe-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recipe-grid.is-refreshing .recipe-card {
  animation: recipePageIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.recipe-grid.is-refreshing .recipe-card:nth-child(2n) {
  animation-delay: 45ms;
}

.recipe-grid.is-refreshing .recipe-card:nth-child(3n) {
  animation-delay: 90ms;
}

@keyframes recipePageIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.recipe-open {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.78);
  transition: border-color 180ms ease;
}

.recipe-card:hover .recipe-open,
.recipe-card:focus-within .recipe-open {
  border-color: rgba(242, 106, 33, 0.55);
}

.admin-entry {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 106, 33, 0.1), rgba(17, 16, 14, 0.86)),
    rgba(7, 7, 6, 0.76);
  color: var(--garlic);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  padding: 10px 12px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.admin-logout {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 244, 220, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.05);
  color: var(--cream);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  padding: 10px 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.settings-button,
.management-button,
.profile-button {
  display: grid;
  width: 100%;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.36);
  border-radius: 8px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--garlic);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.settings-button {
  border-color: rgba(111, 123, 60, 0.55);
  background: rgba(111, 123, 60, 0.14);
  color: #dfe8c5;
}

.management-button {
  border-color: rgba(242, 215, 160, 0.34);
  background: rgba(242, 215, 160, 0.08);
  color: var(--garlic);
  text-decoration: none;
}

.admin-entry:hover,
.admin-entry.is-authenticated {
  border-color: rgba(242, 106, 33, 0.72);
  background:
    linear-gradient(180deg, rgba(242, 106, 33, 0.2), rgba(17, 16, 14, 0.88)),
    rgba(7, 7, 6, 0.78);
}

.admin-logout:hover,
.settings-button:hover,
.management-button:hover,
.profile-button:hover {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: var(--cream);
  transform: translateY(-2px);
}

.settings-button:hover {
  border-color: rgba(170, 182, 138, 0.72);
  background: rgba(111, 123, 60, 0.22);
}

.management-button svg,
.profile-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.admin-dock {
  position: fixed;
  right: auto;
  left: 50%;
  bottom: clamp(16px, 3vw, 30px);
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(572px, calc(100vw - 32px));
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.04) 45%, rgba(7, 7, 6, 0.88)),
    rgba(16, 13, 10, 0.92);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 244, 220, 0.08);
  padding: 12px;
  backdrop-filter: blur(16px) saturate(1.1);
  transform: translateX(-50%);
  animation: adminDockIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.admin-dock-copy {
  min-width: 0;
}

.admin-dock-copy strong {
  display: block;
  overflow: hidden;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-dock-copy span {
  display: block;
  margin-top: 3px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-dock-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-dock-actions .management-button,
.admin-dock-actions .settings-button,
.admin-dock-actions .profile-button,
.admin-dock-actions .store-orders-dock-button {
  width: 42px;
  min-width: 42px;
}

.admin-dock-actions .admin-logout {
  min-width: 86px;
  text-align: center;
}

@keyframes adminDockIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.management-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 22% 12%, rgba(242, 106, 33, 0.24), transparent 34rem),
    radial-gradient(circle at 80% 74%, rgba(111, 123, 60, 0.16), transparent 30rem),
    linear-gradient(135deg, #090806, #070706 55%, #120b07);
}

.management-page::before {
  opacity: 0.72;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.management-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
}

body.has-admin-dock.management-page .management-shell {
  padding-bottom: 112px;
}

.management-login-card,
.management-console {
  width: min(960px, 100%);
}

.management-login-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.045) 45%, rgba(7, 7, 6, 0.9)),
    rgba(15, 13, 10, 0.92);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 244, 220, 0.08);
}

.management-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 176px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 25% 18%, rgba(242, 106, 33, 0.26), transparent 34%),
    linear-gradient(150deg, rgba(31, 18, 10, 0.96), rgba(7, 7, 6, 0.78)),
    url("../hero-grit-garlic.png") center / cover;
  position: relative;
  text-align: center;
}

.management-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 7, 6, 0.34), rgba(7, 7, 6, 0.88));
}

.management-brand > * {
  position: relative;
}

.management-brand strong {
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.management-brand strong span {
  color: var(--flame);
}

.management-brand small {
  margin-top: 12px;
  color: #d4c8b7;
  font-weight: 800;
  line-height: 1.5;
}

.management-brand.compact {
  min-height: 0;
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: 16px;
  padding: 18px;
}

.management-brand.compact strong {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.management-sidebar .management-brand.compact strong {
  font-size: 1.45rem;
  line-height: 1;
}

.management-sidebar .management-brand.compact {
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 12px;
  align-items: center;
  justify-items: start;
  min-height: 72px;
  overflow: hidden;
  border-color: rgba(242, 106, 33, 0.26);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.035)),
    rgba(10, 9, 8, 0.86);
  padding: 13px;
  text-align: left;
}

.management-sidebar .management-brand.compact::before {
  content: "G&G";
  position: static;
  inset: auto;
  display: grid;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(242, 215, 160, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 244, 220, 0.16), transparent 36%),
    rgba(242, 106, 33, 0.14);
  color: var(--garlic);
  font-family: Anton, Impact, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.management-sidebar .management-brand.compact strong,
.management-sidebar .management-brand.compact small {
  grid-column: 2;
  min-width: 0;
}

.management-sidebar .management-brand.compact strong {
  overflow: hidden;
  max-width: 100%;
  color: var(--cream);
  font-size: 1.02rem;
  line-height: 1.02;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-sidebar .management-brand.compact small {
  margin-top: 0;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.management-login-form {
  align-content: center;
  margin: 0;
  padding: clamp(24px, 5vw, 46px);
}

.management-login-heading h1,
.management-console h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.92;
}

.management-console {
  display: grid;
  gap: 18px;
}

.management-console-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.management-console-header > div:last-child,
.management-dashboard,
.management-denied {
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.84)),
    rgba(17, 16, 14, 0.88);
  padding: clamp(20px, 4vw, 32px);
}

.management-console-header p:not(.eyebrow),
.management-denied p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #d7ccbb;
  line-height: 1.65;
}

.management-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.management-dashboard a,
.management-dashboard button {
  display: grid;
  gap: 7px;
  min-height: 160px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 106, 33, 0.15), transparent 42%),
    rgba(7, 7, 6, 0.46);
  color: var(--cream);
  cursor: pointer;
  padding: 20px;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.management-dashboard a:hover,
.management-dashboard button:hover {
  border-color: rgba(242, 106, 33, 0.46);
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 106, 33, 0.22), transparent 42%),
    rgba(7, 7, 6, 0.58);
  transform: translateY(-2px);
}

.management-dashboard span {
  color: var(--flame);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.management-dashboard strong,
.management-denied strong {
  color: var(--cream);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.management-dashboard small {
  color: var(--ash);
  font-size: 0.94rem;
  line-height: 1.5;
}

.management-console {
  grid-template-columns: minmax(230px, 0.26fr) minmax(0, 1fr);
  width: min(1280px, 100%);
  align-items: stretch;
}

.management-sidebar,
.management-workspace,
.management-card,
.stat-card {
  border: 1px solid rgba(255, 244, 220, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.84)),
    rgba(17, 16, 14, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.055);
}

.management-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  align-self: start;
  gap: 18px;
  border-radius: 18px;
  padding: 14px;
}

.management-user-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.13), rgba(255, 244, 220, 0.04)),
    rgba(7, 7, 6, 0.48);
  padding: 13px 14px;
}

.management-user-card span {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.management-user-card strong {
  overflow: hidden;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-nav {
  display: grid;
  gap: 8px;
}

.management-nav a,
.management-nav button,
.management-logout {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #d8cebd;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 14px;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.management-nav a,
.management-nav button {
  list-style: none;
}

.management-nav a::before,
.management-nav button::before {
  content: none !important;
  display: none !important;
}

.management-nav a:hover,
.management-nav button:hover,
.management-nav a.is-active,
.management-nav button.is-active {
  border-color: rgba(242, 106, 33, 0.38);
  background: rgba(242, 106, 33, 0.14);
  color: var(--cream);
  transform: translateX(3px);
}

.management-logout {
  justify-content: center;
}

.management-session-actions {
  display: grid;
  grid-template-columns: minmax(58px, 0.34fr) minmax(0, 1fr);
  gap: 8px;
}

.management-profile-button {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.045)),
    rgba(7, 7, 6, 0.55);
  color: var(--garlic);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.management-profile-button:hover {
  border-color: rgba(242, 106, 33, 0.62);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.24), rgba(255, 244, 220, 0.065)),
    rgba(7, 7, 6, 0.66);
  box-shadow: 0 12px 28px rgba(242, 106, 33, 0.12);
  transform: translateY(-1px);
}

.management-profile-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.management-workspace {
  display: grid;
  gap: 18px;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.management-workspace-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 244, 220, 0.12);
  padding-bottom: 18px;
}

.management-workspace-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: #d7ccbb;
  line-height: 1.65;
}

.management-pane {
  display: grid;
  gap: 18px;
  animation: settingsPaneIn 220ms ease both;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  display: grid;
  gap: 8px;
  border-radius: 16px;
  padding: 18px;
}

.stat-card span {
  color: var(--flame);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.stat-card small {
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
}

.management-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.management-card {
  border-radius: 16px;
  min-width: 0;
  padding: 18px;
}

.management-card h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 1rem;
}

.role-meter {
  display: grid;
  gap: 10px;
}

.role-meter span,
.analytics-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 244, 220, 0.1);
  color: #d8cebd;
  font-weight: 900;
  padding-top: 10px;
  min-width: 0;
}

.role-meter strong,
.analytics-row strong {
  color: var(--cream);
  flex: 0 0 auto;
}

.quick-actions {
  display: grid;
  gap: 10px;
}

.quick-action-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 10px;
}

.quick-actions a,
.quick-actions button {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 92px;
  gap: 6px;
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 106, 33, 0.17), transparent 42%),
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.58)),
    rgba(242, 106, 33, 0.06);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  overflow: hidden;
  padding: 16px 16px 16px 52px;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quick-actions a::before,
.quick-actions button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(242, 215, 160, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--flame) 0 30%, transparent 32%),
    rgba(242, 106, 33, 0.12);
  box-shadow: 0 0 0 6px rgba(242, 106, 33, 0.06);
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-actions small {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.quick-actions a:hover,
.quick-actions button:hover {
  border-color: rgba(242, 106, 33, 0.5);
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 106, 33, 0.25), transparent 42%),
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(7, 7, 6, 0.64)),
    rgba(242, 106, 33, 0.1);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 244, 220, 0.08);
  transform: translateY(-1px);
}

.quick-actions a:hover::before,
.quick-actions button:hover::before {
  box-shadow: 0 0 0 8px rgba(242, 106, 33, 0.1);
  transform: translateY(-50%) scale(1.08);
}

.analytics-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.analytics-row {
  min-width: 0;
  overflow: hidden;
}

.analytics-row:not(.recent) span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 48px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analytics-row:not(.recent) span small {
  display: block;
  margin-top: 3px;
  max-width: 100%;
  overflow: hidden;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analytics-row:not(.recent) strong {
  min-width: 24px;
  text-align: right;
}

.analytics-row.country-row span,
.analytics-row.ip-row span,
.analytics-row.bot-row span,
.analytics-row.actor-row span {
  line-height: 1.25;
}

.traffic-verdict-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 244, 220, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.45)),
    rgba(255, 244, 220, 0.025);
  padding: 12px;
}

.traffic-verdict-row span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.traffic-verdict-row strong {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 900;
}

.traffic-verdict-row small {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.traffic-verdict-row b {
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.08);
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1;
  padding: 8px 10px;
}

.traffic-verdict-row.is-known_bot,
.analytics-row.threat-row.is-known_bot {
  border-color: rgba(255, 113, 79, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 113, 79, 0.14), transparent 46%),
    rgba(26, 9, 6, 0.48);
}

.traffic-verdict-row.is-likely_bot,
.analytics-row.threat-row.is-likely_bot {
  border-color: rgba(242, 106, 33, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 106, 33, 0.14), transparent 46%),
    rgba(31, 16, 6, 0.48);
}

.traffic-verdict-row.is-likely_human,
.traffic-verdict-row.is-logged_in_user {
  border-color: rgba(191, 213, 126, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 213, 126, 0.1), transparent 46%),
    rgba(13, 18, 8, 0.44);
}

.traffic-verdict-row.is-unknown {
  border-color: rgba(255, 244, 220, 0.12);
}

.security-overview-card {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 106, 33, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.54));
}

.security-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.security-overview-head h2 {
  margin-bottom: 6px;
}

.security-verdict {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.06);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  padding: 10px 12px;
  text-transform: uppercase;
}

.security-verdict[data-tone="clear"] {
  border-color: rgba(191, 213, 126, 0.34);
  background: rgba(191, 213, 126, 0.1);
  color: #dce7ad;
}

.security-verdict[data-tone="watch"] {
  border-color: rgba(242, 106, 33, 0.42);
  background: rgba(242, 106, 33, 0.13);
  color: var(--garlic);
}

.security-verdict[data-tone="danger"] {
  border-color: rgba(255, 113, 79, 0.48);
  background: rgba(255, 113, 79, 0.14);
  color: #ffc3ac;
}

.security-verdict[data-tone="quiet"] {
  color: var(--steel);
}

.security-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.security-metric-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.5)),
    rgba(7, 7, 6, 0.34);
  min-width: 0;
  padding: 14px;
}

.security-metric-card small,
.security-metric-card span {
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.security-metric-card strong {
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 0.95;
}

.traffic-heatbar {
  display: grid;
  gap: 10px;
}

.traffic-heatbar-track {
  display: flex;
  overflow: hidden;
  min-height: 14px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.66);
}

.traffic-heatbar-track span {
  min-width: 3px;
}

.traffic-heatbar-track .is-known_bot,
.traffic-heatbar-legend .is-known_bot {
  background: #ff714f;
}

.traffic-heatbar-track .is-likely_bot,
.traffic-heatbar-legend .is-likely_bot {
  background: var(--flame);
}

.traffic-heatbar-track .is-unknown,
.traffic-heatbar-legend .is-unknown {
  background: #817467;
}

.traffic-heatbar-track .is-logged_in_user,
.traffic-heatbar-legend .is-logged_in_user {
  background: #f2d7a0;
}

.traffic-heatbar-track .is-likely_human,
.traffic-heatbar-legend .is-likely_human {
  background: #bfd57e;
}

.traffic-heatbar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.traffic-heatbar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.traffic-heatbar-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.traffic-heatbar-legend b {
  color: var(--cream);
}

.security-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.04), rgba(7, 7, 6, 0.48)),
    rgba(7, 7, 6, 0.34);
  min-width: 0;
  padding: 12px;
}

.security-row.is-danger {
  border-color: rgba(255, 113, 79, 0.3);
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 113, 79, 0.13), transparent 42%),
    rgba(24, 8, 6, 0.5);
}

.security-row.is-watch {
  border-color: rgba(242, 106, 33, 0.28);
  background:
    radial-gradient(circle at 5% 0%, rgba(242, 106, 33, 0.13), transparent 42%),
    rgba(26, 13, 6, 0.5);
}

.security-row.is-clear {
  border-color: rgba(191, 213, 126, 0.16);
}

.security-row-main,
.security-score {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.security-row-main strong {
  overflow: hidden;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.security-row-main small,
.security-score small {
  overflow: hidden;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.security-row-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.security-row-meta b,
.risk-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.045);
  color: #d8cebd;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  max-width: 180px;
  overflow: hidden;
  padding: 6px 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.risk-pill.is-danger {
  border-color: rgba(255, 113, 79, 0.36);
  background: rgba(255, 113, 79, 0.12);
  color: #ffc3ac;
}

.risk-pill.is-watch {
  border-color: rgba(242, 106, 33, 0.42);
  background: rgba(242, 106, 33, 0.14);
  color: var(--garlic);
}

.risk-pill.is-clear {
  border-color: rgba(191, 213, 126, 0.24);
  background: rgba(191, 213, 126, 0.08);
  color: #dce7ad;
}

.security-score {
  min-width: 72px;
  text-align: right;
}

.security-score strong {
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1;
}

.live-traffic-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.46)),
    rgba(7, 7, 6, 0.34);
  padding: 14px;
}

.live-traffic-row.is-danger {
  border-color: rgba(255, 113, 79, 0.32);
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 113, 79, 0.12), transparent 42%),
    rgba(24, 8, 6, 0.5);
}

.live-traffic-row.is-watch {
  border-color: rgba(242, 106, 33, 0.28);
}

.live-traffic-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.36);
  border-radius: 50%;
  background: rgba(242, 106, 33, 0.12);
  color: var(--garlic);
  font-size: 0.78rem;
  font-weight: 900;
}

.live-traffic-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.live-traffic-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.live-traffic-title strong {
  color: var(--flame);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-traffic-title span {
  overflow: hidden;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-traffic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.live-traffic-pills b,
.live-traffic-pills .bot-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.045);
  color: #d8cebd;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  max-width: 220px;
  overflow: hidden;
  padding: 6px 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-traffic-pills .bot-chip {
  border-color: rgba(255, 113, 79, 0.34);
  background: rgba(255, 113, 79, 0.11);
  color: #ffc3ac;
}

.live-traffic-side {
  display: grid;
  gap: 6px;
  min-width: 130px;
  text-align: right;
}

.live-traffic-side strong {
  color: var(--garlic);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-traffic-side small {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
}

.management-card-heading,
.analytics-tools,
.activity-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.management-card-heading {
  justify-content: space-between;
}

.analytics-tools {
  justify-content: flex-end;
}

.activity-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
  border: 1px solid rgba(255, 244, 220, 0.09);
  border-radius: 14px;
  background: rgba(7, 7, 6, 0.34);
  padding: 12px;
}

.activity-controls label {
  display: grid;
  min-width: min(100%, 220px);
  gap: 6px;
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-controls select {
  min-height: 40px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.62);
  color: var(--cream);
  padding: 8px 36px 8px 12px;
}

.activity-pagination span {
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.system-status-card {
  display: grid;
  gap: 12px;
}

.system-status-card [data-system-status-summary] {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 900;
}

.system-status-card [data-system-status-summary][data-state="success"] {
  color: #c8d59a;
}

.system-status-card [data-system-status-summary][data-state="warning"] {
  color: var(--garlic);
}

.system-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.system-status-grid span {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 244, 220, 0.09);
  border-radius: 12px;
  background: rgba(7, 7, 6, 0.42);
  padding: 12px;
}

.system-status-grid small {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-status-grid strong {
  color: var(--cream);
  font-size: 0.95rem;
}

.management-recipes-panel {
  display: grid;
  gap: 14px;
}

.management-update-panel {
  display: grid;
  gap: 14px;
}

.management-update-panel .version-panel {
  margin-top: 0;
}

.management-update-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.seo-panel,
.security-panel {
  display: grid;
  gap: 18px;
}

.seo-settings-form,
.security-settings-form {
  display: grid;
  gap: 14px;
}

.seo-action-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.control-section {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.035), rgba(7, 7, 6, 0.44)),
    rgba(17, 16, 14, 0.52);
  padding: 16px;
}

.control-section,
.settings-card,
.ad-house-settings {
  overflow: visible;
}

.control-section-head {
  display: grid;
  gap: 5px;
  max-width: 760px;
}

.control-section-head h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 950;
}

.control-section-head p {
  margin: 0;
  color: #c8bdad;
  line-height: 1.55;
}

.control-kicker {
  color: var(--flame);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.control-grid {
  display: grid;
  gap: 12px;
}

.control-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.control-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.control-field > span {
  display: grid;
  gap: 3px;
}

.control-field small {
  color: rgba(216, 206, 189, 0.74);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1.35;
  text-transform: none;
}

.control-field input,
.control-field select,
.control-field textarea,
.seo-settings-form input,
.seo-settings-form select,
.seo-settings-form textarea,
.security-settings-form input,
.security-settings-form select,
.security-settings-form textarea,
.blocking-form input,
.blocking-form select,
.blocking-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), transparent),
    rgba(2, 2, 2, 0.66);
  color: var(--cream);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  outline: none;
  padding: 11px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.control-field textarea,
.seo-settings-form textarea,
.security-settings-form textarea,
.blocking-form textarea {
  min-height: 92px;
  resize: vertical;
}

.control-field select,
.seo-settings-form select,
.security-settings-form select,
.blocking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--flame) 50%),
    linear-gradient(135deg, var(--flame) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), transparent);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%,
    0 0;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  padding-right: 38px;
}

.control-field input:focus,
.control-field select:focus,
.control-field textarea:focus,
.seo-settings-form input:focus,
.seo-settings-form select:focus,
.seo-settings-form textarea:focus,
.security-settings-form input:focus,
.security-settings-form select:focus,
.security-settings-form textarea:focus,
.blocking-form input:focus,
.blocking-form select:focus,
.blocking-form textarea:focus {
  border-color: rgba(242, 106, 33, 0.66);
  background-color: rgba(7, 7, 6, 0.84);
  box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.12);
}

.control-field input:hover,
.control-field select:hover,
.control-field textarea:hover,
.seo-settings-form input:hover,
.seo-settings-form select:hover,
.seo-settings-form textarea:hover,
.security-settings-form input:hover,
.security-settings-form select:hover,
.security-settings-form textarea:hover,
.blocking-form input:hover,
.blocking-form select:hover,
.blocking-form textarea:hover {
  border-color: rgba(255, 244, 220, 0.22);
  background-color: rgba(10, 10, 8, 0.78);
}

.control-field input::placeholder,
.control-field textarea::placeholder,
.seo-settings-form input::placeholder,
.seo-settings-form textarea::placeholder,
.security-settings-form input::placeholder,
.security-settings-form textarea::placeholder,
.blocking-form input::placeholder,
.blocking-form textarea::placeholder {
  color: rgba(216, 206, 189, 0.5);
}

.compact-field {
  max-width: 420px;
}

.seo-custom-pages {
  display: grid;
  gap: 10px;
}

.seo-custom-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(160px, 1fr) minmax(190px, 1.15fr) minmax(130px, 0.72fr) minmax(130px, auto) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 14px;
  background: rgba(7, 7, 6, 0.38);
  padding: 12px;
}

.seo-custom-row .control-field.wide textarea {
  min-height: 44px;
}

.seo-custom-empty {
  border: 1px dashed rgba(255, 244, 220, 0.14);
  border-radius: 14px;
  margin: 0;
  padding: 14px;
}

.compact-toggle {
  min-height: 44px;
  align-self: end;
  padding: 10px 12px;
}

.seo-grid,
.blocking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blocking-control-form {
  grid-template-columns: 1fr;
}

.blocking-grid {
  grid-template-columns: minmax(150px, 0.8fr) minmax(220px, 1.25fr) minmax(150px, 0.75fr) minmax(180px, 1fr) auto;
  align-items: end;
}

.blocking-grid .button {
  min-height: 46px;
  white-space: nowrap;
}

.seo-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-grid label,
.seo-settings-form > label,
.security-settings-form > label,
.blocking-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seo-note-card {
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 106, 33, 0.14), transparent 42%),
    rgba(242, 106, 33, 0.045);
  color: #d8cebd;
  padding: 14px;
}

.seo-note-card strong {
  color: var(--garlic);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.seo-note-card p {
  margin: 7px 0 0;
  line-height: 1.58;
}

.security-hub-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.security-hub-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 106, 33, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 244, 220, 0.035), rgba(7, 7, 6, 0.42));
  color: inherit;
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.security-panel .management-card-heading {
  align-items: start;
}

.security-hub-card::after {
  content: "Open";
  position: absolute;
  right: 16px;
  top: 16px;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 999px;
  color: var(--garlic);
  font-size: 0.72rem;
  font-weight: 950;
  padding: 5px 10px;
}

.security-hub-card span {
  color: var(--flame);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.security-hub-card strong {
  max-width: 78%;
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.25;
}

.security-hub-card:hover {
  border-color: rgba(242, 106, 33, 0.4);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 106, 33, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(242, 106, 33, 0.09), rgba(7, 7, 6, 0.42));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(242, 106, 33, 0.24);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.055);
  color: var(--garlic);
  font-size: 0.82rem;
  font-weight: 950;
  padding: 0 14px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.subpage-back span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.14);
  color: var(--cream);
}

.subpage-back:hover {
  border-color: rgba(242, 106, 33, 0.54);
  background: rgba(242, 106, 33, 0.12);
  transform: translateX(-2px);
}

.security-subnav,
.security-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.security-tabs {
  width: fit-content;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.42);
  padding: 4px;
}

.security-tabs button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  padding: 0 18px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.security-tabs button:hover,
.security-tabs button.is-active {
  border-color: rgba(242, 106, 33, 0.36);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.22), rgba(255, 244, 220, 0.04)),
    rgba(242, 106, 33, 0.08);
  color: var(--cream);
}

.security-tabs button:hover {
  transform: translateY(-1px);
}

.security-table {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.security-list-header,
.security-attempt-row,
.security-block-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 0.95fr) minmax(150px, 1fr) minmax(118px, auto);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.security-list-header {
  border: 1px solid rgba(255, 244, 220, 0.08);
  border-radius: 12px;
  background: rgba(255, 244, 220, 0.045);
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.security-attempt-row,
.security-block-row {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.038), rgba(7, 7, 6, 0.5)),
    rgba(7, 7, 6, 0.36);
  padding: 13px 12px;
}

.security-attempt-row::before,
.security-block-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255, 244, 220, 0.12);
}

.security-attempt-row.is-success::before {
  background: #aab68a;
}

.security-attempt-row.is-failed::before,
.security-block-row::before {
  background: var(--flame);
}

.security-attempt-row span,
.security-block-row span,
.security-block-check span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.security-attempt-ip-cell {
  align-items: start;
  justify-content: center;
}

.security-attempt-ip-line {
  display: flex !important;
  align-items: center;
  gap: 18px !important;
  min-width: 0;
}

.security-attempt-ip-line strong {
  min-width: 0;
}

.security-attempt-block-button {
  align-self: center;
  min-height: 28px;
  flex: 0 0 auto;
  border-color: rgba(207, 116, 103, 0.32);
  color: #ffd9cf;
  margin-left: 4px;
  padding: 4px 10px;
}

.security-attempt-block-button:hover,
.security-attempt-block-button:focus-visible {
  border-color: rgba(207, 116, 103, 0.58);
  background: rgba(207, 116, 103, 0.14);
}

.security-attempt-block-button.is-unblock {
  border-color: rgba(136, 201, 154, 0.34);
  color: #c8f1d0;
}

.security-attempt-block-button.is-unblock:hover,
.security-attempt-block-button.is-unblock:focus-visible {
  border-color: rgba(136, 201, 154, 0.66);
  background: rgba(136, 201, 154, 0.14);
}

.security-attempt-row strong,
.security-block-row strong,
.security-block-check strong {
  overflow: hidden;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.security-attempt-row small,
.security-block-row small,
.security-block-check small,
.security-attempt-row time {
  overflow: hidden;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.security-attempt-row time {
  color: var(--garlic);
  text-align: right;
}

.security-block-row {
  grid-template-columns: minmax(220px, 1.25fr) minmax(150px, 1fr) minmax(130px, 0.72fr) auto;
}

.security-block-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
}

.security-block-check input[type="checkbox"] {
  margin: 0;
}

.security-block-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.blocking-form {
  grid-template-columns: minmax(140px, 0.7fr) minmax(220px, 1.35fr) minmax(150px, 0.8fr) minmax(180px, 1fr) auto;
  align-items: end;
  border: 1px solid rgba(255, 244, 220, 0.09);
  border-radius: 15px;
  background: rgba(7, 7, 6, 0.34);
  padding: 12px;
}

.blocking-form label {
  min-width: 0;
}

.blocking-form .button {
  min-height: 44px;
}

.contact-modal.security-attempt-block-modal {
  max-width: 620px;
  max-height: none;
  overflow: visible;
}

.security-attempt-block-form {
  display: grid;
  gap: 14px;
  overflow: visible;
}

.security-attempt-block-modal :is(.control-grid, .control-field, .custom-select) {
  overflow: visible;
}

.security-attempt-block-modal .custom-select.is-open {
  z-index: 2601;
}

.security-attempt-block-modal .custom-select-menu {
  z-index: 2600;
}

.security-attempt-block-target {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(207, 116, 103, 0.12), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.42);
  padding: 13px 14px;
}

.security-attempt-block-target span {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.security-attempt-block-target strong {
  color: var(--cream);
  font-size: 1.04rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

@media (max-height: 760px) {
  .contact-modal.security-attempt-block-modal {
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
  }
}

.management-recipe-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.42fr) minmax(170px, 0.48fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 14px;
  background: rgba(7, 7, 6, 0.34);
  padding: 12px;
}

.management-recipe-tools label {
  display: grid;
  gap: 6px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.management-recipe-tools input,
.management-recipe-tools select {
  min-height: 40px;
  width: 100%;
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.055), rgba(255, 244, 220, 0.02)),
    rgba(8, 8, 7, 0.74);
  color: var(--cream);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.18);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.management-recipe-tools input {
  padding: 0 12px;
}

.management-recipe-tools select {
  cursor: pointer;
  padding: 0 34px 0 12px;
}

.management-recipe-tools input::placeholder {
  color: rgba(216, 206, 189, 0.58);
}

.management-recipe-tools input:hover,
.management-recipe-tools select:hover {
  border-color: rgba(242, 106, 33, 0.34);
  background:
    linear-gradient(180deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.025)),
    rgba(8, 8, 7, 0.82);
}

.management-recipe-tools input:focus,
.management-recipe-tools select:focus {
  border-color: rgba(242, 106, 33, 0.62);
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(242, 106, 33, 0.14),
    inset 0 1px 0 rgba(255, 244, 220, 0.1);
}

.management-recipes-list {
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 14px;
  background: rgba(7, 7, 6, 0.32);
}

.management-recipe-table {
  display: grid;
  min-width: 0;
}

.management-recipe-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) minmax(142px, auto);
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255, 244, 220, 0.08);
  min-width: 0;
  padding: 12px;
}

.management-recipe-row:first-child {
  border-top: 0;
}

.management-recipe-head {
  background: rgba(255, 244, 220, 0.04);
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.management-recipe-row:not(.management-recipe-head):hover {
  background: rgba(242, 106, 33, 0.045);
}

.recipe-select-all,
.recipe-row-check {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--steel);
  font-weight: 900;
}

.recipe-select-all,
.recipe-row-check {
  width: 100%;
  justify-content: center;
  justify-self: center;
  margin: 0;
}

.recipe-select-all input[type="checkbox"],
.recipe-row-check input[type="checkbox"] {
  margin: 0;
}

.recipe-row-check span {
  color: var(--steel);
}

.management-recipe-title {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.management-recipe-title img {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.management-recipe-title span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.management-recipe-title strong {
  color: var(--cream);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-recipe-title small {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-recipe-meta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.management-recipe-meta b {
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.07);
  color: #d8cebd;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  padding: 5px 7px;
  text-transform: uppercase;
}

.management-recipe-row > span {
  color: #d8cebd;
  font-size: 0.86rem;
  font-weight: 900;
}

.management-recipe-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: end;
  gap: 7px;
  min-width: 0;
  max-width: 100%;
}

.management-recipe-actions a,
.management-recipe-actions button {
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.045);
  color: var(--garlic);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  text-align: center;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.management-recipe-actions a:hover,
.management-recipe-actions button:hover {
  border-color: rgba(242, 106, 33, 0.48);
  background: rgba(242, 106, 33, 0.14);
  color: var(--cream);
  transform: translateY(-1px);
}

.management-recipe-actions .danger-text {
  border-color: rgba(255, 124, 92, 0.28);
  color: #ffc3ac;
}

.management-recipe-actions .danger-text:hover {
  background: rgba(255, 88, 54, 0.18);
  border-color: rgba(255, 124, 92, 0.48);
}

.compact-button.danger-subtle {
  border-color: rgba(255, 124, 92, 0.32);
  background: rgba(255, 124, 92, 0.08);
  color: #ffccb8;
}

.compact-button.danger-subtle:hover {
  border-color: rgba(255, 124, 92, 0.58);
  background: rgba(255, 124, 92, 0.14);
}

.analytics-row.recent {
  align-items: flex-start;
  gap: 18px;
}

.analytics-row.recent span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.analytics-row.recent .activity-main {
  flex: 1 1 auto;
}

.analytics-row.recent .activity-main > strong {
  color: var(--cream);
  font-size: 0.9rem;
  text-transform: capitalize;
}

.analytics-row.recent em {
  min-width: 0;
  overflow: hidden;
  color: #d8cebd;
  font-style: normal;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-meta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.activity-meta b {
  border: 1px solid rgba(255, 244, 220, 0.11);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.045);
  color: #d8cebd;
  font-size: 0.68rem;
  line-height: 1;
  padding: 5px 7px;
  text-transform: uppercase;
}

.activity-meta .bot-chip {
  border-color: rgba(255, 124, 92, 0.28);
  background: rgba(255, 124, 92, 0.09);
  color: #ffccb8;
}

.activity-meta .traffic-chip {
  border-color: rgba(255, 244, 220, 0.14);
  background: rgba(255, 244, 220, 0.055);
}

.activity-meta .traffic-chip.is-known_bot,
.activity-meta .traffic-chip.is-likely_bot {
  border-color: rgba(242, 106, 33, 0.34);
  background: rgba(242, 106, 33, 0.12);
  color: var(--garlic);
}

.activity-meta .traffic-chip.is-likely_human,
.activity-meta .traffic-chip.is-logged_in_user {
  border-color: rgba(191, 213, 126, 0.22);
  background: rgba(191, 213, 126, 0.08);
  color: #dce7ad;
}

.traffic-summary-line {
  min-width: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.user-agent-line {
  min-width: 0;
  overflow: hidden;
  color: rgba(169, 161, 150, 0.86);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-time {
  flex: 0 0 auto;
  text-align: right;
}

.analytics-row small {
  color: var(--steel);
  font-weight: 800;
  white-space: nowrap;
}

.management-access-options {
  margin: 12px 0 14px;
}

.admin-add-card {
  width: 100%;
  min-height: 136px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-style: dashed;
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 106, 33, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(242, 106, 33, 0.1), rgba(17, 16, 14, 0.9));
  color: inherit;
  cursor: pointer;
  padding: 22px;
  text-align: left;
}

.admin-plus {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.48);
  border-radius: 50%;
  background: rgba(242, 106, 33, 0.14);
  color: var(--flame);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.admin-recipe-card {
  grid-column: 1 / -1;
}

.recipe-card {
  position: relative;
  min-height: 100%;
  transition: transform 180ms ease;
}

.recipe-card:hover,
.recipe-card:focus-within {
  transform: translateY(-3px);
}

.recipe-feature-button {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 244, 220, 0.46);
  border-radius: 999px;
  background: rgba(4, 4, 3, 0.9);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.recipe-feature-button:hover {
  border-color: rgba(242, 106, 33, 0.92);
  background: rgba(24, 13, 8, 0.96);
  color: var(--flame);
  transform: translateY(-1px);
}

.recipe-feature-button.is-featured {
  border-color: rgba(255, 244, 220, 0.76);
  background:
    radial-gradient(circle at 44% 32%, rgba(255, 244, 220, 0.34), transparent 36%),
    linear-gradient(145deg, #ff9a3d, var(--flame) 58%, var(--ember));
  color: #170805;
  box-shadow:
    0 0 0 2px rgba(7, 7, 6, 0.72),
    0 0 0 4px rgba(242, 106, 33, 0.34),
    0 12px 28px rgba(0, 0, 0, 0.55);
}

.recipe-feature-button.is-featured:hover {
  border-color: var(--cream);
  background:
    radial-gradient(circle at 44% 32%, rgba(255, 244, 220, 0.42), transparent 36%),
    linear-gradient(145deg, #ffb15d, var(--flame));
  color: #120704;
  transform: translateY(-2px) scale(1.04);
}

.recipe-like-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 244, 220, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(242, 106, 33, 0.2), rgba(255, 244, 220, 0.055) 44%, rgba(7, 7, 6, 0.88)),
    rgba(7, 7, 6, 0.9);
  color: var(--garlic);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  padding: 9px 13px 9px 10px;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.recipe-like-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 244, 220, 0.16), transparent 36%, rgba(242, 106, 33, 0.18) 68%, transparent);
  opacity: 0.54;
  transform: translateX(-42%);
  transition: opacity 180ms ease, transform 260ms ease;
}

.recipe-like-button strong {
  border-left: 1px solid rgba(255, 244, 220, 0.16);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 950;
  padding-left: 8px;
  white-space: nowrap;
}

.recipe-like-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 244, 220, 0.28), transparent 34%),
    rgba(242, 106, 33, 0.18);
  color: var(--flame);
  font-size: 0.75rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(242, 106, 33, 0.22);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.recipe-like-button:hover,
.recipe-like-button:focus-visible {
  border-color: rgba(242, 106, 33, 0.68);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.24), rgba(255, 244, 220, 0.07)),
    rgba(16, 11, 8, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: var(--cream);
  transform: translateY(-1px);
}

.recipe-like-button:hover::before,
.recipe-like-button:focus-visible::before {
  opacity: 0.9;
  transform: translateX(26%);
}

.recipe-like-button:hover .recipe-like-icon,
.recipe-like-button:focus-visible .recipe-like-icon {
  transform: scale(1.08);
}

.recipe-like-button.is-liked {
  border-color: rgba(255, 244, 220, 0.52);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 244, 220, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(242, 106, 33, 0.92), rgba(157, 48, 21, 0.9)),
    rgba(242, 106, 33, 0.3);
  color: #170805;
  box-shadow:
    0 0 0 2px rgba(7, 7, 6, 0.66),
    0 12px 28px rgba(0, 0, 0, 0.32);
}

.recipe-like-button.is-liked strong,
.recipe-like-button.is-liked .recipe-like-copy {
  color: #170805;
}

.recipe-like-button.is-liked .recipe-like-icon {
  background: rgba(7, 7, 6, 0.22);
  color: #fff4dc;
}

.recipe-like-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.recipe-like-button.is-saving .recipe-like-icon {
  animation: recipeLikeSpin 760ms linear infinite;
}

.recipe-like-button.is-liked-pop {
  animation: recipeLikePop 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes recipeLikeSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes recipeLikePop {
  0% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-3px) scale(1.06);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.recipe-like-button--card {
  position: absolute;
  top: 190px;
  left: 12px;
  z-index: 3;
  gap: 5px;
  min-height: 32px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(7, 7, 6, 0.84)),
    rgba(7, 7, 6, 0.84);
  border-color: rgba(242, 106, 33, 0.28);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.36);
  color: #ead7b2;
  font-size: 0.68rem;
  opacity: 0.92;
  padding: 6px 9px 6px 7px;
  backdrop-filter: blur(9px);
}

.recipe-like-button--card::before {
  opacity: 0.28;
}

.recipe-like-button--card .recipe-like-copy {
  display: none;
}

.recipe-like-button--card .recipe-like-icon {
  width: 16px;
  height: 16px;
  background: rgba(242, 106, 33, 0.16);
  font-size: 0.58rem;
}

.recipe-like-button--card strong {
  color: #f3e2bf;
  font-size: 0.68rem;
  padding-left: 6px;
}

.recipe-like-button--card:hover,
.recipe-like-button--card:focus-visible {
  border-color: rgba(242, 106, 33, 0.48);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.17), rgba(7, 7, 6, 0.88)),
    rgba(7, 7, 6, 0.88);
  opacity: 1;
}

.recipe-like-button--card.is-liked {
  border-color: rgba(242, 106, 33, 0.42);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.34), rgba(7, 7, 6, 0.82)),
    rgba(34, 16, 8, 0.88);
  color: var(--garlic);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.recipe-like-button--card.is-liked strong {
  color: var(--cream);
}

.recipe-like-button--card.is-liked .recipe-like-icon {
  background: rgba(242, 106, 33, 0.28);
  color: #fff4dc;
}

.recipe-like-button--detail {
  justify-self: end;
  min-height: 44px;
  padding: 11px 16px 11px 11px;
}

.recipe-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.07), rgba(7, 7, 6, 0.88)),
    rgba(7, 7, 6, 0.86);
  color: var(--garlic);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  padding: 11px 15px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.recipe-share-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.recipe-share-button:hover,
.recipe-share-button:focus-visible {
  border-color: rgba(242, 106, 33, 0.5);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(7, 7, 6, 0.9)),
    rgba(13, 10, 8, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  color: var(--cream);
  transform: translateY(-1px);
}

.recipe-share-button.is-copied {
  border-color: rgba(170, 182, 138, 0.52);
  background: rgba(111, 123, 60, 0.18);
  color: #dfe8c5;
}

.recipe-detail-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 244, 220, 0.12);
  padding-top: 16px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 220, 0.035), transparent) top / 100% 1px no-repeat;
}

.recipe-edit-button {
  position: absolute;
  top: 12px;
  right: 58px;
  z-index: 2;
  border: 1px solid rgba(255, 244, 220, 0.42);
  border-radius: 999px;
  background: rgba(23, 14, 8, 0.92);
  color: var(--cream);
  cursor: pointer;
  padding: 8px 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.recipe-delete-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 196, 174, 0.58);
  border-radius: 999px;
  background: rgba(91, 25, 15, 0.94);
  color: #ffd2c2;
  cursor: pointer;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.recipe-edit-button:hover {
  border-color: rgba(255, 244, 220, 0.74);
  background: rgba(242, 106, 33, 0.88);
  color: var(--cream);
  transform: translateY(-2px);
}

.recipe-delete-button:hover {
  border-color: rgba(255, 124, 92, 0.88);
  background: rgba(168, 47, 31, 0.86);
  color: var(--cream);
  transform: translateY(-2px) rotate(4deg);
}

.contact-fallback {
  border: 1px solid rgba(242, 106, 33, 0.24);
  border-radius: var(--radius);
  background: rgba(242, 106, 33, 0.08);
  color: var(--garlic);
  padding: 14px;
  line-height: 1.6;
}

.contact-fallback a {
  color: var(--flame);
  font-weight: 900;
}

.contact-email-line {
  margin: 0;
  border-top: 1px solid rgba(255, 244, 220, 0.12);
  color: var(--steel);
  font-size: 0.92rem;
  padding-top: 10px;
}

.contact-email-line a {
  color: var(--garlic);
  font-weight: 900;
}

.contact-success-panel {
  display: grid;
  gap: 12px;
  place-items: center;
  margin-top: 22px;
  border: 1px solid rgba(170, 182, 138, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 106, 33, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(170, 182, 138, 0.13), rgba(255, 244, 220, 0.04)),
    rgba(13, 12, 10, 0.92);
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
  animation: modalRise 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-success-panel[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(170, 182, 138, 0.38);
  border-radius: 50%;
  background: rgba(170, 182, 138, 0.14);
  box-shadow: 0 0 0 8px rgba(170, 182, 138, 0.06);
}

.success-mark::before {
  content: "";
  width: 16px;
  height: 9px;
  border-left: 3px solid #dfe8c5;
  border-bottom: 3px solid #dfe8c5;
  transform: translateY(-1px) rotate(-45deg);
}

.contact-success-panel h3 {
  margin: 0;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-success-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--ash);
  line-height: 1.65;
}

.contact-success-panel .button {
  justify-self: center;
  margin-top: 8px;
}

.topic-row,
.taxonomy-row,
.home-social-row,
.ethos-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.28);
  padding: 8px;
}

.home-social-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  background:
    radial-gradient(circle at 0 0, rgba(242, 106, 33, 0.12), transparent 34%),
    rgba(7, 7, 6, 0.3);
  padding: 10px;
}

.home-social-fields {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.home-social-card-head,
.home-social-card-body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.home-social-card-head {
  grid-template-columns: 42px minmax(120px, 0.6fr) minmax(220px, 1fr);
  align-items: center;
}

.home-social-card-body {
  grid-template-columns: minmax(200px, 1fr) minmax(105px, 0.34fr) minmax(150px, 0.48fr);
}

.home-social-card-head label,
.home-social-card-body label,
.home-social-icon-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.home-social-card-head label span,
.home-social-card-body label span,
.home-social-icon-field span {
  color: var(--steel);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-social-card-head input,
.home-social-card-body input {
  min-width: 0;
}

.home-social-icon-preview {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 25%, rgba(242, 106, 33, 0.22), transparent 42%),
    rgba(7, 7, 6, 0.52);
  color: var(--flame);
}

.home-social-icon-preview svg,
.home-social-icon-preview img {
  width: 21px;
  height: 21px;
}

.home-social-icon-preview img {
  object-fit: contain;
}

.home-social-icon-preview svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-social-actions {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
}

.ethos-row {
  grid-template-columns: minmax(130px, 0.75fr) minmax(220px, 1fr) auto;
}

.topic-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.topic-move {
  display: grid;
  width: 32px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 7px;
  background: rgba(242, 106, 33, 0.08);
  color: var(--garlic);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.topic-row .remove-row,
.taxonomy-row .remove-row,
.home-social-row .remove-row,
.ethos-row .remove-row,
.ingredient-row .remove-row {
  min-height: 34px;
  white-space: nowrap;
}

.topic-move:hover {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.16);
  transform: translateY(-1px);
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.settings-help {
  margin: 0;
  color: var(--steel);
  line-height: 1.5;
}

.inline-help {
  align-self: end;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.04);
  font-size: 0.84rem;
  padding: 12px;
}

.password-wrap {
  position: relative;
  display: block;
}

.password-wrap input {
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  opacity: 0.72;
  transition: opacity 160ms ease, transform 160ms ease;
}

.password-toggle::before {
  content: "";
  width: 18px;
  height: 11px;
  border: 2px solid rgba(242, 215, 160, 0.86);
  border-radius: 50% / 58%;
  transition: border-color 160ms ease, transform 160ms ease;
}

.password-toggle::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flame);
  transition: transform 160ms ease, background 160ms ease;
}

.password-toggle.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.password-toggle.is-visible::before {
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.12);
}

.password-toggle.is-visible::after {
  background: var(--garlic);
  transform: scale(1.35);
}

.password-toggle.is-visible::after {
  box-shadow: 0 0 12px rgba(242, 106, 33, 0.42);
}

.password-toggle:hover::before {
  border-color: var(--garlic);
  transform: scale(1.05);
}

.password-toggle:hover::after {
  background: var(--garlic);
}

.two-factor-qr-wrap {
  display: grid;
  justify-content: start;
}

.two-factor-qr {
  width: min(210px, 100%);
  height: auto;
  border: 10px solid var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.button.danger {
  background: #ff7c5c;
  border-color: #ff7c5c;
}

.recipe-art {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 240px;
  background-position: center;
  background-size: cover;
}

.recipe-time-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 24px auto auto;
  align-items: baseline;
  gap: 0 7px;
  min-width: 126px;
  border: 1px solid rgba(242, 215, 160, 0.15);
  border-top-color: rgba(255, 244, 220, 0.1);
  border-left-color: rgba(242, 106, 33, 0.28);
  border-right: 0;
  border-bottom: 0;
  border-radius: 14px 0 0 0;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.2), rgba(31, 22, 15, 0.16) 40%, rgba(7, 7, 6, 0.88)),
    rgba(12, 10, 8, 0.9);
  box-shadow:
    -14px -14px 30px rgba(0, 0, 0, 0.26),
    inset 1px 1px 0 rgba(255, 244, 220, 0.12);
  color: var(--cream);
  padding: 10px 14px 9px 13px;
  text-transform: uppercase;
  backdrop-filter: blur(12px) saturate(1.15);
  isolation: isolate;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.recipe-time-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16px 12px, rgba(255, 244, 220, 0.22), transparent 18px),
    linear-gradient(90deg, rgba(242, 106, 33, 0.22), transparent 42%);
  opacity: 0.86;
  pointer-events: none;
  z-index: -1;
}

.recipe-time-icon {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
  width: 22px;
  height: 22px;
  display: block;
  border: 1px solid rgba(242, 215, 160, 0.42);
  border-radius: 50%;
  background: rgba(7, 7, 6, 0.34);
  box-shadow:
    0 0 0 4px rgba(242, 106, 33, 0.1),
    inset 0 0 12px rgba(242, 106, 33, 0.18);
  color: var(--garlic);
  fill: none;
  opacity: 0.96;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.recipe-time-badge small {
  grid-column: 2 / -1;
  color: var(--steel);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.recipe-time-badge strong {
  grid-column: 2;
  color: #fff4dc;
  font-size: 1.12rem;
  line-height: 1;
}

.recipe-time-badge span {
  grid-column: 3;
  color: var(--garlic);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.05;
}

.recipe-card:hover .recipe-time-badge {
  border-color: rgba(242, 215, 160, 0.22);
  border-top-color: rgba(255, 244, 220, 0.14);
  border-left-color: rgba(242, 106, 33, 0.42);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.26), rgba(31, 22, 15, 0.18) 40%, rgba(7, 7, 6, 0.9)),
    rgba(12, 10, 8, 0.92);
  box-shadow:
    -16px -16px 34px rgba(0, 0, 0, 0.28),
    inset 1px 1px 0 rgba(255, 244, 220, 0.14),
    inset 0 0 24px rgba(242, 106, 33, 0.08);
}

.recipe-card:hover .recipe-time-icon {
  border-color: rgba(255, 244, 220, 0.58);
  box-shadow:
    0 0 0 4px rgba(242, 106, 33, 0.15),
    0 0 18px rgba(242, 106, 33, 0.2),
    inset 0 0 12px rgba(242, 106, 33, 0.22);
  transform: rotate(8deg);
}

.recipe-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.featured-badge {
  width: max-content;
  border: 1px solid rgba(242, 106, 33, 0.42);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.12);
  color: var(--garlic);
  padding: 5px 9px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recipe-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.taxonomy-pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--cream);
  white-space: nowrap;
}

.taxonomy-pill span {
  color: var(--steel);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
}

.taxonomy-pill-goal {
  color: #f2d7a0;
}

.taxonomy-pill-category {
  color: #c8d59a;
}

.taxonomy-divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.08);
}

.recipe-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  align-items: center;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.recipe-stat {
  display: inline-flex;
  gap: 3px;
  align-items: baseline;
  border-radius: 999px;
  margin: -3px 0;
  padding: 3px 0;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.recipe-stat strong {
  color: var(--cream);
  font-size: 0.84rem;
  line-height: 1;
}

.recipe-stat em {
  color: var(--garlic);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

.recipe-stat span {
  color: var(--steel);
}

.recipe-stat-protein strong {
  color: #fff4dc;
}

.recipe-stat-fat strong,
.recipe-stat-carbs strong {
  color: #d9e1b0;
}

.recipe-stat-divider {
  color: rgba(242, 106, 33, 0.62);
  font-weight: 900;
}

.recipe-stat-divider::before {
  content: "/";
}

.recipe-stat.is-dominant {
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.18), rgba(242, 215, 160, 0.08)),
    rgba(242, 106, 33, 0.06);
  box-shadow:
    0 0 0 1px rgba(242, 106, 33, 0.24),
    0 8px 20px rgba(242, 106, 33, 0.08);
  padding-inline: 8px;
}

.recipe-stat.is-dominant strong,
.recipe-stat.is-dominant em {
  color: var(--flame);
}

.recipe-stat.is-dominant span {
  color: var(--cream);
}

.recipe-card-body > strong {
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1.2;
}

.recipe-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.62);
  padding: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 244, 220, 0.12);
  color: var(--steel);
  padding: 18px 0 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer span:last-child {
  color: var(--garlic);
}

.page-size-control {
  min-width: 170px;
}

.page-size-control select {
  min-height: 42px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: 999px;
  color: var(--cream);
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 12px;
  outline: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
  min-width: min(100%, 280px);
}

.pagination button {
  min-height: 42px;
  border: 1px solid rgba(242, 106, 33, 0.5);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--garlic);
  cursor: pointer;
  padding: 9px 16px;
  font-weight: 900;
}

.pagination button:hover:not(:disabled) {
  background: var(--flame);
  color: #160904;
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.pagination span {
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 900;
}

.recipe-summary {
  color: #cfc7b9;
  line-height: 1.55;
}

.back-link {
  margin-bottom: 18px;
}

.recipe-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.78);
  box-shadow: var(--shadow);
}

.recipe-detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.recipe-detail-intro {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.recipe-detail-intro h1 {
  font-size: clamp(2.9rem, 7vw, 5.8rem);
}

.detail-pills {
  margin-top: 18px;
}

.detail-pills > span {
  border: 1px solid rgba(255, 244, 220, 0.18);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.06);
  color: var(--garlic);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-pill-macros {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  align-items: center;
  color: var(--steel);
}

.detail-pill-macros .recipe-stat {
  padding-block: 2px;
}

.detail-pill-macros .recipe-stat.is-dominant {
  margin-inline: 1px;
}

.recipe-video-section {
  display: grid;
  gap: 0;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.035)),
    rgba(17, 16, 14, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: background 420ms ease, border-color 420ms ease;
}

.recipe-video-section.is-open {
  background:
    linear-gradient(180deg, rgba(64, 34, 22, 0.98) 0, rgba(49, 28, 20, 0.96) 90px, rgba(17, 16, 14, 0.86) 180px),
    rgba(17, 16, 14, 0.86);
  border-color: rgba(242, 106, 33, 0.3);
}

.recipe-video-section.is-closing {
  background:
    linear-gradient(180deg, rgba(64, 34, 22, 0.98) 0, rgba(49, 28, 20, 0.96) 90px, rgba(17, 16, 14, 0.86) 180px),
    rgba(17, 16, 14, 0.86);
}

.recipe-video-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--cream);
  padding: 18px 20px;
  text-align: left;
}

.recipe-video-toggle::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--flame);
  border-bottom: 2px solid var(--flame);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.recipe-video-toggle span {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 950;
}

.recipe-video-toggle small {
  grid-column: 1;
  color: var(--ash);
  font-weight: 800;
  text-transform: uppercase;
}

.recipe-video-toggle:hover {
  background: rgba(242, 106, 33, 0.08);
}

.recipe-video-toggle.is-open,
.recipe-video-toggle.is-open:hover,
.recipe-video-section.is-closing .recipe-video-toggle:hover {
  background: transparent;
}

.recipe-video-toggle.is-open::after {
  transform: rotate(225deg);
}

.recipe-video-frame {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 18px;
  pointer-events: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: max-height 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 360ms ease 120ms, padding 700ms ease;
}

.recipe-video-frame::before {
  content: "";
  display: block;
  height: 12px;
  opacity: 0;
  transition: opacity 360ms ease;
}

.recipe-video-frame.is-open {
  max-height: 920px;
  opacity: 1;
  padding: 0 18px 18px;
  pointer-events: auto;
}

.recipe-video-frame.is-open::before {
  opacity: 1;
}

.recipe-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: calc(var(--radius) - 1px);
  background: #050504;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease;
}

.recipe-video-frame.is-open iframe {
  opacity: 1;
  visibility: visible;
}

.recipe-detail-body {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  padding-top: 24px;
}

.ingredients-panel {
  align-self: start;
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(242, 106, 33, 0.08), transparent 42%),
    rgba(17, 16, 14, 0.78);
  padding: 18px;
}

.ingredients-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredients-panel li {
  display: grid;
  grid-template-columns: minmax(78px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.28);
  color: #ddd5c7;
  padding: 9px 10px;
  line-height: 1.55;
}

.ingredients-panel li strong {
  display: inline-grid;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(242, 106, 33, 0.34);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--garlic);
  padding: 4px 8px;
  font-size: 0.76rem;
  text-align: center;
  text-transform: uppercase;
}

.ingredients-panel li span {
  min-width: 0;
}

.ingredients-panel li:not(:has(strong)) {
  grid-template-columns: 1fr;
}

.step-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.035);
  padding: 12px;
}

.step-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 124px;
  border-radius: var(--radius);
  background: var(--art);
  background-size: cover;
  background-position: center;
}

.step-image::after {
  content: attr(data-step-number);
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.58);
  color: var(--garlic);
  font-weight: 900;
}

.step-image.has-photo::after {
  content: none;
}

.step-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--flame);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 0 0 6px;
  color: var(--garlic);
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  color: #d6cec0;
  line-height: 1.6;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.68);
  padding: clamp(16px, 4vh, 36px) 18px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
}

.modal-backdrop.is-closing {
  opacity: 0;
}

.contact-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: min(calc(100dvh - 36px), 900px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 244, 220, 0.2);
  border-radius: var(--radius);
  background: #11100e;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 38px);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 260ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.modal-backdrop.is-open .contact-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-backdrop.is-closing .contact-modal {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.contact-modal h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 0.98;
}

.contact-modal p {
  color: #cfc7b9;
  line-height: 1.6;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 7, 6, 0.78);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.close-button:hover {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.16);
  color: var(--garlic);
  box-shadow: 0 10px 24px rgba(242, 106, 33, 0.16);
  transform: translateY(-1px) rotate(4deg) scale(1.04);
}

.close-button:active {
  transform: translateY(0) rotate(0deg) scale(0.98);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  position: relative;
}

.contact-form[data-admin-login],
.contact-form[data-gate-login-form],
.contact-form[data-management-login] {
  gap: 17px;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 2px;
  border: 1px solid rgba(242, 215, 160, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.08), rgba(7, 7, 6, 0.22)),
    rgba(7, 7, 6, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.08), 0 14px 34px rgba(0, 0, 0, 0.18);
  padding: 7px;
}

.auth-mode-tabs button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  letter-spacing: 0;
  font-weight: 900;
  transition:
    background 190ms ease,
    border-color 190ms ease,
    color 190ms ease,
    box-shadow 190ms ease,
    transform 190ms cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-mode-tabs button.is-active {
  border-color: rgba(242, 106, 33, 0.66);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.28), rgba(242, 215, 160, 0.08)),
    rgba(242, 106, 33, 0.12);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(242, 106, 33, 0.16), inset 0 1px 0 rgba(255, 244, 220, 0.16);
}

.auth-mode-tabs button:not(.is-active):hover {
  border-color: rgba(255, 244, 220, 0.18);
  background: rgba(255, 244, 220, 0.06);
  color: #fff4dc;
  transform: translateY(-1px);
}

.contact-form[data-admin-login] [data-login-step="credentials"],
.contact-form[data-gate-login-form] [data-login-step="credentials"],
.contact-form[data-management-login] [data-login-step="credentials"],
.contact-form[data-admin-login] [data-login-step="register"],
.contact-form[data-gate-login-form] [data-login-step="register"] {
  display: grid;
  gap: 16px;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form.is-two-factor-login {
  grid-template-columns: minmax(0, 1fr) minmax(104px, 0.28fr);
}

.contact-form.is-recovery-login {
  grid-template-columns: minmax(0, 1fr) minmax(128px, 0.32fr);
}

.contact-form.is-register-login {
  gap: 17px;
}

.contact-form [data-login-step].is-auth-step-entering {
  animation: authStepIn 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-form.is-two-factor-login [data-login-step="two-factor"],
.contact-form.is-recovery-login [data-login-step="recovery"] {
  display: contents;
}

.contact-form.is-two-factor-login [data-login-step="two-factor"] > .settings-help,
.contact-form.is-two-factor-login [data-login-step="two-factor"] > label,
.contact-form.is-recovery-login [data-login-step="recovery"] > .settings-help,
.contact-form.is-recovery-login [data-login-step="recovery"] > label,
.contact-form.is-two-factor-login .form-note {
  grid-column: 1 / -1;
}

.contact-form.is-recovery-login .form-note {
  grid-column: 1 / -1;
}

.contact-form.is-two-factor-login button[type="submit"],
.contact-form.is-recovery-login button[type="submit"] {
  grid-column: 1;
  grid-row: 4;
}

.contact-form.is-two-factor-login .login-back-button,
.contact-form.is-recovery-login .login-back-button {
  grid-column: 2;
  grid-row: 4;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.contact-form.is-processing > * {
  filter: blur(1.5px);
  opacity: 0.4;
  transition: filter 180ms ease, opacity 180ms ease;
}

.contact-form.is-processing::before,
.contact-form.is-processing::after {
  position: absolute;
  z-index: 8;
  pointer-events: auto;
}

.contact-form.is-processing::before {
  content: "";
  inset: -10px;
  border: 1px solid rgba(242, 215, 160, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 106, 33, 0.18), transparent 42%),
    rgba(12, 9, 7, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.08), 0 20px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(5px);
}

.contact-form.is-processing::after {
  content: attr(data-auth-overlay-message);
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, calc(100% - 32px));
  min-height: 58px;
  border: 1px solid rgba(242, 106, 33, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.2), rgba(255, 244, 220, 0.06)),
    #17110c;
  color: #fff4dc;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 0 5px rgba(242, 106, 33, 0.1);
  font-weight: 950;
  line-height: 1.35;
  padding: 14px 18px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.contact-form.is-processing:not(.is-auth-complete)::after {
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.2), rgba(255, 244, 220, 0.08), rgba(242, 106, 33, 0.2)),
    #17110c;
  background-size: 220% 100%;
  animation: authOverlayPulse 1150ms ease-in-out infinite;
}

body:not(.management-page) .contact-form.is-processing::before {
  inset: -26px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.46), rgba(12, 9, 7, 0.9) 50%, rgba(8, 7, 6, 0.5)),
    radial-gradient(circle at 50% 38%, rgba(242, 106, 33, 0.13), transparent 56%);
  box-shadow:
    0 0 42px 24px rgba(8, 7, 6, 0.56),
    inset 0 0 38px rgba(242, 106, 33, 0.07);
  filter: blur(9px);
  -webkit-mask-image: none;
  mask-image: none;
  backdrop-filter: blur(6px);
}

body:not(.management-page) .contact-form.is-processing::after {
  border-color: transparent;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 244, 220, 0.08), transparent 56%),
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.045)),
    rgba(23, 17, 12, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 220, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(242, 106, 33, 0.1);
}

body:not(.management-page) .contact-form.is-processing:not(.is-auth-complete)::after {
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.14), rgba(255, 244, 220, 0.075), rgba(242, 106, 33, 0.14)),
    rgba(23, 17, 12, 0.88);
  background-size: 220% 100%;
}

body:not(.management-page) .contact-modal:has(.contact-form.is-processing) {
  overflow: hidden;
}

@keyframes authStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes authOverlayPulse {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes navCartCountPop {
  0% {
    opacity: 0;
    transform: translateY(-68%) scale(0.55);
  }
  68% {
    opacity: 1;
    transform: translateY(-68%) scale(1.14);
  }
  100% {
    transform: translateY(-68%) scale(1);
  }
}

.text-button {
  position: relative;
  justify-self: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ash);
  font-weight: 900;
  margin-top: 8px;
  padding: 2px 0 4px 16px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.text-button:hover {
  background: transparent;
  box-shadow: none;
  color: var(--cream);
  transform: translateX(2px);
}

.login-recovery-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.1);
}

.login-recovery-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 106, 33, 0.65), transparent);
  transform-origin: left;
  transform: scaleX(0.55);
  transition: transform 180ms ease, opacity 180ms ease;
}

.login-recovery-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.remember-2fa-choice {
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.045);
  color: var(--ash) !important;
  padding: 11px 12px;
  text-transform: none !important;
}

.remember-2fa-choice input {
  width: 18px;
  min-height: 18px;
}

:is(.remember-2fa-choice, .access-options, .update-cleanup-choice, .quick-action-choice, .recipe-select-all, .recipe-row-check) input[type="checkbox"] {
  appearance: none;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 1px solid rgba(255, 244, 220, 0.28);
  border-radius: 5px;
  background: rgba(7, 7, 6, 0.6);
  outline: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

:is(.remember-2fa-choice, .access-options, .update-cleanup-choice, .quick-action-choice, .recipe-select-all, .recipe-row-check) input[type="checkbox"]::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #1a0b04;
  border-bottom: 2px solid #1a0b04;
  opacity: 0;
  transform: rotate(42deg) scale(0.82);
  transform-origin: center;
  transition: opacity 140ms ease, transform 140ms ease;
}

:is(.remember-2fa-choice, .access-options, .update-cleanup-choice, .quick-action-choice, .recipe-select-all, .recipe-row-check) input[type="checkbox"]:checked {
  border-color: rgba(242, 106, 33, 0.9);
  background: var(--flame);
  box-shadow: none;
}

:is(.remember-2fa-choice, .access-options, .update-cleanup-choice, .quick-action-choice, .recipe-select-all, .recipe-row-check) input[type="checkbox"]:checked::before {
  opacity: 1;
  transform: rotate(42deg) scale(1);
}

:is(.remember-2fa-choice, .access-options, .update-cleanup-choice, .quick-action-choice, .recipe-select-all, .recipe-row-check) input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(242, 215, 160, 0.12);
}

.admin-modal {
  width: min(720px, 100%);
}

.recipe-admin-modal {
  width: min(860px, 100%);
}

[data-settings-modal] .recipe-admin-modal {
  width: min(940px, 100%);
}

.settings-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  overflow: visible;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.4)),
    rgba(255, 244, 220, 0.028);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.16);
  padding: 6px;
  scrollbar-width: none;
}

.settings-tabs::-webkit-scrollbar {
  display: none;
}

.settings-menu-wrap {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
}

.settings-menu-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.settings-menu-wrap > .settings-tab {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: auto;
}

.settings-menu-wrap > .settings-tab::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.85;
  transition: transform 180ms ease;
}

.settings-menu-wrap:hover > .settings-tab::after,
.settings-menu-wrap.is-open > .settings-tab::after {
  transform: translateY(1px) rotate(225deg);
}

.settings-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 40;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(242, 106, 33, 0.32);
  border-radius: var(--radius);
  background: rgba(13, 12, 10, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.settings-menu-wrap:hover .settings-submenu,
.settings-menu-wrap.is-open .settings-submenu,
.settings-submenu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.settings-submenu button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ash);
  font-weight: 900;
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
}

.settings-submenu button:hover,
.settings-submenu button.is-active {
  background: rgba(242, 106, 33, 0.18);
  color: var(--cream);
}

.login-back-button {
  justify-self: start;
  min-width: 120px;
  margin-top: 4px;
  border-color: rgba(242, 106, 33, 0.34);
  background: rgba(242, 106, 33, 0.08);
}

.login-back-button:hover {
  background: rgba(242, 106, 33, 0.16);
  transform: translateX(-2px);
}

.update-dropzone {
  position: relative;
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 150px;
  border: 1px dashed rgba(242, 106, 33, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(242, 106, 33, 0.16), transparent 52%),
    rgba(7, 7, 6, 0.32);
  color: var(--ash);
  padding: 22px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.update-dropzone:hover,
.update-dropzone:focus-within {
  border-color: rgba(242, 106, 33, 0.72);
  background:
    radial-gradient(circle at 50% 20%, rgba(242, 106, 33, 0.24), transparent 54%),
    rgba(7, 7, 6, 0.44);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 244, 220, 0.08);
  transform: translateY(-2px);
}

.version-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.version-panel span {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), transparent 70%),
    rgba(7, 7, 6, 0.42);
  padding: 12px 14px;
}

.version-panel small {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.version-panel strong {
  color: var(--cream);
  font-size: 1rem;
}

.template-guidance {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: var(--radius);
  background: rgba(242, 106, 33, 0.07);
  color: var(--ash);
  padding: 12px 14px;
}

.template-guidance strong {
  color: var(--garlic);
}

.email-test-card {
  gap: 0;
}

.email-test-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.email-test-summary .settings-help {
  margin: 0;
}

.email-test-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
}

.email-test-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.16);
  transition: transform 220ms ease, background 220ms ease;
}

.email-test-toggle-icon::before,
.email-test-toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--garlic);
  transform: translate(-50%, -50%);
}

.email-test-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.email-test-card.is-open .email-test-toggle-icon {
  background: rgba(242, 106, 33, 0.26);
  transform: rotate(180deg);
}

.email-test-card.is-open .email-test-toggle-icon::after {
  opacity: 0;
}

.email-test-body {
  display: grid;
  gap: 16px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition:
    max-height 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    margin-top 260ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.email-test-card.is-open .email-test-body {
  max-height: 1400px;
  margin-top: 16px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.email-test-recipient-grid {
  grid-template-columns: minmax(260px, 520px);
}

.email-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 12px;
  align-items: stretch;
}

.email-test-panel {
  display: grid;
  gap: 13px;
  align-content: start;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.34)),
    rgba(7, 7, 6, 0.28);
  padding: 14px;
}

.email-test-panel-all {
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.13), rgba(7, 7, 6, 0.34) 66%),
    rgba(7, 7, 6, 0.34);
}

.email-test-panel h4 {
  margin: 0 0 5px;
  color: var(--garlic);
  font-size: 1rem;
  font-weight: 950;
}

.email-test-panel .settings-help {
  margin: 0;
}

.email-test-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.email-test-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.email-test-list {
  display: grid;
  gap: 11px;
  max-height: 380px;
  overflow: auto;
  padding-right: 3px;
}

.email-test-group {
  display: grid;
  gap: 7px;
}

.email-test-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px;
  color: var(--steel);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.email-test-group-heading strong {
  color: var(--flame);
}

.email-test-group-heading span {
  color: var(--ash);
}

.email-test-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 66px;
  border: 1px solid rgba(255, 244, 220, 0.11);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.38);
  cursor: pointer;
  padding: 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.email-test-choice:hover {
  border-color: rgba(242, 106, 33, 0.36);
  background: rgba(242, 106, 33, 0.08);
  transform: translateY(-1px);
}

.email-test-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--flame);
}

.email-test-choice span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.email-test-choice strong {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
}

.email-test-choice small {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .email-test-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .email-test-toggle {
    justify-content: center;
    width: 100%;
  }

  .email-test-layout,
  .email-test-panel-head,
  .email-test-recipient-grid {
    grid-template-columns: 1fr;
  }

  .email-test-toolbar {
    justify-content: flex-start;
  }
}

.email-template-list {
  display: grid;
  gap: 14px;
}

.email-template-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-template-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.34);
  color: var(--ash);
  cursor: pointer;
  padding: 9px 12px;
  font-weight: 950;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.email-template-tab span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.08);
  color: var(--garlic);
  font-size: 0.75rem;
}

.email-template-tab:hover,
.email-template-tab.is-active {
  border-color: rgba(242, 106, 33, 0.56);
  background: rgba(242, 106, 33, 0.12);
  color: var(--cream);
}

.email-template-group {
  display: grid;
  gap: 14px;
}

.email-template-group[hidden] {
  display: none;
}

.quick-action-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-action-choice {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 92px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.3);
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quick-action-choice:hover {
  border-color: rgba(242, 106, 33, 0.38);
  background: rgba(242, 106, 33, 0.08);
  transform: translateY(-1px);
}

.quick-action-choice input {
  width: 20px;
  height: 20px;
}

.quick-action-choice span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.quick-action-choice strong {
  color: var(--cream);
  font-weight: 950;
}

.quick-action-choice small {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.carousel-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.carousel-toggle-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 84px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.36)),
    rgba(7, 7, 6, 0.32);
  cursor: pointer;
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.carousel-toggle-card:hover {
  border-color: rgba(242, 106, 33, 0.36);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.1), rgba(7, 7, 6, 0.4)),
    rgba(7, 7, 6, 0.34);
  transform: translateY(-1px);
}

.carousel-toggle-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.carousel-toggle-card:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.58;
}

.carousel-toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  border: 1px solid rgba(255, 244, 220, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.64);
}

.carousel-toggle-switch::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--steel);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-toggle-card:has(input:checked) {
  border-color: rgba(242, 106, 33, 0.48);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(7, 7, 6, 0.4)),
    rgba(7, 7, 6, 0.36);
}

.carousel-toggle-card:has(input:checked) .carousel-toggle-switch {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.22);
}

.carousel-toggle-card:has(input:checked) .carousel-toggle-switch::before {
  background: var(--flame);
  transform: translateX(20px);
}

.carousel-toggle-card span:last-child {
  display: grid;
  gap: 5px;
}

.carousel-toggle-card strong {
  color: var(--cream);
  font-weight: 950;
}

.carousel-toggle-card small {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

.home-style-panel,
.settings-subsection,
.carousel-source-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.22);
  padding: 12px;
}

.settings-subsection {
  margin-top: 14px;
}

.home-background-admin-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

.home-background-preview {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.25);
  border-radius: var(--radius);
  background: #080706 url("../hero-grit-garlic.png") center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.06);
}

.home-background-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.78), rgba(7, 7, 6, 0.36)),
    linear-gradient(180deg, transparent, rgba(7, 7, 6, 0.76));
  pointer-events: none;
}

.home-background-preview img,
.home-background-preview video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.home-background-preview span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.7rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-background-controls,
.home-background-media-fields {
  display: grid;
  gap: 12px;
}

.home-background-upload {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.24);
  padding: 12px;
}

.home-background-file-picker {
  min-height: 50px;
}

.home-background-upload .settings-help {
  margin: 0;
}

.home-background-range {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.2fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.home-background-range input[type="range"] {
  accent-color: var(--flame);
}

.home-background-range span {
  color: var(--garlic);
  font-weight: 950;
  min-width: 42px;
  text-align: right;
}

.compact-style-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-subsection-header {
  display: grid;
  gap: 4px;
}

.settings-subsection-header h4,
.home-style-panel > strong,
.carousel-source-panel strong {
  margin: 0;
  color: var(--garlic);
  font-size: 0.92rem;
  font-weight: 950;
}

.style-choice-grid,
.carousel-source-grid {
  display: grid;
  gap: 9px;
}

.style-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
}

.carousel-source-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-choice-card,
.carousel-source-choice {
  position: relative;
  display: grid;
  min-width: 0;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.04), rgba(7, 7, 6, 0.34)),
    rgba(7, 7, 6, 0.3);
  color: var(--ash);
  cursor: pointer;
  padding: 12px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.style-choice-card:hover,
.carousel-source-choice:hover {
  border-color: rgba(242, 106, 33, 0.36);
  background: rgba(242, 106, 33, 0.08);
  transform: translateY(-1px);
}

.style-choice-card input,
.carousel-source-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.style-choice-card span,
.carousel-source-choice span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.style-choice-card strong,
.carousel-source-choice strong {
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 950;
}

.style-choice-card small,
.carousel-source-choice small {
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.34;
}

.style-choice-card:has(input:checked),
.carousel-source-choice:has(input:checked) {
  border-color: rgba(242, 106, 33, 0.5);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.14), rgba(7, 7, 6, 0.34)),
    rgba(7, 7, 6, 0.36);
}

.style-choice-card:has(input:checked)::after,
.carousel-source-choice:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.14);
}

.style-choice-card:has(input:disabled),
.carousel-source-choice:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.58;
}

.carousel-admin-panel {
  display: grid;
  gap: 13px;
  margin-top: 12px;
  transition: opacity 180ms ease;
}

.carousel-admin-panel.is-disabled {
  opacity: 0.56;
}

.carousel-category-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.22);
  padding: 12px;
}

.carousel-category-panel strong {
  color: var(--garlic);
  font-weight: 950;
}

.carousel-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carousel-category-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.36);
  color: var(--ash);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 11px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel-category-choice input {
  appearance: none;
  width: 9px;
  height: 9px;
  min-height: 9px;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 50%;
  background: rgba(255, 244, 220, 0.08);
  margin: 0;
  outline: none;
}

.carousel-category-choice:hover {
  border-color: rgba(242, 106, 33, 0.38);
  color: var(--cream);
  transform: translateY(-1px);
}

.carousel-category-choice:has(input:checked) {
  border-color: rgba(242, 106, 33, 0.52);
  background: rgba(242, 106, 33, 0.13);
  color: var(--cream);
}

.carousel-category-choice:has(input:checked) input {
  border-color: rgba(242, 106, 33, 0.82);
  background: var(--flame);
}

.carousel-category-choice:has(input:disabled) {
  cursor: not-allowed;
}

.email-template-card {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(255, 244, 220, 0.11);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.3);
  padding: 14px;
}

.email-template-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.email-template-head h3 {
  margin: 0 0 4px;
  color: var(--garlic);
  font-size: 1rem;
}

.email-template-head p {
  margin: 0;
  color: var(--ash);
  line-height: 1.5;
}

.template-token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.template-token-list code {
  border: 1px solid rgba(242, 106, 33, 0.26);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--garlic);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 9px;
}

.code-textarea {
  min-height: 190px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  text-transform: none;
}

.email-template-preview {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.03)),
    rgba(8, 7, 6, 0.42);
  padding: 12px;
}

.email-preview-head {
  display: grid;
  gap: 4px;
}

.email-preview-head span {
  color: var(--flame);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.email-preview-head strong {
  color: var(--garlic);
}

.email-preview-frame {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background: #fff8ed;
  color: #1c1510;
  padding: 18px;
  text-transform: none;
}

.email-preview-frame h4,
.email-preview-frame p {
  margin: 0;
}

.email-preview-frame h4 {
  color: #1c1510;
  font-size: 1.35rem;
}

.email-preview-body {
  display: grid;
  gap: 10px;
  color: #372a20;
  line-height: 1.55;
}

.email-preview-body p,
.email-preview-body ul,
.email-preview-body ol {
  margin-top: 0;
  margin-bottom: 0;
}

.email-preview-frame > a {
  justify-self: start;
  border-radius: var(--radius);
  background: var(--flame);
  color: #120b08;
  font-weight: 950;
  padding: 10px 14px;
  text-decoration: none;
}

.update-dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.update-dropzone strong {
  color: var(--cream);
  font-size: 1.05rem;
}

.update-dropzone span,
.update-cleanup-choice small {
  color: var(--steel);
  font-weight: 800;
}

.update-cleanup-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.04);
  padding: 12px;
}

.update-cleanup-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.update-cleanup-choice span {
  display: grid;
  gap: 4px;
}

.update-clear-button[hidden] {
  display: none;
}

.settings-tab {
  flex: 0 0 auto;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  font-weight: 900;
  padding: 11px 15px;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.settings-tab:hover {
  background: rgba(255, 244, 220, 0.045);
  color: var(--garlic);
  transform: translateY(-1px);
}

.settings-tab.is-active {
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.34), rgba(242, 106, 33, 0.14)),
    rgba(242, 106, 33, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(242, 106, 33, 0.48),
    0 10px 24px rgba(242, 106, 33, 0.1);
  color: var(--cream);
}

.settings-pane {
  display: grid;
  gap: 14px;
}

.settings-pane.is-entering {
  animation: settingsPaneIn 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.settings-pane[hidden] {
  display: none;
}

@keyframes settingsPaneIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.settings-card {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.06), transparent 48%),
    rgba(255, 244, 220, 0.035);
  padding: 16px;
}

.settings-card .settings-section-title {
  margin-top: 0;
}

.settings-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 244, 220, 0.12);
  padding-top: 14px;
}

.management-page .form-note,
.settings-actions .form-note,
.settings-card .form-note {
  margin-top: 10px;
}

[data-settings-note] {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  scroll-margin-block: 28px;
  margin: 0;
  border: 1px solid rgba(170, 182, 138, 0.28);
  border-radius: var(--radius);
  background: rgba(111, 123, 60, 0.13);
  color: #dfe8c5;
  padding: 12px 14px;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 320ms ease, transform 320ms ease;
}

[data-settings-note].is-fading {
  opacity: 0;
  transform: translateY(6px);
}

[data-settings-note]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aab68a;
  box-shadow: 0 0 0 5px rgba(170, 182, 138, 0.12);
}

[data-settings-note] strong {
  color: var(--cream);
}

[data-settings-note] span {
  grid-column: 2;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

[data-settings-note][data-state="error"] {
  border-color: rgba(255, 124, 92, 0.34);
  background: rgba(255, 124, 92, 0.1);
  color: #ffccb8;
}

[data-settings-note][data-state="error"]::before {
  background: #ff7c5c;
  box-shadow: 0 0 0 5px rgba(255, 124, 92, 0.12);
}

.mode-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 10px;
}

.logo-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 10px;
}

.logo-choice-grid.slim {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mode-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 118px;
  align-content: center;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.34);
  cursor: pointer;
  padding: 14px;
}

.mode-option::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 244, 220, 0.22);
  border-radius: 50%;
  background: rgba(255, 244, 220, 0.06);
  margin: 0 auto;
}

.mode-option input {
  position: absolute;
  opacity: 0;
}

.mode-option span {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 6px;
  min-width: 0;
}

.mode-option strong {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.mode-option small {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.45;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.mode-option:has(input:checked) {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.12);
  box-shadow: inset 0 0 0 1px rgba(242, 106, 33, 0.18);
}

.mode-option:has(input:checked)::before {
  width: 12px;
  height: 12px;
  border-color: rgba(242, 106, 33, 0.88);
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 5px rgba(242, 106, 33, 0.16);
  margin: 0 auto;
}

.access-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.28);
  padding: 12px;
}

.access-options .settings-help {
  flex: 1 1 260px;
  margin: 0;
}

.access-options label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.045);
  color: var(--cream);
  font-weight: 900;
  padding: 9px 13px;
  white-space: nowrap;
}

.access-options input {
  margin: 0;
}

.two-factor-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.34);
  padding: 14px;
}

.security-icon {
  position: relative;
  width: 28px;
  height: 32px;
}

.security-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 18px;
  height: 14px;
  border: 2px solid rgba(242, 215, 160, 0.95);
  border-radius: 4px;
  background: rgba(242, 106, 33, 0.08);
}

.security-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 12px;
  height: 14px;
  border: 2px solid rgba(242, 215, 160, 0.95);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.contact-mode-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mode-option.compact {
  min-height: 104px;
}

.branding-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.branding-control {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(242, 106, 33, 0.1), transparent 38%),
    rgba(7, 7, 6, 0.26);
  padding: 12px;
}

.branding-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.branding-control h4 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.92rem;
}

.brand-asset-preview {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.28);
  background:
    radial-gradient(circle at 38% 24%, rgba(242, 106, 33, 0.2), transparent 48%),
    rgba(255, 244, 220, 0.04);
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}

.brand-icon-preview {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.brand-logo-preview {
  width: min(190px, 40%);
  min-width: 132px;
  height: 60px;
  border-radius: 14px;
  padding: 6px;
}

.brand-asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon-preview img {
  object-fit: cover;
}

.logo-upload-panel {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.32);
  padding: 12px;
}

.logo-upload-panel.compact-upload {
  grid-template-columns: minmax(0, 1fr) auto;
}

.logo-upload-panel[hidden] {
  display: none;
}

.logo-preview {
  display: grid;
  min-height: 74px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.1), transparent),
    rgba(255, 244, 220, 0.035);
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.logo-preview img {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
  padding: 8px;
}

.logo-upload-panel .settings-help {
  grid-column: 1 / -1;
}

.site-icon-panel {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.26);
  padding: 12px;
}

.site-icon-preview {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 38% 24%, rgba(242, 106, 33, 0.22), transparent 48%),
    rgba(255, 244, 220, 0.04);
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.site-icon-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-icon-panel .settings-help {
  grid-column: 1 / -1;
}

.logo-upload-panel input[type="file"],
.site-icon-panel input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  color: var(--steel);
  font-weight: 800;
}

.logo-upload-panel input[type="file"]::file-selector-button,
.site-icon-panel input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 1px solid rgba(242, 106, 33, 0.35);
  border-radius: 10px;
  background: rgba(242, 106, 33, 0.12);
  color: var(--cream);
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.logo-upload-panel input[type="file"]::file-selector-button:hover,
.site-icon-panel input[type="file"]::file-selector-button:hover {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.2);
  transform: translateY(-1px);
}

.profile-tabs {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  width: min(100%, 360px);
}

.users-list {
  display: grid;
  gap: 10px;
}

.session-lifetime-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 1fr);
  gap: 12px;
  align-items: stretch;
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(242, 106, 33, 0.12), transparent 42%),
    rgba(7, 7, 6, 0.34);
  padding: 12px;
}

.session-lifetime-toggle,
.session-lifetime-field {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(255, 244, 220, 0.11);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.38)),
    rgba(7, 7, 6, 0.28);
  color: var(--steel);
  padding: 13px;
}

.session-lifetime-toggle {
  align-items: stretch;
  padding: 0;
}

.session-lifetime-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.session-lifetime-button,
.session-lifetime-field {
  gap: 7px;
}

.session-lifetime-button {
  display: grid;
  width: 100%;
  min-height: 100%;
  align-content: center;
  justify-items: start;
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(7, 7, 6, 0.58)),
    rgba(7, 7, 6, 0.48);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  padding: 13px;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.session-lifetime-button:hover,
.session-lifetime-button:focus-visible {
  border-color: rgba(242, 106, 33, 0.55);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.18), rgba(7, 7, 6, 0.58)),
    rgba(7, 7, 6, 0.56);
  transform: translateY(-1px);
}

.session-lifetime-button.is-disabled {
  border-color: rgba(170, 182, 138, 0.34);
  background:
    linear-gradient(135deg, rgba(111, 123, 60, 0.18), rgba(7, 7, 6, 0.58)),
    rgba(7, 7, 6, 0.52);
}

.session-lifetime-button strong {
  color: var(--cream);
  font-weight: 950;
}

.session-lifetime-button small,
.session-lifetime-field small {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.session-lifetime-field {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.session-lifetime-field input {
  min-height: 44px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), transparent),
    rgba(2, 2, 2, 0.66);
  color: var(--cream);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 850;
  outline: none;
  padding: 11px 13px;
  text-transform: none;
}

.session-lifetime-panel.is-disabled .session-lifetime-field {
  border-color: rgba(255, 244, 220, 0.08);
  background: rgba(255, 244, 220, 0.025);
  opacity: 0.54;
}

.session-lifetime-field input:disabled {
  background: rgba(255, 244, 220, 0.035);
  color: rgba(216, 206, 189, 0.55);
  cursor: not-allowed;
}

.user-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(120px, 1fr) minmax(150px, 1.1fr) minmax(104px, 0.65fr) minmax(150px, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.28);
  padding: 8px;
}

.user-row.is-suspended {
  border-color: rgba(242, 106, 33, 0.32);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(7, 7, 6, 0.32)),
    rgba(7, 7, 6, 0.28);
}

.user-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.user-suspend-button {
  min-width: 94px;
}

.user-status {
  grid-column: 1 / -1;
  display: block;
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: 10px;
  background: rgba(242, 106, 33, 0.08);
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.45;
  padding: 8px 10px;
}

.user-status[hidden] {
  display: none;
}

.user-row :is(button, .custom-select-trigger):disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.user-suspend-modal {
  width: min(620px, calc(100vw - 28px));
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.68)),
    #11100e;
  padding: clamp(22px, 4vw, 30px);
}

.user-suspend-modal h2 {
  max-width: calc(100% - 52px);
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.user-suspend-modal > [data-user-suspend-copy] {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.suspend-account-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.suspend-mode-grid,
.suspend-duration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.suspend-duration-grid {
  grid-template-columns: minmax(96px, 0.35fr) minmax(180px, 1fr);
  align-items: end;
}

.suspend-choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.42)),
    rgba(7, 7, 6, 0.32);
  color: var(--steel);
  cursor: pointer;
  padding: 12px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.suspend-choice:hover,
.suspend-choice:has(input[type="radio"]:checked) {
  border-color: rgba(242, 106, 33, 0.46);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(7, 7, 6, 0.48)),
    rgba(7, 7, 6, 0.4);
}

.suspend-choice input[type="radio"] {
  appearance: none;
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  border: 1px solid rgba(255, 244, 220, 0.32);
  border-radius: 50%;
  background: rgba(7, 7, 6, 0.65);
  margin-top: 2px;
}

.suspend-choice input[type="radio"]::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--flame);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 140ms ease, transform 140ms ease;
}

.suspend-choice input[type="radio"]:checked {
  border-color: rgba(242, 106, 33, 0.9);
}

.suspend-choice input[type="radio"]:checked::before {
  opacity: 1;
  transform: scale(1);
}

.suspend-choice strong {
  display: block;
  color: var(--cream);
  font-weight: 950;
}

.suspend-choice small {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 3px;
}

.suspend-account-form > label,
.suspend-duration-grid > label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.suspend-account-form :is(input[type="number"], textarea, select) {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 244, 220, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), transparent),
    rgba(2, 2, 2, 0.66);
  color: var(--cream);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  outline: none;
  padding: 10px 12px;
  text-transform: none;
}

.suspend-account-form textarea {
  min-height: 112px;
  resize: vertical;
}

.suspend-account-form :is(input[type="number"], textarea, select):focus {
  border-color: rgba(242, 106, 33, 0.62);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.12);
}

.suspend-account-form .custom-select {
  width: 100%;
}

.suspend-account-form .custom-select-trigger {
  min-height: 44px;
  border-radius: 10px;
}

.user-suspend-modal .confirm-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.form-grid.is-disabled {
  opacity: 0.46;
}

.two-factor-disable {
  display: grid;
  width: min(420px, 100%);
  justify-self: center;
}

.two-factor-disable[hidden] {
  display: none;
}

.two-factor-setup {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: var(--radius);
  background: rgba(242, 106, 33, 0.07);
  padding: 14px;
}

.two-factor-setup[hidden] {
  display: none;
}

.two-factor-fields {
  display: grid;
  gap: 12px;
}

.settings-button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.settings-button-row .button {
  min-width: min(100%, 280px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.macro-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.current-image-preview {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.035);
  padding: 10px;
  color: var(--ash);
  font-size: 0.9rem;
  font-weight: 800;
}

.current-image-preview[hidden],
.step-existing-image[hidden] {
  display: none;
}

.current-image-preview img {
  width: 92px;
  height: 62px;
  border-radius: 6px;
  object-fit: cover;
}

.image-upload-field {
  display: grid;
  gap: 7px;
}

.field-label {
  color: var(--ash);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.file-picker {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.1), rgba(255, 244, 220, 0.025)),
    rgba(7, 7, 6, 0.48);
  padding: 8px;
}

.file-picker input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-picker > span {
  border: 1px solid rgba(242, 106, 33, 0.38);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.14);
  color: var(--garlic);
  padding: 9px 12px;
  font-size: 0.84rem;
  font-weight: 950;
}

.file-picker > small {
  min-width: 0;
  overflow: hidden;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-picker:hover {
  border-color: rgba(242, 106, 33, 0.42);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.52);
}

.compact-upload .file-picker {
  min-height: 44px;
}

.image-remove-button {
  justify-self: end;
  white-space: nowrap;
}

.dynamic-fieldset {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.035);
  padding: 14px;
}

.dynamic-fieldset h3 {
  margin: 0 0 4px;
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.settings-section-title {
  margin: 8px 0 0;
  color: var(--garlic);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.dynamic-fieldset p {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.dynamic-list {
  display: grid;
  gap: 10px;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.taxonomy-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.22);
  padding: 12px;
}

.taxonomy-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--garlic);
  font-weight: 900;
}

.taxonomy-header > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.taxonomy-header .settings-section-title {
  margin: 0;
}

.taxonomy-header .compact-button {
  flex: 0 0 auto;
  min-width: 104px;
  white-space: nowrap;
}

.compact-button {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 0.84rem;
}

.ingredient-row,
.step-editor {
  display: grid;
  gap: 10px;
}

.step-existing-image {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.035);
  padding: 8px;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
}

.step-existing-image img {
  width: 78px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
}

.ingredient-row {
  grid-template-columns: minmax(160px, 1.2fr) minmax(92px, 0.7fr) minmax(92px, 0.7fr) auto;
  align-items: center;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.28);
  padding: 8px;
}

.step-editor {
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.45);
  padding: 12px;
}

.step-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--garlic);
  font-weight: 900;
}

.remove-row {
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.05);
  color: var(--ash);
  cursor: pointer;
  padding: 8px 10px;
  font-weight: 900;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.remove-row:hover {
  border-color: rgba(242, 106, 33, 0.58);
  background: rgba(242, 106, 33, 0.14);
  color: var(--garlic);
  box-shadow: 0 10px 22px rgba(242, 106, 33, 0.12);
  transform: translateY(-1px);
}

.remove-row:active {
  transform: translateY(0) scale(0.98);
}

.form-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
  max-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 244, 220, 0.055);
  color: var(--ash);
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 11px 12px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 220ms ease,
    transform 220ms ease,
    margin 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    padding 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-width 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.form-note.is-fading {
  max-height: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-6px);
}

.form-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--garlic);
  box-shadow: 0 0 0 5px rgba(242, 215, 160, 0.1);
}

.form-note strong {
  color: var(--cream);
}

.form-note[data-state="success"] {
  border-color: rgba(170, 182, 138, 0.32);
  background: rgba(111, 123, 60, 0.13);
}

.form-note[data-state="success"]::before {
  background: #aab68a;
}

.form-note[data-state="error"] {
  border-color: rgba(255, 124, 92, 0.34);
  background: rgba(255, 124, 92, 0.1);
}

.form-note[data-state="error"]::before {
  background: #ff7c5c;
}

.form-note[data-state="warning"] {
  border-color: rgba(242, 106, 33, 0.38);
  background: rgba(242, 106, 33, 0.1);
}

.form-note[data-state="warning"]::before {
  background: var(--flame);
}

.form-note:empty,
.form-note[hidden] {
  display: none;
}

.update-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(242, 106, 33, 0.2), transparent 28rem),
    rgba(4, 4, 3, 0.86);
  backdrop-filter: blur(18px) saturate(1.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.update-progress-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.update-progress-card {
  display: grid;
  justify-items: center;
  width: min(440px, calc(100vw - 32px));
  border: 1px solid rgba(242, 106, 33, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(255, 244, 220, 0.045) 48%, rgba(7, 7, 6, 0.92)),
    rgba(15, 13, 10, 0.95);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
  padding: clamp(24px, 5vw, 38px);
  text-align: center;
}

.update-progress-ring {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 244, 220, 0.13);
  border-top-color: var(--flame);
  border-right-color: var(--garlic);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(242, 106, 33, 0.18);
  animation: progressSpin 900ms linear infinite;
}

.update-progress-card strong {
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.update-progress-card small {
  max-width: 330px;
  margin-top: 12px;
  color: var(--ash);
  font-weight: 800;
  line-height: 1.5;
}

@keyframes progressSpin {
  to {
    transform: rotate(360deg);
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  @supports selector(html:has(body.home-page)) {
    html:has(body.home-page) {
      height: auto;
      overflow: auto;
    }
  }

  .home-page {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: auto;
  }

  .home-hero,
  .page-intro,
  .error-card,
  .recipe-layout,
  .recipe-detail-hero,
  .recipe-detail-body {
    grid-template-columns: 1fr;
  }

  .home-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .error-shell {
    min-height: 100vh;
    min-height: 100svh;
    align-content: center;
    place-items: center;
    padding: clamp(104px, 14svh, 148px) max(18px, env(safe-area-inset-right)) clamp(42px, 8svh, 76px) max(18px, env(safe-area-inset-left));
  }

  .error-card {
    justify-items: center;
    width: min(100%, 560px);
    gap: 14px;
    padding: clamp(28px, 5vw, 44px);
    text-align: center;
  }

  body.has-header-account .error-shell {
    padding-top: clamp(130px, 18svh, 174px);
  }

  .error-code {
    justify-self: center;
    font-size: clamp(5.8rem, 28vw, 9.5rem);
  }

  .error-copy {
    justify-items: center;
  }

  .error-copy p:not(.eyebrow) {
    max-width: 35rem;
  }

  .error-actions {
    justify-content: center;
  }

  .home-side-stack {
    align-self: start;
    margin: 0;
  }

  .recipe-sidebar-column,
  .ingredients-panel {
    position: static;
  }

  .recipe-sidebar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .recipe-sidebar h2,
  .quote-block {
    grid-column: 1 / -1;
  }

  .recipe-detail-hero img {
    min-height: 360px;
  }

  .admin-dock {
    right: auto;
    left: 50%;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 24px);
    transform: translateX(-50%);
  }

  .admin-dock-copy strong {
    white-space: normal;
  }

  .admin-dock-actions {
    width: 100%;
  }

  .admin-dock-actions .admin-logout {
    flex: 1;
  }

  .management-login-card,
  .management-console-header,
  .management-dashboard {
    grid-template-columns: 1fr;
  }

  .management-console,
  .management-split,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .management-sidebar {
    position: static;
  }

  .management-workspace-header {
    align-items: stretch;
    flex-direction: column;
  }

  .management-brand {
    min-height: 220px;
  }

  .management-login-form {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .auth-form-grid {
    grid-template-columns: 1fr;
  }

  .custom-page-scrollbar {
    display: none;
  }

  body.has-admin-dock .page-shell,
  body.has-admin-dock .recipe-detail-page,
  body.has-admin-dock .reviews-shell,
  body.has-admin-dock .review-detail-page {
    padding-bottom: 168px;
  }

  body.has-admin-dock.home-page .home-hero {
    padding-bottom: 158px;
  }

  body.has-header-account .page-shell,
  body.has-header-account .recipe-detail-page {
    padding-top: 126px;
  }

  body.header-expanded-from-home .site-header,
  body.header-shrunk-to-home .home-header,
  body.header-expanded-from-home .brand-mark,
  body.header-expanded-from-home .main-nav {
    animation: none;
  }

  .site-header {
    position: fixed;
    inset: 12px auto auto 8px;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
    width: calc(100vw - 32px);
    max-width: none;
    min-height: 58px;
    border: 1px solid rgba(255, 244, 220, 0.14);
    border-radius: 999px;
    margin: 0;
    padding: 6px;
    background:
      linear-gradient(90deg, rgba(242, 106, 33, 0.1), rgba(255, 244, 220, 0.055), rgba(111, 123, 60, 0.055)),
      rgba(8, 7, 6, 0.9);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 244, 220, 0.08);
    backdrop-filter: blur(18px) saturate(1.15);
  }

  .site-header::after {
    display: none;
  }

  .home-header {
    left: 8px;
    right: auto;
    width: calc(100vw - 32px);
    max-width: none;
    min-height: 58px;
    transform: none;
  }

  .brand-mark {
    display: none;
  }

  .header-menu-stack {
    width: 100%;
  }

  .main-nav {
    display: flex;
    width: 100%;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .main-nav a,
  .nav-contact {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(255, 244, 220, 0.035);
    padding: 9px 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: none;
  }

  .main-nav .nav-home {
    flex: 0 0 38px;
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  .nav-home svg {
    width: 18px;
    height: 18px;
  }

  .main-nav .nav-contact {
    flex: 0 0 38px;
    width: 38px;
    min-width: 38px;
    padding: 0;
    background: linear-gradient(135deg, var(--flame), #ff8b38);
    border-color: rgba(255, 244, 220, 0.12);
    color: #160904;
    font-size: 0;
    box-shadow: 0 8px 22px rgba(242, 106, 33, 0.22);
  }

  .main-nav .nav-shop-link.has-cart-count {
    border-color: transparent;
    background: rgba(255, 244, 220, 0.035);
    color: var(--ash);
    gap: 6px;
    padding-right: 8px;
  }

  .main-nav .nav-shop-link .nav-cart-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 rgba(255, 244, 220, 0.2),
      0 2px 7px rgba(210, 56, 43, 0.2);
  }

  .main-nav .nav-shop-link.has-cart-count:hover,
  .main-nav .nav-shop-link.has-cart-count[aria-current="page"] {
    border-color: rgba(242, 106, 33, 0.42);
    background: rgba(242, 106, 33, 0.18);
    color: var(--cream);
  }

  .nav-contact-icon {
    display: block;
    width: 18px;
    height: 18px;
  }

  .nav-contact-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    border-color: rgba(242, 106, 33, 0.42);
    background: rgba(242, 106, 33, 0.18);
    color: var(--cream);
  }

  .nav-contact:hover {
    border-color: rgba(255, 244, 220, 0.2);
    background: linear-gradient(135deg, #ff8b38, var(--flame));
    color: #160904;
  }

  .header-account-pill,
  .home-header .header-account-pill {
    top: calc(100% - 10px);
    left: 50%;
    max-width: calc(100vw - 44px);
    transform: translateX(-50%);
    padding: 15px 7px 8px;
  }

  .header-account-pill span {
    max-width: 94px;
    font-size: 0.62rem;
  }

  .header-account-pill button {
    min-height: 25px;
    padding: 4px 7px;
    font-size: 0.66rem;
  }

  .home-hero {
    padding-top: 96px;
  }

  .page-shell,
  .recipe-detail-page {
    width: min(100% - 22px, 760px);
    padding-top: 106px;
  }

  .error-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    padding: 126px max(16px, env(safe-area-inset-right)) 44px max(16px, env(safe-area-inset-left));
  }

  body.has-header-account .error-shell {
    padding-top: 150px;
  }

  .home-page {
    overflow: auto;
    overflow-x: hidden;
  }

  .home-hero {
    min-height: auto;
    gap: 22px;
    align-items: start;
    padding: 102px 16px 32px;
  }

  body.has-header-account.home-page .home-hero {
    padding-top: 124px;
  }

  .home-background,
  .home-panel,
  .home-side-stack,
  .ethos-panel {
    transform: none;
  }

  .home-background {
    position: fixed;
    background-position: center top;
  }

  .home-panel,
  .home-side-stack,
  .ethos-panel {
    max-width: none;
  }

  .home-lede {
    margin-top: 18px;
  }

  .home-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-actions .button {
    min-height: 44px;
    padding: 11px 10px;
    text-align: center;
  }

  .home-actions .button.primary {
    grid-column: 1 / -1;
  }

  .social-panel {
    margin-top: 24px;
  }

  .social-grid a {
    min-height: 96px;
  }

  .page-intro-copy {
    justify-self: start;
  }

  .page-intro-copy .eyebrow,
  .page-intro-copy p:not(.eyebrow) {
    text-align: left;
  }

  .home-panel h1 {
    font-size: clamp(3.4rem, 22vw, 5.8rem);
  }

  .recipe-tools,
  .recipe-grid,
  .recipe-layout--disabled .recipe-grid,
  .recipe-sidebar,
  .recipe-sidebar-column,
  .step-card,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .recipe-sidebar-column .ad-slot-sidebar {
    order: -1;
  }

  .reviews-sidebar-column .ad-slot-sidebar {
    order: -1;
  }

  .form-grid,
  .macro-grid,
  .taxonomy-grid,
  .settings-tabs,
  .mode-options,
  .logo-choice-grid,
  .branding-split,
  .quick-action-settings-grid,
  .logo-upload-panel,
  .site-icon-panel,
  .contact-mode-options,
  .two-factor-setup,
  .session-lifetime-panel,
  .home-background-admin-grid,
  .home-background-range,
  .carousel-toggle-grid,
  .style-choice-grid,
  .carousel-source-grid {
    grid-template-columns: 1fr;
  }

  .home-background-range span {
    text-align: left;
  }

  .ingredient-row {
    grid-template-columns: 1fr;
  }

  .current-image-preview,
  .step-existing-image {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .current-image-preview .image-remove-button,
  .step-existing-image .image-remove-button {
    justify-self: stretch;
    grid-column: 1 / -1;
  }

  .file-picker {
    grid-template-columns: 1fr;
  }

  .home-social-row,
  .ethos-row,
  .user-row {
    grid-template-columns: 1fr;
  }

  .suspend-mode-grid,
  .suspend-duration-grid {
    grid-template-columns: 1fr;
  }

  .user-suspend-modal .confirm-actions {
    grid-template-columns: 1fr;
  }

  .home-social-fields {
    grid-template-columns: 1fr;
  }

  .home-social-card-head,
  .home-social-card-body {
    grid-template-columns: 1fr;
  }

  .home-social-icon-preview {
    justify-self: start;
  }

  .home-social-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .version-panel {
    grid-template-columns: 1fr;
  }

  .system-status-grid,
  .security-metric-grid,
  .control-grid.two,
  .control-grid.three,
  .seo-custom-row,
  .security-hub-cards,
  .seo-grid,
  .seo-grid.three,
  .seo-toggle-grid,
  .blocking-form,
  .blocking-grid,
  .management-recipe-tools {
    grid-template-columns: 1fr;
  }

  .security-overview-head,
  .security-row,
  .live-traffic-row,
  .security-list-header,
  .security-attempt-row,
  .security-block-row {
    grid-template-columns: 1fr;
  }

  .security-overview-head {
    align-items: stretch;
  }

  .security-verdict,
  .security-score,
  .live-traffic-side {
    justify-self: start;
    text-align: left;
  }

  .security-row-meta {
    justify-content: flex-start;
  }

  .security-list-header {
    display: none;
  }

  .security-attempt-row time {
    text-align: left;
  }

  .security-block-actions {
    justify-content: flex-start;
  }

  .management-update-actions {
    grid-template-columns: 1fr;
  }

  .management-recipes-list {
    overflow: hidden;
  }

  .management-recipe-row {
    grid-template-columns: 1fr;
  }

  .management-recipe-head {
    display: none;
  }

  .management-recipe-title {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .management-recipe-actions {
    justify-content: flex-start;
  }

  .email-template-head {
    align-items: stretch;
    flex-direction: column;
  }

  .settings-tabs {
    border-radius: var(--radius);
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
  }

  .profile-tabs {
    position: sticky;
    top: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    border: 1px solid rgba(255, 244, 220, 0.2);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 244, 220, 0.09), rgba(242, 106, 33, 0.09)),
      rgba(12, 9, 7, 0.96);
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 244, 220, 0.09);
    padding: 5px;
    overflow: visible;
    backdrop-filter: blur(12px) saturate(1.08);
  }

  .profile-tabs .settings-tab {
    min-height: 40px;
    border: 1px solid rgba(255, 244, 220, 0.08);
    border-radius: 999px;
    background: rgba(255, 244, 220, 0.045);
    padding: 9px 10px;
    white-space: nowrap;
  }

  .profile-tabs .settings-tab:not(.is-active):hover {
    border-color: rgba(255, 244, 220, 0.16);
    background: rgba(255, 244, 220, 0.075);
  }

  .contact-form.is-two-factor-login {
    grid-template-columns: minmax(0, 1fr) minmax(86px, 0.36fr);
  }

  .taxonomy-header {
    align-items: stretch;
    flex-direction: column;
  }

  .recipe-detail-hero img {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .home-background,
  .home-panel,
  .ethos-panel {
    transform: none;
  }
}

@media (max-width: 560px) {
  .recipe-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 12px;
  }

  .recipe-footer .page-size-control,
  .recipe-footer .custom-select {
    width: 100%;
    min-width: 0;
  }

  .recipe-footer .pagination {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    width: 100%;
    min-width: 0;
    gap: 8px;
  }

  .recipe-footer .pagination button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }

  .recipe-footer .pagination span {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .nav-contact {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .error-shell {
    padding-top: 112px;
    padding-bottom: 32px;
  }

  body.has-header-account .error-shell {
    padding-top: 136px;
  }

  .error-card {
    gap: 12px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .error-code {
    font-size: clamp(4.8rem, 30vw, 6.8rem);
  }

  .error-copy {
    gap: 12px;
  }

  .error-copy h1 {
    font-size: clamp(2.75rem, 14vw, 3.8rem);
    line-height: 0.86;
  }

  .error-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .error-actions {
    width: 100%;
  }

  .error-actions .button {
    justify-content: center;
    width: min(100%, 220px);
  }
}
