:root {
  --bg: #050505;
  --panel: rgba(17, 17, 17, .86);
  --panel-solid: #111111;
  --surface: #151515;
  --surface-2: #1f1f1f;
  --line: rgba(255, 255, 255, .10);
  --text: #ededed;
  --muted: #9ca3af;
  --red: #e11d48;
  --red2: #f43f5e;
  --brand-soft: #fb7185;
  --warm-bg: #ffffff;
  --warm-ink: #18181b;
  --warm-muted: #667085;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f7f7f4;
  --panel: rgba(255, 255, 255, .88);
  --panel-solid: #ffffff;
  --surface: #ffffff;
  --surface-2: #eceae5;
  --line: rgba(31, 31, 31, .12);
  --text: #202123;
  --muted: #6f6f6f;
  --warm-bg: #ffffff;
  --warm-ink: #202123;
  --warm-muted: #6f6f6f;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  transition: background-color .22s ease, color .22s ease;
}
a { color: inherit; text-decoration: none; }

/* Minimal utility fallback for SVG markup that previously relied on Tailwind. */
.h-4 { height: 16px; }
.w-4 { width: 16px; }
.h-5 { height: 20px; }
.w-5 { width: 20px; }
.h-12 { height: 48px; }
.w-12 { width: 48px; }
.shrink-0 { flex-shrink: 0; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 12px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.text-sm { font-size: 14px; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.transition { transition: all .2s ease; }
.text-rose-400 { color: #fb7185; }
.text-white { color: #fff; }
.icon-choice svg {
  width: 20px;
  height: 20px;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-solid) 78%, transparent);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.theme-toggle:hover { transform: translateY(-1px); border-color: color-mix(in srgb, var(--red) 55%, var(--line)); }
.theme-toggle:focus-visible { outline: 2px solid var(--red2); outline-offset: 3px; }
.theme-toggle-sun,
.theme-toggle-moon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity .18s ease, transform .18s ease;
}
.theme-toggle-sun {
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -8px 0 -6px currentColor, 0 8px 0 -6px currentColor, 8px 0 0 -6px currentColor, -8px 0 0 -6px currentColor, 6px 6px 0 -6px currentColor, -6px -6px 0 -6px currentColor, 6px -6px 0 -6px currentColor, -6px 6px 0 -6px currentColor;
}
.theme-toggle-moon {
  border-radius: 50%;
  box-shadow: inset -6px -4px 0 0 currentColor;
}
.theme-toggle[data-theme-state="dark"] .theme-toggle-sun,
.theme-toggle[data-theme-state="light"] .theme-toggle-moon { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle[data-theme-state="dark"] .theme-toggle-moon,
.theme-toggle[data-theme-state="light"] .theme-toggle-sun { opacity: 0; transform: scale(.65) rotate(-25deg); }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  background: rgba(5, 5, 5, .86); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.brand strong { display: block; font: 900 26px/.94 Outfit, sans-serif; letter-spacing: -1px; }
.brand span, .accent { color: var(--red); }
.brand small {
  align-self: flex-end;
  color: #9ca3af;
  font: 400 9px/1.1 Inter, sans-serif;
  letter-spacing: .12em;
  text-align: right;
  text-transform: none;
}
.links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.links a:hover { color: #fff; }
.public-theme-toggle { margin-left: auto; }
.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-button.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, .99);
}
.mobile-menu-inner {
  padding: 18px 0 22px;
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}
.mobile-menu-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.mobile-submenu-toggle {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mobile-submenu-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mobile-submenu-toggle svg:not(.mobile-submenu-arrow) {
  width: 18px;
  height: 18px;
}
.mobile-submenu-arrow {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
.mobile-submenu-toggle.is-open .mobile-submenu-arrow {
  transform: rotate(180deg);
  color: var(--red2);
}
.mobile-category-list a,
.mobile-link-list a,
.mobile-socials a {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.mobile-category-list a:hover,
.mobile-link-list a:hover,
.mobile-socials a:hover {
  color: var(--red2);
}
.mobile-menu-separator {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.mobile-link-list,
.mobile-socials {
  display: grid;
  gap: 0;
}
.mobile-link-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .2s ease;
}
.mobile-link-list a svg,
.mobile-category-list a > svg:first-child,
.mobile-menu-call svg,
.cart-call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.mobile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mobile-menu-call {
  width: 100%;
  margin: 0;
  border-radius: 16px;
  justify-content: center;
}
.mobile-socials .mobile-social-icon {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
}
.mobile-socials .mobile-social-icon svg {
  width: 18px;
  height: 18px;
}
.mobile-social-icon .social-brand-facebook { color: #1877f2; }
.mobile-social-icon .social-brand-instagram { color: #f43f5e; }
.mobile-social-icon .social-brand-tiktok { color: #fff; }
.mobile-social-icon .social-brand-youtube { color: #ff0033; }
.mobile-social-icon .social-brand-snapchat { color: #fffc00; }
.mobile-social-icon .social-brand-whatsapp { color: #25d366; }
.mobile-social-icon .social-brand-linkedin { color: #0a66c2; }
.mobile-social-icon .social-brand-x { color: #fff; }

.hero { min-height: 660px; position: relative; overflow: hidden; background: #000; }
.hero.has-link { cursor: pointer; }
.hero.has-link .hero-promo-button,
.hero.has-link .hero-controls,
.hero.has-link .hero-dots { cursor: default; }
.hero.has-link .slide.active img { transition: filter .55s ease; }
.hero.has-link:hover .slide.active img { filter: brightness(1.08); }
.hero.has-link:hover .hero-click-hint { transform: translateY(-2px); filter: brightness(1.08); }
.hero-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}
.hero-link-overlay[hidden] { display: none; }
.hero-click-hint {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 16px 38px rgba(225,29,72,.34);
  pointer-events: none;
  transition: transform .2s ease, filter .2s ease;
}
.hero-click-hint::after {
  content: "↗";
  font-size: 15px;
}
.hero-click-hint[hidden] { display: none; }
.hero-content { pointer-events: none; }
.hero-promo-button { pointer-events: auto; }
.hero-controls { pointer-events: auto; }
.hero-dots { pointer-events: auto; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.active { opacity: 1; }
.slide-media {
  position: absolute;
  inset: 0 12vw;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide::after {
  content: ""; position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.72) 14%, rgba(5,5,5,.18) 32%, transparent 50%, rgba(5,5,5,.18) 68%, rgba(5,5,5,.72) 86%, #050505 100%),
              linear-gradient(180deg, #050505 0%, transparent 22%, #050505 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 92px;
  text-align: center;
}
.hero-copy { width: min(720px, 100%); margin: 0 auto; }
.badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: linear-gradient(135deg, var(--red), var(--brand-soft)); color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
h1, h2, h3 { font-family: Outfit, Inter, sans-serif; margin: 0; letter-spacing: 0; }
.hero h1 { font-size: clamp(46px, 7vw, 76px); line-height: .96; margin: 22px 0 18px; text-transform: uppercase; color: #fff; text-shadow: 0 12px 34px rgba(0,0,0,.42); }
.hero p { color: #d1d5db; font-size: 18px; line-height: 1.7; max-width: 620px; margin: 0 auto 22px; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}
.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}
.hero-dot { color: #94a3b8; }
.hero-promo-button {
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(225,29,72,.34);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-promo-button:hover { filter: brightness(1.08); }
.promo-modal[hidden] { display: none; }
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}
.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.promo-modal-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #111;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.promo-modal-card h2 {
  margin-top: 18px;
  font-size: 34px;
}
.promo-modal-card p {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 16px;
}
.promo-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}
.hero-controls { display: none; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transform: translateX(-50%);
}
.hero-dot-btn {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, transform .22s ease;
}
.hero-dot-btn.active {
  width: 30px;
  background: #fff;
}
.hero-dot-btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
}
.round-btn { display: none; }

.main-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 46px; padding: 54px 0; }
.section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.section-title::before, .section-title::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.cat-bar { position: static !important; z-index: 1; padding: 0; background: transparent; display: flex; flex-wrap: wrap; gap: 10px; }
.cat-btn { border: 0; border-radius: 999px; padding: 11px 18px; background: rgba(255,255,255,.06); color: var(--muted); cursor: pointer; font-weight: 900; display: inline-flex; align-items: center; gap: 9px; }
.cat-btn svg { width: 18px; height: 18px; color: currentColor; }
.cat-btn.active, .cat-btn:hover { background: var(--red); color: #fff; box-shadow: 0 0 24px rgba(225,29,72,.28); }
.products { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 22px; }
.product { min-height: 306px; border: 1px solid var(--line); background: #101010; border-radius: 14px; padding: 0; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.03); transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.product[hidden] {
  display: none;
}
.product.product-revealed {
  animation: productReveal .28s ease both;
}
@keyframes productReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product::after {
  content: none;
}
.product:hover { background: rgba(255,255,255,.045); border-color: rgba(225,29,72,.5); transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.24), 0 0 0 1px rgba(225,29,72,.12); }
.product-main, .product-foot { position: relative; z-index: 2; }
.product-main {
  flex: 1 1 auto;
  min-height: 214px;
  overflow: hidden;
}
.product .emoji { font-size: 42px; }
.menu-item-svg {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(225,29,72,.12);
  color: var(--red2);
}
.menu-item-svg svg { width: 30px; height: 30px; color: currentColor; }
.product-thumb { width: 100%; height: 100%; min-height: 214px; object-fit: cover; object-position: center; border-radius: 14px 14px 0 0; display: block; }
.product h3 {
  position: absolute;
  left: 14px;
  right: auto;
  top: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(10,10,12,.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1;
  margin: 0;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product:hover h3 { color: #fff; }
.product p,
.product-description { color: var(--muted); line-height: 1.55; margin: 0; font-size: 14px; white-space: normal; }
.product > .product-main > .product-description { display: none; }
.product-description p,
.product-description div { margin: 0 0 7px; }
.product-description h2,
.product-description h3 { margin: 0 0 8px; color: #fff; font-size: 16px; line-height: 1.25; }
.product-description ul,
.product-description ol { margin: 6px 0 0 20px; padding-left: 18px; }
.product-description ul { list-style: disc outside; }
.product-description ol { list-style: decimal outside; }
.product-description li { display: list-item; margin: 3px 0; }
.product-description a { color: var(--red2); text-decoration: underline; text-underline-offset: 3px; }
.product-foot { display: flex; align-items: end; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(255,255,255,.06); padding: 18px 22px 20px; }
.price { font: 900 24px Outfit, sans-serif; }
.old-price { color: #6b7280; text-decoration: line-through; margin-left: 10px; font-size: 14px; }
.promo { position: absolute; right: 18px; top: 18px; border-radius: 999px; background: var(--red); color: #fff; padding: 6px 10px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.unavailable-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #991b1b;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product.is-unavailable {
  border-color: rgba(255,255,255,.12);
  background: #0d0d0d;
}
.product.is-unavailable .product-main,
.product.is-unavailable .product-foot {
  opacity: .62;
}
.product.is-unavailable .promo {
  top: 48px;
}
.product.is-unavailable:hover {
  border-color: rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.product.is-unavailable:hover h3 {
  color: #fff;
}
.product-watermark-emoji {
  position: absolute;
  right: -18px;
  bottom: -30px;
  font-size: 108px;
  opacity: .055;
  transform: rotate(-13deg);
  pointer-events: none;
}
.product-watermark-svg {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 132px;
  height: 132px;
  color: rgba(255,255,255,.06);
  transform: rotate(-16deg);
}
.product-load-sentinel {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 26px 0 6px;
}
.product-load-sentinel[hidden] {
  display: none;
}
.product-load-sentinel span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(225,29,72,.34);
  animation: productLoaderPulse 1s ease-in-out infinite;
}
.product-load-sentinel span:nth-child(2) {
  animation-delay: .12s;
}
.product-load-sentinel span:nth-child(3) {
  animation-delay: .24s;
}
@keyframes productLoaderPulse {
  0%, 100% {
    opacity: .28;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}
.product-watermark-svg svg {
  width: 100%;
  height: 100%;
  color: currentColor;
}
.product-watermark-img {
  display: none;
}
.product-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(225,29,72,.45);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform .2s ease, background .2s ease;
}
.product:hover .product-arrow {
  transform: rotate(45deg);
  background: rgba(225,29,72,.18);
}
.product.is-unavailable:hover .product-arrow {
  transform: none;
  background: rgba(255,255,255,.08);
}

.panel { border: 1px solid var(--line); background: var(--panel); border-radius: 22px; padding: 26px; }
.status { text-align: center; font-weight: 900; padding: 16px; border-radius: 18px; margin-bottom: 18px; border: 1px solid; }
.status svg,
.hours-row svg,
.contact-card svg,
.cta svg {
  width: 20px;
  height: 20px;
  color: currentColor;
}
.status-line,
.contact-line,
.hours-row strong {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-line { justify-content: center; }
.status.open { color: #fff; background: rgba(225,29,72,.16); border-color: rgba(225,29,72,.34); }
.status.closed { color: var(--red2); background: rgba(225,29,72,.10); border-color: rgba(225,29,72,.25); }
.hours-status {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(225,29,72,.22);
  border-radius: 18px;
  background: rgba(225,29,72,.08);
  padding: 16px 18px;
}
.hours-status strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font: 900 16px Outfit, sans-serif;
}
.hours-status svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: currentColor;
}
.hours-status span {
  color: var(--red2);
  font-size: 13px;
  font-weight: 900;
  padding-left: 30px;
}
.hours-status.open {
  border-color: rgba(34,197,94,.36);
  background: rgba(34,197,94,.13);
}
.hours-status.open strong,
.hours-status.open span {
  color: #86efac;
}
.hours-status.closed {
  border-color: rgba(225,29,72,.26);
  background: rgba(225,29,72,.08);
}
.phone-reveal {
  display: flex;
  width: 100%;
  margin: 14px auto 0;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--brand-soft));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(225,29,72,.24);
}
.phone-reveal-inline {
  width: fit-content;
  margin: 14px 0 0;
  text-decoration: none;
}
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #d1d5db; }
.hours-row strong { color: #fff; }
.hours-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.hours-slot {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.hours-row.today {
  color: #ffe4e6;
  background: rgba(225,29,72,.10);
  border: 1px solid rgba(225,29,72,.24);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}
.hours-row.today strong { color: var(--red2); }
.hours-row.today.open {
  color: #dcfce7;
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.32);
}
.hours-row.today.open strong {
  color: #86efac;
}
.hours-row.today.open svg {
  color: #86efac;
}
.hours-row.today.open .hours-slot {
  border-color: rgba(34,197,94,.26);
  background: rgba(34,197,94,.12);
  color: #dcfce7;
}
.hours-row.today.closed .hours-slot {
  border-color: rgba(225,29,72,.25);
  background: rgba(225,29,72,.10);
  color: #ffe4e6;
}
.hours-details {
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
}
.hours-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 12px 0;
}
.hours-details summary::-webkit-details-marker { display: none; }
.hours-details[open] summary span { transform: rotate(180deg); }
.hours-details summary span { transition: transform .2s ease; font-size: 18px; }
.contact-card { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.contact-line { align-items: flex-start; line-height: 1.45; font-size: 17px; margin-bottom: 16px; }
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-actions .phone-reveal,
.contact-actions .cta {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 13px;
  font-size: 13px;
}
.home-social-card {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.home-social-list {
  display: grid;
  gap: 10px;
}
.home-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.home-social-item:hover {
  transform: translateY(-2px);
  border-color: rgba(225,29,72,.36);
  background: rgba(225,29,72,.08);
}
.home-social-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #181818;
  border: 1px solid rgba(255,255,255,.08);
}
.home-social-icon svg {
  width: 24px;
  height: 24px;
}
.home-social-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.home-social-text strong {
  color: #fff;
  font: 900 15px Outfit, sans-serif;
}
.home-social-text small {
  color: var(--red2);
  font-size: 12px;
  font-weight: 900;
}
.google-business-card {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.google-business-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.google-business-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff;
  color: #4285f4;
  font: 950 25px Outfit, sans-serif;
}
.google-business-head strong {
  display: block;
  color: #fff;
  font: 900 16px Outfit, sans-serif;
}
.google-business-head small {
  display: block;
  margin-top: 3px;
  color: #facc15;
  font-weight: 900;
}
.google-stars {
  display: flex;
  gap: 2px;
  margin-top: 5px;
  color: rgba(250,204,21,.30);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}
.google-stars .filled {
  color: #facc15;
  text-shadow: 0 0 14px rgba(250,204,21,.22);
}
.google-review-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.google-review {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.google-review-stars {
  margin: 0 0 9px;
  font-size: 13px;
}
.google-review p {
  margin: 0;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.55;
}
.google-review cite {
  display: block;
  margin-top: 9px;
  color: var(--red2);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.google-review time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.google-business-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  font-weight: 900;
}
.muted-line { color: var(--muted); margin: 10px 0 0; }
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; background: var(--red); color: #fff; font-weight: 900; padding: 14px 18px; margin-top: 18px; }
.footer { border-top: 1px solid var(--line); padding: 30px 0 34px; color: var(--muted); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-brand { text-transform: none; letter-spacing: 0; color: #fff; }
.mobile-call { display: none; }
.legal-panel {
  line-height: 1.8;
  color: #d1d5db;
  margin-top: 28px;
}
.legal-panel section + section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.legal-panel h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}
.legal-panel p {
  margin: 8px 0;
}
.legal-panel a {
  color: var(--red2);
  font-weight: 900;
}

.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { background: #111; border-right: 1px solid #333; padding: 22px; position: sticky; top: 0; height: 100vh; overflow: auto; }
.admin-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.admin-brand-block img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(225,29,72,.24);
  border-radius: 12px;
  background: rgba(225,29,72,.08);
}
.admin-brand-block h2 { margin: 0; line-height: 1; }
.admin-brand-block p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 6px 0 0;
}
.side-link { display: flex; align-items: center; gap: 10px; padding: 13px 14px; margin: 6px 0; border-radius: 12px; color: var(--muted); font-weight: 800; }
.side-link .admin-ui-svg,
.dashboard-actions .admin-ui-svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  max-width: 16px;
  flex: 0 0 16px;
}
.admin-ui-svg { width: 16px; height: 16px; flex: 0 0 auto; }
.side-link.active, .side-link:hover { color: var(--red); background: rgba(225,29,72,.1); }
.admin-main { padding: 34px; }
.admin-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 26px; }
.role-notice {
  border: 1px solid rgba(225,29,72,.22);
  background: rgba(225,29,72,.08);
  color: #ffe4e6;
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 22px;
  font-weight: 700;
}
.readonly-mode .inline-actions,
.readonly-mode .table th:last-child,
.readonly-mode .table td:last-child {
  display: none;
}
.readonly-form {
  position: relative;
}
.readonly-form::before {
  content: "Lecture seule";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.readonly-form .btn,
.readonly-form .file-button,
.readonly-form .icon-picker,
.readonly-form .admin-toolbox {
  display: none !important;
}
.grid-admin { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid #333; border-radius: 16px; background: #111; }
.table th, .table td { padding: 14px; border-bottom: 1px solid #2a2a2a; text-align: left; vertical-align: top; }
.table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.admin-sort-table th[data-sort] {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.admin-sort-table th[data-sort]::after {
  content: "↕";
  display: inline-block;
  margin-left: 8px;
  color: #64748b;
  font-size: 11px;
  letter-spacing: 0;
}
.admin-sort-table th[data-sort][aria-sort="ascending"]::after {
  content: "↑";
  color: var(--red2);
}
.admin-sort-table th[data-sort][aria-sort="descending"]::after {
  content: "↓";
  color: var(--red2);
}
.admin-sort-table th[data-sort]:hover {
  color: #fff;
}
.dragging-row {
  opacity: .55;
  outline: 1px solid var(--red);
  background: rgba(225,29,72,.08);
}
.drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  cursor: grab;
  font-weight: 900;
  letter-spacing: -4px;
  vertical-align: middle;
  user-select: none;
}
.drag-handle:active { cursor: grabbing; }
.sortable-list [data-order-id] { transition: transform .16s ease, border-color .16s ease; }
.saving-order { box-shadow: 0 0 0 2px rgba(225,29,72,.22); }
.order-error { box-shadow: 0 0 0 2px rgba(225,29,72,.34); }
.dashboard-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.dashboard-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dashboard-intro p,
.stat-card p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.dashboard-intro h2 {
  margin-top: 6px;
  font-size: clamp(30px, 4vw, 48px);
}
.stat-card h2 {
  font-size: 44px;
  margin: 12px 0 4px;
}
.stat-card span {
  color: var(--red2);
  font-weight: 900;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.dashboard-grid .wide-panel {
  grid-column: span 2;
}
.analytics-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.analytics-card {
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(225,29,72,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.analytics-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.analytics-card-head p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.analytics-card-head h3 {
  margin: 0;
  font-size: 24px;
}
.dashboard-grid h3 {
  margin-bottom: 16px;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.dash-row span { color: #d1d5db; }
.dash-row small { color: var(--muted); }
.dash-row strong { color: var(--red2); }
.dash-link { color: inherit; }
.dash-link:hover span { color: #fff; }
.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.bar-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.bar-item span {
  width: 100%;
  max-width: 34px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #fb7185, var(--red));
  box-shadow: 0 10px 24px rgba(225,29,72,.22);
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.chart-legend span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}
.chart-legend .legend-phone::before {
  background: #38bdf8;
}
.dual-chart {
  overflow-x: auto;
  align-items: stretch;
  padding-bottom: 8px;
}
.dual-bar {
  min-width: 34px;
}
.month-chart .dual-bar {
  min-width: 28px;
}
.bar-pair {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  height: 100%;
  width: 100%;
}
.bar-pair span {
  width: 10px;
  min-height: 4px;
  border-radius: 999px 999px 4px 4px;
}
.bar-pair .bar-message {
  background: linear-gradient(180deg, #fb7185, var(--red));
}
.bar-pair .bar-phone {
  background: linear-gradient(180deg, #7dd3fc, #0284c7);
  box-shadow: 0 10px 24px rgba(14,165,233,.18);
}
.analytics-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 16px;
}
.analytics-summary div {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.04);
}
.analytics-summary span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.analytics-summary strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
}
.activity-svg {
  display: block;
  width: 100%;
  min-width: 560px;
  height: auto;
  margin-top: 6px;
  overflow: visible;
}
.analytics-card-large {
  overflow-x: auto;
}
.chart-grid-line {
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}
.chart-bar {
  transition: opacity .18s ease, transform .18s ease;
  transform-origin: bottom;
}
.chart-group:hover .chart-bar {
  opacity: .72;
}
.chart-bar-message {
  fill: var(--red2);
  filter: drop-shadow(0 10px 16px rgba(225,29,72,.22));
}
.chart-bar-phone {
  fill: #38bdf8;
  filter: drop-shadow(0 10px 16px rgba(14,165,233,.18));
}
.chart-label {
  fill: #9ca3af;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-theme {
  background: #050505;
}
.dashboard-theme .admin-layout {
  background:
    radial-gradient(circle at 82% -10%, rgba(225,29,72,.20), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.dashboard-theme .sidebar {
  background: rgba(10, 10, 10, .96);
  border-color: rgba(255,255,255,.10);
  box-shadow: 18px 0 46px rgba(0,0,0,.34);
}
.dashboard-theme .admin-main {
  min-height: 100vh;
  padding: 34px 34px 56px;
  background:
    radial-gradient(circle at 74% 3%, rgba(225,29,72,.18), transparent 30%),
    linear-gradient(180deg, rgba(20,20,20,.86), rgba(5,5,5,.94));
}
.dashboard-theme .admin-head,
.dashboard-theme .dashboard-intro {
  max-width: 1420px;
}
.dashboard-theme .dashboard-intro h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
}
.dashboard-theme .dashboard-intro p {
  color: #fda4af;
}
.dashboard-theme .grid-admin {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  max-width: 1420px;
}
.dashboard-theme .panel {
  background:
    linear-gradient(180deg, rgba(24,24,27,.96), rgba(12,12,14,.96));
  border-color: rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
}
.dashboard-theme .stat-card {
  position: relative;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
}
.dashboard-theme .stat-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 26px 18px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}
.dashboard-theme .stat-card > i {
  position: absolute;
  left: 18px;
  bottom: 26px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #fb7185);
  box-shadow: 0 0 18px rgba(225,29,72,.24);
}
.stat-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.dashboard-theme .stat-card p {
  color: #cbd5e1;
  letter-spacing: .04em;
}
.dashboard-theme .stat-card h2 {
  margin: 18px 0 4px;
  color: #fff;
  font-size: 36px;
}
.dashboard-theme .stat-card span:not(.stat-bubble) {
  color: #fb7185;
}
.stat-bubble {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  box-shadow: 0 16px 34px rgba(251,47,109,.24);
}
.stat-card-1 .stat-bubble,
.stat-card-4 .stat-bubble { background: linear-gradient(135deg, #fb7185, #be123c); }
.stat-card-2 .stat-bubble,
.stat-card-5 .stat-bubble { background: linear-gradient(135deg, #be123c, #7f1d1d); }
.stat-bubble .admin-ui-svg {
  width: 20px;
  height: 20px;
}
.dashboard-theme .analytics-board {
  max-width: 1420px;
  grid-template-columns: 1.05fr .95fr;
}
.dashboard-theme .analytics-card {
  min-height: 430px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 0%, rgba(225,29,72,.16), transparent 30%),
    linear-gradient(180deg, rgba(24,24,27,.98), rgba(12,12,14,.98));
}
.dashboard-theme .analytics-card-head p {
  color: #fda4af;
}
.dashboard-theme .analytics-card-head h3 {
  color: #fff;
}
.dashboard-theme .analytics-summary div {
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
}
.dashboard-theme .analytics-summary span {
  color: #cbd5e1;
}
.dashboard-theme .chart-grid-line {
  stroke: rgba(255,255,255,.10);
}
.dashboard-theme .chart-bar-message {
  fill: #e11d48 !important;
  filter: drop-shadow(0 10px 18px rgba(251,47,109,.22));
}
.dashboard-theme .chart-bar-phone {
  fill: #fb7185 !important;
  filter: drop-shadow(0 10px 18px rgba(29,161,255,.2));
}
.dashboard-theme .chart-label {
  fill: #94a3b8;
}
.dashboard-theme .dashboard-grid {
  max-width: 1420px;
  grid-template-columns: .95fr 1.05fr;
}
@media (max-width: 1180px) {
  .dashboard-theme .admin-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .dashboard-theme .admin-main {
    padding: 26px;
  }
  .dashboard-theme .grid-admin {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-theme .analytics-board,
  .dashboard-theme .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .dashboard-theme .admin-layout {
    display: block;
  }
  .dashboard-theme .sidebar {
    position: static;
    height: auto;
    padding: 14px;
  }
  .dashboard-theme .sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .dashboard-theme .side-link {
    margin: 0;
    min-height: 42px;
    padding: 10px;
  }
  .dashboard-theme .admin-main {
    padding: 18px 14px 34px;
  }
  .dashboard-theme .admin-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }
  .dashboard-theme .dashboard-intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .dashboard-theme .dashboard-actions {
    width: 100%;
  }
  .dashboard-theme .dashboard-actions .btn {
    flex: 1;
    justify-content: center;
  }
  .dashboard-theme .grid-admin {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dashboard-theme .stat-card {
    min-height: 128px;
    padding: 18px;
  }
  .dashboard-theme .stat-card h2 {
    font-size: 30px;
    margin-top: 12px;
  }
  .dashboard-theme .analytics-card {
    min-height: auto;
    padding: 18px;
  }
  .dashboard-theme .analytics-card-head {
    display: block;
  }
  .dashboard-theme .chart-legend {
    margin-top: 12px;
  }
  .dashboard-theme .analytics-summary {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-theme .analytics-summary strong {
    font-size: 20px;
  }
  .dashboard-theme .activity-svg {
    min-width: 680px;
  }
  .dashboard-theme .analytics-card-large {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 520px) {
  .dashboard-theme .sidebar nav {
    grid-template-columns: 1fr;
  }
  .dashboard-theme .dashboard-intro h2 {
    font-size: 30px;
  }
  .dashboard-theme .analytics-summary {
    grid-template-columns: 1fr;
  }
  .dashboard-theme .activity-svg {
    min-width: 620px;
  }
}
.message-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.message-status.new { background: rgba(225,29,72,.16); color: #fecdd3; }
.message-status.read { background: rgba(59,130,246,.14); color: #bfdbfe; }
.message-status.archived { background: rgba(225,29,72,.12); color: #ffe4e6; }
.message-detail { margin-bottom: 18px; }
.message-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.message-detail-head h2 { margin: 10px 0 8px; }
.message-detail-head p,
.message-meta { color: var(--muted); }
.message-body {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.04);
  color: #f8fafc;
  line-height: 1.7;
}
.admin-message-page { background: #070707; color: #fff; }
.message-reader {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 70px;
}
.message-reader-hero {
  padding: 42px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.message-reader-hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: .96;
  margin: 16px 0 10px;
}
.message-reader-hero p,
.message-profile dt { color: var(--muted); }
.message-reader-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  margin-top: 30px;
}
.message-profile,
.message-reader-body {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: #111;
  padding: 24px;
}
.message-profile dl { display: grid; gap: 8px; margin: 18px 0; }
.message-profile dd { margin: 0 0 12px; overflow-wrap: anywhere; }
.message-reader-body div {
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.85;
  white-space: normal;
}
.form-card { background: #111; border: 1px solid #333; border-radius: 18px; padding: 20px; margin-bottom: 24px; }
.admin-secret-box {
  border: 1px solid rgba(225,29,72,.25);
  background: rgba(225,29,72,.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 18px;
}
.admin-secret-box strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}
.admin-secret-box a {
  display: inline-flex;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--red2);
  font-weight: 900;
}
.admin-secret-box p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 13px;
}
.product-admin-builder {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 18px;
  margin-top: 18px;
}
.admin-tab-options .product-admin-builder {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-top: 0;
}
[hidden] {
  display: none !important;
}
.option-setup-panel {
  margin: 14px 0 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.option-setup-panel > summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.option-setup-panel > summary::-webkit-details-marker {
  display: none;
}
.option-setup-panel > summary span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.option-setup-panel > summary small {
  max-width: 560px;
  color: #9fb0c3;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.options-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}
.workflow-step-card {
  position: relative;
  min-height: 96px;
  padding: 14px 14px 14px 54px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(225,29,72,.11), rgba(255,255,255,.035));
}
.workflow-step-card b {
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.workflow-step-card span,
.workflow-step-card small {
  display: block;
}
.workflow-step-card span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.workflow-step-card small {
  margin-top: 7px;
  color: #9fb0c3;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}
.option-scenario-help {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(1,105,111,.42);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(1,105,111,.18), rgba(255,255,255,.035));
}
.option-scenario-help strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.option-scenario-help ol {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
}
.option-scenario-help li {
  color: #b7c7d7;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}
.option-scenario-help b {
  color: #fff;
  font-weight: 700;
}
.option-focus-card {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.option-focus-card label,
.condition-picker {
  display: grid;
  gap: 7px;
  color: #9fb0c3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.option-focus-card select,
.condition-picker select {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}
.option-focus-card p {
  margin: 0;
  color: #9fb0c3;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}
.product-admin-builder-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.product-admin-builder-head span {
  color: var(--red2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-admin-builder-head h3 {
  margin: 6px 0 0;
  font-size: 22px;
}
.product-admin-builder-head p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.option-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.option-admin-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: #151515;
  padding: 16px;
}
.option-admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.option-admin-card h4 {
  margin: 0;
  color: #fff;
  font-size: 17px;
}
.option-admin-card label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.option-admin-card input {
  width: 76px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #101010;
  color: #fff;
  padding: 9px;
}
.option-admin-card textarea {
  width: 100%;
  min-height: 112px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #101010;
  color: #fff;
  padding: 12px;
  resize: vertical;
}
.option-admin-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}
.option-items-builder {
  display: grid;
  gap: 10px;
}
.option-items-head,
.option-item-row {
  display: grid;
  grid-template-columns: 34px minmax(160px, .8fr) minmax(260px, 1fr) 110px 96px auto;
  gap: 10px;
  align-items: center;
}
.option-items-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.option-items-head::before {
  content: "";
}
.option-item-row {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: transparent;
}
.option-item-row:last-child {
  border-bottom: 0;
}
.option-item-row.dragging-row {
  opacity: .55;
}
.option-item-drag-handle {
  width: 28px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #9fb0c3;
  cursor: grab;
  font-weight: 900;
  line-height: 1;
}
.option-item-drag-handle:active {
  cursor: grabbing;
}
.option-item-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 800;
}
.option-item-row select {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
}
.option-item-media-field {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
}
.option-item-image-picker {
  display: inline-grid !important;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.option-item-image-picker:hover {
  border-color: rgba(225,29,72,.55);
  background: rgba(225,29,72,.12);
  transform: translateY(-1px);
}
.option-item-image-picker input {
  display: none;
}
.option-item-image-picker span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  color: var(--red2);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.option-item-image-picker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.condition-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}
.condition-choice-list label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.condition-choice-list p {
  margin: 0;
  color: var(--muted);
}
.option-matrix-builder {
  margin-top: 24px;
  overflow: hidden;
}
.option-matrix-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
}
.option-matrix-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: #151515;
  padding: 16px;
}
.option-matrix-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.option-matrix-card h4,
.option-simulation h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.option-matrix-card small,
.option-simulation small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}
.option-matrix-scroll {
  overflow: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  max-height: 560px;
}
.option-matrix-table {
  min-width: 900px;
  border: 0;
  border-radius: 0;
}
.option-matrix-table th,
.option-matrix-table td {
  border-color: rgba(255,255,255,.08);
  vertical-align: middle;
}
.option-matrix-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #191919;
  color: #cbd5e1;
  text-align: center;
}
.option-matrix-table th:first-child,
.option-matrix-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  min-width: 230px;
  background: #151515;
  text-align: left;
}
.option-matrix-table th:first-child {
  z-index: 4;
  background: #191919;
}
.option-matrix-table td:first-child strong,
.option-matrix-table td:first-child span,
.option-matrix-table td:first-child small {
  display: block;
}
.option-matrix-table td:first-child strong {
  color: var(--red2);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.option-matrix-table td:first-child span {
  margin-top: 4px;
  color: #fff;
  font-weight: 900;
}
.option-matrix-table td:first-child small {
  margin-top: 3px;
  color: var(--muted);
}
.option-matrix-table tr:hover td {
  background: rgba(255,255,255,.035);
}
.option-matrix-table .matrix-col-hover {
  background: rgba(225,29,72,.10) !important;
}
.matrix-bulk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.matrix-check {
  display: inline-grid;
  place-items: center;
}
.matrix-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.matrix-check span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  background: rgba(255,255,255,.06);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.matrix-check input:checked + span {
  background: #01696f;
  border-color: #35b8bd;
  box-shadow: inset 0 0 0 9px #01696f, inset 0 0 0 11px #fff;
}
.matrix-check input:focus-visible + span {
  outline: 2px solid #35b8bd;
  outline-offset: 2px;
}
.matrix-check:hover span {
  transform: scale(1.05);
}
.matrix-group-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.matrix-bulk-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #cbd5e1;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.matrix-bulk-chip input {
  width: 13px;
  height: 13px;
  accent-color: #01696f;
}
.matrix-bulk-chip span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.matrix-bulk-chip small {
  color: #8ea0b3;
  font-size: 10px;
  font-weight: 400;
}
.matrix-bulk-chip.matrix-col-hover,
.matrix-bulk-chip:hover {
  border-color: rgba(53,184,189,.45);
  background: rgba(1,105,111,.22);
  color: #fff;
}
.option-assignment-board {
  display: grid;
  gap: 8px;
  max-height: none;
  overflow: visible;
}
.assignment-row {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  transition: background .18s ease, border-color .18s ease;
}
.assignment-row:hover {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
}
.assignment-label em,
.assignment-label strong,
.assignment-label small {
  display: block;
}
.assignment-label em {
  margin-bottom: 3px;
  color: var(--red2);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.assignment-label strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.assignment-label small {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}
.assignment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.matrix-chip {
  display: inline-flex;
  place-items: initial;
  cursor: pointer;
}
.matrix-chip span {
  width: auto;
  height: auto;
  min-height: 32px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #aab8c6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: none;
}
.matrix-chip input:checked + span {
  background: #01696f;
  border-color: #35b8bd;
  color: #fff;
  box-shadow: 0 8px 22px rgba(1,105,111,.22);
}
.matrix-chip:hover span {
  transform: translateY(-1px);
}
.matrix-chip.matrix-col-hover span {
  border-color: rgba(53,184,189,.45);
  background: rgba(1,105,111,.18);
}
.matrix-chip.matrix-col-hover input:checked + span {
  background: #017f87;
}
.option-condition-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  max-height: none;
  overflow: visible;
}
.condition-rule {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  padding: 12px;
}
.condition-rule summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}
.condition-rule summary::-webkit-details-marker {
  display: none;
}
.condition-rule summary em {
  color: var(--red2);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.condition-rule summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.condition-rule summary .drag-handle {
  flex: 0 0 auto;
  margin: 0;
  font-style: normal;
}
.condition-rule summary .order-number {
  margin-left: auto;
  color: #8ea0b3;
  font-size: 10px;
  font-weight: 500;
}
.condition-sentence {
  margin-top: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(1,105,111,.12);
}
.condition-sentence b,
.condition-sentence small {
  display: block;
}
.condition-sentence b {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.condition-sentence b span {
  color: #67e8f9;
}
.condition-sentence small {
  margin-top: 3px;
  color: #9fb0c3;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}
.condition-rule label.condition-field {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.condition-choice-title {
  margin: 12px 0 0;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
}
.condition-rule select,
.option-simulation select {
  min-height: 42px;
  color: #f8fafc;
  background: #111;
  font-size: 13px;
  font-weight: 500;
}
.condition-rule select option,
.option-simulation select option,
.field select option {
  color: #f8fafc;
  background: #111;
}
.option-simulation {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(240px, .4fr);
  gap: 14px;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: #151515;
  padding: 16px;
}
.simulation-groups {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.simulation-groups span {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  padding: 8px 10px;
}
.simulation-groups strong,
.simulation-groups small {
  display: block;
}
.simulation-groups strong {
  font-size: 12px;
  font-weight: 600;
}
.simulation-groups small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 400;
}
.simulation-groups p {
  margin: 0;
  color: var(--muted);
}
.admin-section-title {
  margin: 24px 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.admin-helper-text {
  margin: -6px 0 12px;
  color: #9fb0c3;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}
.admin-setting-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  padding: 16px;
}
.admin-setting-switch span {
  display: grid;
  gap: 5px;
}
.admin-setting-switch strong {
  color: #fff;
  font-size: 15px;
}
.admin-setting-switch small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.admin-setting-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.admin-setting-switch i {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .18s ease, border-color .18s ease;
}
.admin-setting-switch i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  transition: transform .18s ease;
}
.admin-setting-switch input:checked + i {
  background: var(--red);
  border-color: var(--red);
}
.admin-setting-switch input:checked + i::after {
  transform: translateX(26px);
}
.admin-setting-switch:focus-within {
  outline: 2px solid var(--red2);
  outline-offset: 3px;
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.field label { display: block; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; color: #fff; background: #1a1a1a; border: 1px solid #333; border-radius: 12px; padding: 12px; outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.product-option-stack {
  display: grid;
  align-content: start;
  gap: 11px;
}
.product-option-stack > label:first-child {
  margin-bottom: 0;
}
.product-option-stack > label:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.product-option-stack input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}
.product-option-stack small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}
.google-reviews-builder > textarea[hidden] {
  display: none;
}
.google-review-admin-list {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
.google-review-admin-row {
  display: grid;
  grid-template-columns: auto minmax(150px, .8fr) 130px 160px minmax(260px, 1.5fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.google-review-drag-handle {
  width: 36px;
  min-height: 46px;
  padding: 0;
}
.google-review-admin-row textarea {
  min-height: 48px;
}
.google-review-admin-row .btn {
  margin: 0;
  min-height: 46px;
}
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.editor-toolbar button {
  border: 1px solid #333;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  min-width: 42px;
  height: 40px;
  padding: 0 11px;
  cursor: pointer;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.editor-select,
.editor-color {
  min-height: 40px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}
.editor-color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.editor-color input {
  width: 28px;
  height: 26px;
  border: 0;
  padding: 0;
  background: transparent;
}
.editor-toolbar button:hover,
.editor-select:hover,
.editor-color:hover { border-color: var(--red); background: rgba(225,29,72,.12); }
.editor-toolbar button.is-active {
  border-color: var(--red2);
  background: rgba(225,29,72,.24);
  box-shadow: 0 0 0 1px rgba(225,29,72,.18), 0 10px 24px rgba(225,29,72,.18);
  color: #fff;
}
.editor-toolbar button:focus-visible,
.editor-select:focus-visible,
.editor-color:focus-within {
  outline: 2px solid var(--red2);
  outline-offset: 2px;
}
.rich-editor {
  min-height: 260px;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 16px;
  line-height: 1.7;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.rich-editor:focus {
  border-color: var(--red2);
  box-shadow: 0 0 0 3px rgba(225,29,72,.16);
}
.product-rich-editor {
  min-height: 150px;
}
.rich-editor h2 { font-size: 28px; margin: 18px 0 10px; }
.rich-editor p { margin: 0 0 12px; }
.rich-editor p:last-child { margin-bottom: 0; }
.rich-editor ul,
.rich-editor ol {
  margin: 10px 0 10px 24px;
  padding-left: 20px;
}
.rich-editor ul { list-style: disc outside; }
.rich-editor ol { list-style: decimal outside; }
.rich-editor li {
  display: list-item;
  margin: 4px 0;
  padding-left: 2px;
}
.rich-editor img,
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 18px 0;
  display: block;
}
.rich-editor img[data-uploading="1"] {
  opacity: .55;
  outline: 2px dashed var(--red);
}
.admin-tab-articles main > .form-card {
  position: relative;
  padding: 22px;
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 95% 0%, rgba(225,29,72,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
    #111;
}
.admin-tab-articles main > .form-card::before {
  content: "Edition article";
  display: block;
  margin-bottom: 16px;
  color: var(--red2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.admin-tab-articles main > .form-card .form-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  grid-template-areas:
    "title image"
    "slug image"
    "status audio"
    "layout audio"
    "featured audio";
  gap: 16px 18px;
  align-items: start;
}
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(1) { grid-area: title; }
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(2) { grid-area: slug; }
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(3) { grid-area: image; }
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(4) { grid-area: audio; }
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(5) { grid-area: status; }
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(6) { grid-area: layout; }
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(7) { grid-area: featured; }
.admin-tab-articles main > .form-card .image-field,
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(4),
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(7) {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(7) {
  min-height: 84px;
  display: grid;
  align-content: center;
}
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(7) > label:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(225,29,72,.28);
  border-radius: 14px;
  background: rgba(225,29,72,.10);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.admin-tab-articles main > .form-card .form-grid > .field:nth-child(7) input {
  width: auto;
}
.admin-tab-articles main > .form-card > .field:not(.rich-field) {
  margin-top: 18px !important;
}
.admin-tab-articles main > .form-card > .field:not(.rich-field) textarea {
  min-height: 92px;
  background: rgba(255,255,255,.045);
}
.admin-tab-articles main > .form-card .rich-field {
  margin-top: 18px !important;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.admin-tab-articles main > .form-card .editor-toolbar {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(12,12,12,.96);
}
.admin-tab-articles main > .form-card .editor-toolbar button {
  height: 36px;
  min-width: 38px;
  border-radius: 9px;
  background: #222;
}
.admin-tab-articles main > .form-card .rich-editor {
  min-height: 340px;
  border-radius: 16px;
  background: #151515;
}
.admin-tab-articles main > .form-card > .btn {
  margin-top: 18px !important;
  min-width: 118px;
}
.field small { display: block; margin-top: 8px; color: #777; font-size: 12px; font-weight: 700; }
.admin-toolbox {
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.admin-toolbox summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.admin-toolbox summary::-webkit-details-marker { display: none; }
.admin-toolbox summary span {
  color: var(--red2);
  transition: transform .2s ease;
}
.admin-toolbox[open] summary span { transform: rotate(180deg); }
.admin-toolbox .file-button,
.admin-toolbox .icon-picker,
.admin-toolbox small,
.admin-toolbox .image-preview {
  margin-left: 12px;
  margin-right: 12px;
}
.admin-toolbox .icon-picker {
  padding: 0 0 12px;
}
.admin-toolbox small {
  margin-bottom: 12px;
}
.btn { border: 0; border-radius: 12px; padding: 12px 15px; font-weight: 900; cursor: pointer; color: #fff; background: var(--red); }
.btn.secondary { background: #2b2b2b; }
.btn.danger { background: #991b1b; }
.inline-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.login-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-box { width: min(430px, 100%); background: #111; border: 1px solid #333; border-radius: 18px; padding: 34px; }
.login-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}
.login-actions a,
.reset-dev-link a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.reset-dev-link {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(225,29,72,.28);
  border-radius: 14px;
  background: rgba(225,29,72,.10);
}
.file-button {
  margin-top: 10px;
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #2b2b2b;
  color: #fff !important;
  padding: 11px 14px;
  cursor: pointer;
}
.file-button input { display: none; }
.media-clear {
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 10px 0 0 !important;
  padding: 9px 11px;
  border: 1px solid rgba(225,29,72,.28);
  border-radius: 12px;
  background: rgba(225,29,72,.08);
  color: #fecdd3 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.media-clear input {
  width: 15px !important;
  height: 15px;
  accent-color: var(--red);
}
.image-preview {
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #333;
  margin-top: 12px;
}
.icon-picker {
  display: grid;
  grid-template-columns: repeat(6, 38px);
  gap: 7px;
  margin-top: 10px;
}
.icon-choice {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
.icon-choice:hover { border-color: var(--red); background: rgba(225,29,72,.12); }
.admin-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.admin-icon-label svg {
  width: 22px;
  height: 22px;
}
.blog-page, .article-page { padding: 130px 0 70px; }
.contact-page { padding: 130px 0 70px; }
.contact-hero {
  max-width: 860px;
  margin-bottom: 34px;
}
.contact-hero .badge {
  gap: 8px;
  margin-bottom: 18px;
}
.contact-hero .badge svg { width: 18px; height: 18px; }
.contact-hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: .98;
  text-transform: uppercase;
}
.contact-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 18px 0 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 22px;
  align-items: start;
}
.contact-form,
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #111;
  padding: 22px;
}
.form-title,
.contact-info-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  margin: 0 0 18px;
}
.form-title svg,
.contact-info-card h2 svg,
.contact-alert svg {
  width: 21px;
  height: 21px;
  color: var(--red2);
}
.contact-status-card.open {
  border-color: rgba(34,197,94,.36);
  background: rgba(34,197,94,.12);
}
.contact-status-card.open h2,
.contact-status-card.open h2 svg {
  color: #86efac;
}
.contact-status-card.closed {
  border-color: rgba(225,29,72,.28);
  background: rgba(225,29,72,.08);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #333;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  padding: 13px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,72,.12);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  padding: 14px 20px;
  margin-top: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(225,29,72,.24);
}
.contact-submit svg { width: 19px; height: 19px; }
.contact-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 13px 14px;
  margin-bottom: 16px;
  font-weight: 800;
}
.contact-alert.success { color: #ffe4e6; background: rgba(225,29,72,.1); border: 1px solid rgba(225,29,72,.24); }
.contact-alert.error { color: #ffe4e6; background: rgba(225,29,72,.12); border: 1px solid rgba(225,29,72,.26); }
.contact-side {
  display: grid;
  gap: 16px;
}
.contact-info-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 10px;
}
.contact-info-card p svg {
  width: 18px;
  height: 18px;
  color: var(--red2);
  display: inline-block;
  vertical-align: -4px;
  margin-right: 8px;
}
.contact-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.faq-list details {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.faq-list details:first-child { border-top: 0; padding-top: 0; }
.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}
.faq-list p {
  margin-top: 10px;
}
.blog-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.blog-head h1, .article-page h1 { font-size: clamp(42px, 7vw, 76px); }
.blog-head p, .article-date { color: var(--muted); }
.blog-switch { display: flex; gap: 8px; }
.blog-switch a, .pagination a, .article-share a, .article-share button, .back-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 10px 13px;
  font-weight: 900;
}
.blog-switch a.active, .pagination a.active { background: var(--red); border-color: var(--red); }
.article-list.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.article-list.list { display: grid; gap: 18px; }
.article-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #111;
  overflow: hidden;
}
.article-list.list .article-card { display: grid; grid-template-columns: 260px 1fr; }
.article-card img {
  display: block;
  width: 100%;
  height: 210px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.article-list.list .article-card img {
  height: 220px;
  min-height: 220px;
}
.article-card div { padding: 20px; }
.article-card span { color: var(--red2); font-size: 12px; font-weight: 900; }
.article-card h2 { margin-top: 10px; font-size: 25px; }
.article-card p { color: var(--muted); line-height: 1.6; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.article-hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: #000;
}
.article-hero-media {
  position: absolute;
  inset: 0 12vw;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}
.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.72) 14%, rgba(5,5,5,.18) 32%, transparent 50%, rgba(5,5,5,.18) 68%, rgba(5,5,5,.72) 86%, #050505 100%),
              linear-gradient(180deg, #050505 0%, transparent 22%, #050505 100%);
}
.article-hero-content {
  position: relative;
  z-index: 4;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 6px;
}
.article-hero h1 {
  font-size: clamp(46px, 7vw, 76px);
  line-height: .96;
  margin: 18px 0;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 12px 34px rgba(0,0,0,.42);
}
.article-back-link {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.article-body-page { padding: 46px 0 78px; }
.article-hero-img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 22px; margin: 26px 0; }
.article-audio { width: 100%; margin: 0 0 22px; }
.article-share { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.article-share.icon-only a,
.article-share.icon-only button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit, Inter, sans-serif;
  font-size: 18px;
  line-height: 1;
}
.article-share.icon-only .share-facebook { background: #1877f2; border-color: #1877f2; }
.article-share.icon-only .share-whatsapp { background: #25d366; border-color: #25d366; color: #07150b; }
.article-share.icon-only .share-copy { background: rgba(255,255,255,.08); }
.article-share button { cursor: pointer; }
.article-content { color: #e5e7eb; line-height: 1.85; font-size: 18px; max-width: 860px; }
.detail-content-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  margin: 0 0 22px;
  text-transform: uppercase;
  color: #fff;
}
.article-content h2 { margin-top: 30px; }
.article-content ul,
.article-content ol {
  margin: 16px 0 16px 28px;
  padding-left: 22px;
}
.article-content ul { list-style: disc outside; }
.article-content ol { list-style: decimal outside; }
.article-content li { display: list-item; margin: 6px 0; }
.empty-state-page {
  min-height: calc(100vh - 250px);
  display: grid;
  place-items: center;
  padding: 150px 0 90px;
}
.empty-state-card {
  position: relative;
  display: block;
  width: min(860px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(225,29,72,.28), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.wrap.empty-state-page > .empty-state-card {
  margin: 0 auto;
}
.empty-state-card > * {
  position: relative;
  z-index: 1;
}
.empty-state-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% 36%;
  height: 280px;
  background: radial-gradient(circle, rgba(251,113,133,.18), transparent 62%);
  pointer-events: none;
}
.empty-state-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(225,29,72,.14);
  color: var(--red2);
}
.empty-state-icon svg {
  width: 27px;
  height: 27px;
}
.empty-state-code {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
}
.empty-state-card h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .92;
  text-transform: uppercase;
}
.empty-state-card p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}
.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.empty-state-actions.compact {
  justify-content: center;
  margin-top: 18px;
}
.empty-state-hints {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #d1d5db;
}
.empty-state-hints span {
  color: var(--red2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.empty-state-hints strong {
  max-width: 580px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.product-hero .badge {
  gap: 9px;
  width: fit-content;
}
.product-hero {
  min-height: 680px;
}
.product-hero .article-hero-media {
  inset: 0 8vw;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
}
.product-hero .article-hero-media img {
  filter: brightness(1.14) contrast(1.08) saturate(1.08);
}
.product-hero::after {
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.72) 12%, rgba(5,5,5,.2) 30%, rgba(5,5,5,.05) 50%, rgba(5,5,5,.2) 70%, rgba(5,5,5,.72) 88%, #050505 100%),
              linear-gradient(180deg, rgba(5,5,5,.62) 0%, rgba(5,5,5,.02) 30%, rgba(5,5,5,.42) 100%);
}
.product-hero .hero-copy {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.product-hero .article-hero-content {
  min-height: 680px;
}
.product-hero .badge {
  box-shadow: 0 14px 34px rgba(225,29,72,.28);
}
.product-hero h1 {
  text-shadow: 0 8px 24px rgba(0,0,0,.78), 0 0 1px rgba(255,255,255,.3);
}
.product-detail-body {
  padding: 46px 0 78px;
}
.product-detail-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.product-detail-intro p {
  max-width: 780px;
  color: #e5e7eb;
  line-height: 1.85;
  font-size: 19px;
  margin: 0;
}
.product-detail-intro strong {
  white-space: nowrap;
  font: 900 34px Outfit, sans-serif;
  color: #fff;
}
.product-detail-intro span {
  display: block;
  color: #6b7280;
  text-decoration: line-through;
  margin-top: 6px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.product-detail-section {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}
.product-detail-section h2 {
  margin: 0 0 16px;
  font-size: 19px;
}
.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail-tags span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255,255,255,.05);
  color: #e5e7eb;
  font-weight: 800;
}
.product-order-page {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .55fr);
  gap: 34px;
  padding: 46px 0 78px;
  background: #050505;
  color: #fff;
}
.product-order-panel {
  background: #fff;
  color: var(--warm-ink);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  align-self: start;
  box-shadow: 0 24px 70px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.10);
}
.unavailable-product-badge {
  margin-left: 8px;
  background: linear-gradient(135deg, #991b1b, #fb7185);
}
.product-unavailable-panel {
  padding: 32px;
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(225,29,72,.12), transparent 55%),
    #fff;
}
.product-unavailable-panel strong {
  color: #991b1b;
  font: 850 24px Outfit, sans-serif;
}
.product-unavailable-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  max-width: 360px;
}
.product-order-info {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}
.product-order-info h2 {
  margin: 0 0 14px;
}
.product-order-info p,
.product-order-description {
  color: #e5e7eb;
  line-height: 1.85;
  font-size: 19px;
}
.product-order-description h2,
.product-order-description h3 {
  font-size: 28px;
  margin: 0 0 12px;
}
.product-order-description p,
.product-order-description div {
  margin: 0 0 12px;
}
.product-order-price {
  display: inline-block;
  margin-top: 12px;
  font: 900 34px Outfit, sans-serif;
}
.product-order-price span {
  display: block;
  color: #6b7280;
  text-decoration: line-through;
  margin-top: 4px;
  font-size: 16px;
}
.product-order-form {
  max-height: calc(100vh - 112px);
  overflow: auto;
}
.product-choice-section {
  border-top: 1px solid #e6e8ec;
  padding: 0;
}
.product-stepper-form .product-choice-section {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.product-stepper-form .product-choice-section.product-wizard-step-hidden {
  display: none;
}
.product-choice-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 14px 24px;
  text-align: left;
  cursor: pointer;
}
.product-choice-toggle:focus-visible {
  outline: 2px solid rgba(225, 29, 72, .32);
  outline-offset: -2px;
}
.product-choice-toggle:hover {
  background: rgba(225, 29, 72, .03);
}
.product-choice-toggle h2 {
  margin: 0;
  color: #18181b;
  font-size: 14px;
  font-weight: 600;
}
.choice-required-star {
  display: inline-block;
  margin-left: 5px;
  color: var(--red);
  font-weight: 700;
}
.product-choice-toggle p {
  margin: 4px 0 0;
  color: var(--warm-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.product-choice-toggle > strong {
  border-radius: 999px;
  background: #f3f4f6;
  color: #667085;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.product-choice-toggle > strong.has-choice {
  background: rgba(225, 29, 72, .12);
  color: var(--red);
}
.product-choice-toggle i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  transition: transform .18s ease;
  box-shadow: 0 10px 24px rgba(225, 29, 72, .28);
}
.product-choice-toggle i svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-choice-section.is-open .product-choice-toggle i {
  transform: rotate(180deg);
}
.product-choice-content {
  padding: 0 24px 16px;
}
.choice-error {
  margin: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #be123c;
  padding: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-choice-section.choice-invalid .product-choice-toggle {
  background: #fff1f2;
}
.product-choice-section.choice-invalid .product-choice-toggle > strong {
  background: rgba(225, 29, 72, .14);
  color: var(--red);
}
.product-choice-list {
  display: grid;
  gap: 7px;
}
.choice-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}
.product-choice-list label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-width: 0;
}
.product-choice-list label:has(.choice-thumb:not(.choice-thumb-empty)) {
  grid-template-columns: 38px minmax(0, 1fr) auto auto;
}
.choice-row label {
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr);
  pointer-events: none;
}
.choice-row label:has(.choice-thumb:not(.choice-thumb-empty)) {
  grid-template-columns: 36px minmax(0, 1fr);
}
.product-choice-list input {
  order: 4;
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}
.choice-row input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.choice-thumb {
  order: 1;
  width: 38px;
  height: 38px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  flex: 0 0 auto;
}
.choice-thumb-empty {
  display: none;
  background: transparent;
}
.choice-copy {
  order: 2;
  display: grid;
  gap: 2px;
  min-width: 0;
}
.choice-copy strong {
  color: #20232a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.choice-copy small {
  color: #64748b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.choice-price {
  order: 3;
  justify-self: end;
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}
.choice-row > .choice-price {
  grid-column: 3;
}
.product-choice-list label > .choice-price {
  grid-column: auto;
  justify-self: end;
  margin-top: 0;
}
.product-choice-list label.choice-disabled {
  opacity: .34;
  cursor: not-allowed;
}
.product-choice-list label.choice-disabled .choice-copy strong,
.product-choice-list label.choice-disabled .choice-copy small {
  color: #71717a;
}
.choice-row.choice-disabled {
  opacity: .45;
}
.choice-row.choice-selected .choice-repeat {
  border-color: rgba(225, 29, 72, .34);
  background: rgba(225, 29, 72, .08);
}
.choice-required-legend {
  margin: 0;
  padding: 11px 26px 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
}
.choice-required-legend span {
  color: var(--red);
  font-weight: 700;
}
.choice-repeat {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
}
.choice-repeat button {
  min-width: 24px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  cursor: pointer;
}
.choice-row:not(.choice-selected) .choice-repeat {
  border-color: transparent;
  background: transparent;
  padding: 0;
}
.choice-row:not(.choice-selected) .choice-repeat [data-choice-minus],
.choice-row:not(.choice-selected) .choice-repeat [data-choice-counter] {
  display: none;
}
.choice-row:not(.choice-selected) .choice-repeat [data-choice-plus] {
  background: #e5e7eb;
  color: #111827;
}
.choice-repeat button:disabled {
  opacity: .32;
  cursor: not-allowed;
}
.choice-repeat strong {
  min-width: 12px;
  text-align: center;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
}
.product-stepper-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 8;
  padding: 10px 12px;
  border-bottom: 1px solid #e6e8ec;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}
.product-stepper-nav button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
}
.product-stepper-nav button:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.product-stepper-nav button:not(:disabled):last-child {
  border-color: rgba(225, 29, 72, .22);
  background: rgba(225, 29, 72, .09);
  color: var(--red);
}
.product-stepper-nav svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-stepper-nav strong {
  order: -1;
  margin-right: auto;
  min-width: 0;
  text-align: center;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}
.product-stepper-form:not(.is-final-step) .product-order-bar {
  display: none;
}
.product-order-bar {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -18px 30px rgba(0,0,0,.08);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-control button,
.qty-control input {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  text-align: center;
  font-weight: 900;
}
.qty-control input {
  background: transparent;
  font-size: 18px;
}
.product-order-bar .btn {
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}
.product-order-bar .btn span {
  display: inline-block;
  margin-left: 8px;
}
.product-order-bar .btn span.price-pulse {
  animation: pricePulse .34s ease;
}
@keyframes pricePulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.12); color: #fff7ed; }
  100% { transform: scale(1); }
}
.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(225,29,72,.34);
  cursor: pointer;
}
.cart-fab span {
  display: inline-flex;
  justify-content: center;
  min-width: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(460px, 100%);
  height: 100vh;
  background: #101010;
  border-left: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  overflow: auto;
  box-shadow: -18px 0 50px rgba(0,0,0,.45);
}
.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.cart-head h2 { margin: 0 0 3px; font-size: 16px; }
.cart-head p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.cart-head button,
.cart-item button {
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 7px 10px;
  cursor: pointer;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.cart-item > div {
  flex: 1;
  min-width: 0;
}
.cart-item > div > strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}
.cart-item small,
.cart-item em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.cart-option-group {
  display: grid;
  gap: 5px;
  padding: 4px 0 2px;
}
.cart-item > div > strong + .cart-option-group {
  padding-top: 3px;
}
.cart-option-group > strong {
  color: #e5e7eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}
.cart-option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  color: #cbd5e1;
}
.cart-option-row span {
  min-width: 0;
  font-size: 13px;
  line-height: 1.3;
}
.cart-option-row em {
  display: inline;
  margin: 0 0 0 4px;
  color: #fb7185;
  font-size: 10px;
  font-weight: 700;
}
.cart-option-row button {
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 999px;
  background: rgba(225,29,72,.18);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.cart-option-row button:hover {
  background: var(--red);
}
.cart-item > button[data-remove-cart] {
  align-self: stretch;
  min-width: 74px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  font-size: 13px;
}
.cart-empty { color: var(--muted); margin: 20px 0; }
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 13px 0;
  margin-top: 6px;
  font-size: 14px;
}
.cart-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.cart-continue:hover {
  border-color: rgba(251,113,133,.42);
  background: rgba(225,29,72,.14);
}
.cart-call { width: 100%; margin-top: 12px; min-height: 44px; padding: 11px 14px; font-size: 14px; }
.cart-call,
.cart-call:visited {
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
}
.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #fb7185);
  color: #fff;
  box-shadow: 0 18px 34px rgba(225,29,72,.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.94);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top-button:hover {
  box-shadow: 0 22px 42px rgba(225,29,72,.38);
  transform: translateY(-2px) scale(1.02);
}
.scroll-top-button svg {
  width: 20px;
  height: 20px;
}
@supports selector(body:has(.cart-fab:not([hidden]))) {
  body:has(.cart-fab:not([hidden])) .scroll-top-button:not(.admin-scroll-top) {
    bottom: 88px;
  }
}
@media (max-width: 900px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px 44px;
    gap: 10px;
    min-height: 68px;
  }
  .public-theme-toggle {
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
    width: 42px;
    height: 42px;
  }
  .brand {
    justify-self: start;
    width: max-content;
  }
  .links { display: none; }
  .mobile-menu-button {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  .topbar.mobile-open .mobile-menu { display: block; }
  .brand strong { font-size: 23px; }
  .brand small { font-size: 8px; }
  .main-grid, .admin-layout { grid-template-columns: 1fr; }
  .product-admin-builder-head { display: block; }
  .options-workflow { grid-template-columns: 1fr 1fr; }
  .option-admin-grid { grid-template-columns: 1fr; }
  .option-matrix-layout { grid-template-columns: 1fr; }
  .option-condition-panel { max-height: none; overflow: visible; }
  .assignment-row { grid-template-columns: 1fr; }
  .assignment-options { gap: 6px; }
  .matrix-chip span { font-size: 10px; padding: 6px 8px; }
  .admin-tab-articles main > .form-card .form-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "slug"
      "image"
      "audio"
      "status"
      "layout"
      "featured";
  }
  .admin-tab-articles main > .form-card {
    padding: 16px;
  }
  .admin-tab-articles main > .form-card .rich-field {
    padding: 12px;
  }
  .admin-tab-articles main > .form-card .rich-editor {
    min-height: 280px;
  }
  .google-review-admin-row {
    grid-template-columns: 1fr;
  }
  .cat-bar { display: none; }
  .products { grid-template-columns: 1fr; }
  .dashboard-intro { align-items: flex-start; flex-direction: column; }
  .analytics-board { grid-template-columns: 1fr; }
  .analytics-card-head { display: block; }
  .analytics-card-head .chart-legend { margin-top: 12px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-grid .wide-panel { grid-column: auto; }
  .analytics-summary { grid-template-columns: 1fr 1fr; }
  .contact-layout, .contact-extra-grid, .contact-form-grid { grid-template-columns: 1fr; }
  .blog-head { align-items: start; flex-direction: column; }
  .article-list.grid, .article-list.list, .article-list.list .article-card { grid-template-columns: 1fr; }
  .empty-state-page {
    min-height: calc(100vh - 190px);
    padding: 118px 0 56px;
    place-items: start center;
  }
  .empty-state-card {
    border-radius: 22px;
    padding: 28px 22px;
  }
  .empty-state-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 16px;
  }
  .empty-state-card h1 {
    font-size: clamp(40px, 14vw, 58px);
  }
  .empty-state-card p {
    font-size: 15px;
  }
  .empty-state-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 0;
    height: clamp(300px, 70vw, 390px);
    aspect-ratio: auto;
  }
  .hero-content {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
  .article-hero,
  .product-hero {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .article-hero-content {
    min-height: 0;
  }
  .hero-content {
    align-items: flex-end;
    justify-content: center;
    padding: 0 14px 34px;
    text-align: center;
  }
  .article-hero-content {
    position: absolute;
    inset: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 0 14px 6px;
    text-align: center;
  }
  .hero-copy {
    width: min(100%, 420px);
    margin: 0 auto;
  }
  .hero h1,
  .article-hero h1 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.02;
    margin: 8px 0 6px;
  }
  .hero p {
    max-width: 360px;
    margin: 0 auto 8px;
    font-size: 12px;
    line-height: 1.35;
  }
  .badge {
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .hero-click-hint,
  .hero-promo-button {
    margin: 16px auto 0;
    padding: 12px 16px;
    font-size: 11px;
  }
  .article-hero .badge,
  .product-hero .badge {
    margin-left: auto;
    margin-right: auto;
  }
  .slide-media,
  .article-hero-media {
    inset: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .slide-media img,
  .article-hero-media img {
    object-fit: contain;
    object-position: center center;
  }
  .slide-media img {
    object-fit: cover;
    object-position: center 58%;
  }
  .slide::after,
  .article-hero::after {
    background: linear-gradient(180deg, rgba(5,5,5,.04) 0%, rgba(5,5,5,.08) 55%, rgba(5,5,5,.42) 100%);
  }
  .hero-dots {
    bottom: 8px;
  }
  .product-hero { min-height: 0; }
  .product-hero .article-hero-media {
    inset: 0;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .product-hero .article-hero-media img {
    object-fit: contain;
    object-position: center center;
  }
  .product-hero .article-hero-content {
    display: flex;
    align-items: flex-end;
    text-align: center;
    justify-content: center;
    min-height: 0;
    padding-bottom: 6px;
  }
  .article-back-link {
    display: none;
  }
  .product-order-page { display: block; padding-top: 28px; }
  .product-order-panel { margin-top: 26px; }
  .product-order-form { max-height: none; overflow: visible; }
  .product-order-bar { grid-template-columns: 1fr; }
  .product-choice-toggle { padding: 15px 20px; gap: 9px; }
  .product-choice-toggle h2 { font-size: 14px; }
  .product-choice-toggle p { font-size: 13px; }
  .product-choice-toggle > strong { padding: 6px 9px; font-size: 10px; }
  .product-choice-toggle i { width: 30px; height: 30px; }
  .product-choice-content { padding: 0 20px 17px; }
  .product-choice-list { gap: 5px; }
  .choice-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 32px;
  }
  .product-choice-list label {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 7px;
  }
  .product-choice-list label:has(.choice-thumb:not(.choice-thumb-empty)) {
    grid-template-columns: 30px minmax(0, 1fr) auto auto;
  }
  .choice-row label {
    grid-template-columns: minmax(0, 1fr);
  }
  .choice-row label:has(.choice-thumb:not(.choice-thumb-empty)) {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .product-choice-list input { width: 15px; height: 15px; }
  .product-choice-list span { font-size: 12px; line-height: 1.22; }
  .choice-thumb { width: 28px; height: 28px; }
  .choice-row .choice-price {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    padding-left: 0;
    font-size: 9px;
  }
  .choice-row .choice-repeat { grid-column: 1; grid-row: 1; }
  .choice-repeat { gap: 2px; padding: 2px; }
  .choice-repeat button { min-width: 23px; height: 21px; font-size: 10px; }
  .choice-repeat strong { min-width: 11px; font-size: 10px; }
  .product-order-bar .btn { min-height: 40px; padding: 9px 12px; font-size: 13px; }
  .product-detail-intro { display: block; }
  .product-detail-intro strong { display: inline-block; margin-top: 20px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .message-reader-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .footer { flex-direction: column; justify-content: center; text-align: center; padding-bottom: 34px; }
  .footer .footer-brand { align-items: center; }
  .footer .footer-brand small { align-self: flex-end; }
  .footer-links { justify-content: center; gap: 18px; }
  .contact-actions { grid-template-columns: 1fr 1fr; }
  .contact-line { font-size: 15px; }
  .contact-actions .phone-reveal,
  .contact-actions .cta { font-size: 12px; padding: 11px 9px; }
  .hero-click-hint { margin-top: 20px; }
  .mobile-call { display: none; }
  .scroll-top-button {
    right: 16px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
  body:has(.cart-fab:not([hidden])) .scroll-top-button:not(.admin-scroll-top) {
    bottom: 78px;
  }
}
@media (max-width: 520px) {
  .options-workflow { grid-template-columns: 1fr; }
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 10% 0%, rgba(225, 29, 72, .08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 42%, #f2f0eb 100%);
  color: var(--text);
}

html[data-theme="light"] .topbar,
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .sidebar,
html[data-theme="light"] .admin-layout,
html[data-theme="light"] .admin-message-page {
  background: rgba(255, 255, 255, .9);
  color: var(--text);
}

html[data-theme="light"] .topbar,
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .footer,
html[data-theme="light"] .admin-head,
html[data-theme="light"] .message-reader-hero {
  border-color: var(--line);
}

html[data-theme="light"] .links a:hover,
html[data-theme="light"] .mobile-submenu-toggle,
html[data-theme="light"] .mobile-link-list a,
html[data-theme="light"] .mobile-category-list a {
  color: var(--text);
}

html[data-theme="light"] .mobile-menu-button {
  background: #fff;
  color: var(--text);
}

html[data-theme="light"] .mobile-menu-button span {
  background: var(--text);
}

html[data-theme="light"] .hero,
html[data-theme="light"] .product-hero,
html[data-theme="light"] .article-hero {
  background-color: #050505;
}

html[data-theme="light"] .form-card,
html[data-theme="light"] .panel,
html[data-theme="light"] .card,
html[data-theme="light"] .product,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .contact-info-card,
html[data-theme="light"] .hours-card,
html[data-theme="light"] .faq-card,
html[data-theme="light"] .empty-state-card,
html[data-theme="light"] .login-box,
html[data-theme="light"] .message-profile,
html[data-theme="light"] .message-reader-body,
html[data-theme="light"] .option-flow-card,
html[data-theme="light"] .product-order-panel,
html[data-theme="light"] .admin-toolbox,
html[data-theme="light"] .table,
html[data-theme="light"] .stat-card,
html[data-theme="light"] .analytics-card {
  background: var(--panel-solid);
  border-color: var(--line);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(32, 33, 35, .08);
}

html[data-theme="light"] .dashboard-theme,
html[data-theme="light"] .dashboard-theme .admin-layout,
html[data-theme="light"] .dashboard-theme .admin-main {
  background:
    radial-gradient(circle at 70% 0%, rgba(225, 29, 72, .12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
  color: var(--text);
}

html[data-theme="light"] .dashboard-theme .sidebar {
  background: rgba(255, 255, 255, .92);
  border-right: 1px solid var(--line);
}

html[data-theme="light"] .dashboard-theme .panel,
html[data-theme="light"] .dashboard-theme .stat-card,
html[data-theme="light"] .dashboard-theme .analytics-card {
  background: rgba(255, 255, 255, .9);
  border-color: var(--line);
}

html[data-theme="light"] input,
html[data-theme="light"] textarea,
html[data-theme="light"] select,
html[data-theme="light"] .rich-editor {
  background: #fff;
  border-color: rgba(32, 33, 35, .16);
  color: var(--text);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: #8a8a8a;
}

html[data-theme="light"] .side-link,
html[data-theme="light"] .btn.secondary,
html[data-theme="light"] .cart-continue,
html[data-theme="light"] .cat-btn,
html[data-theme="light"] .editor-toolbar button {
  background: #eceae5;
  border-color: rgba(32, 33, 35, .12);
  color: var(--text);
}

html[data-theme="light"] .admin-setting-switch {
  background: #fff;
  border-color: rgba(32, 33, 35, .14);
}

html[data-theme="light"] .admin-setting-switch strong {
  color: var(--text);
}

html[data-theme="light"] .admin-setting-switch small {
  color: #5f6874;
}

html[data-theme="light"] .admin-setting-switch i {
  background: #e7e4dc;
  border-color: rgba(32, 33, 35, .12);
}

html[data-theme="light"] .side-link.active,
html[data-theme="light"] .side-link:hover,
html[data-theme="light"] .cat-btn.active {
  background: rgba(225, 29, 72, .12);
  color: var(--red);
}

html[data-theme="light"] .table th,
html[data-theme="light"] .table td {
  border-color: var(--line);
}

html[data-theme="light"] .cart-drawer {
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  border-color: var(--line);
}

html[data-theme="light"] .cart-head,
html[data-theme="light"] .cart-total,
html[data-theme="light"] .cart-line {
  border-color: var(--line);
}

html[data-theme="light"] .option-step-shell,
html[data-theme="light"] .option-step-section,
html[data-theme="light"] .option-step-sticky,
html[data-theme="light"] .option-step-note {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

html[data-theme="light"] .option-step-choice,
html[data-theme="light"] .option-flow-choice {
  color: var(--text);
}

html[data-theme="light"] .scroll-top-button,
html[data-theme="light"] .cart-fab {
  box-shadow: 0 16px 38px rgba(225, 29, 72, .22);
}

.admin-head-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.login-theme-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.message-theme-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 5;
}

/* Light mode polish: keep the brand contrast, but remove hard-coded dark islands. */
.links {
  margin-left: auto;
}

.public-theme-toggle {
  margin-left: 0;
}

html[data-theme="light"] body,
html[data-theme="light"] .page,
html[data-theme="light"] main,
html[data-theme="light"] .site-footer {
  background: #f7f6f2;
  color: var(--text);
}

html[data-theme="light"] .site-header {
  background: rgba(247, 246, 242, .94);
  border-bottom-color: rgba(32, 33, 35, .12);
  color: var(--text);
}

html[data-theme="light"] .links {
  color: #4d535c;
}

html[data-theme="light"] .links a:hover {
  color: var(--red);
}

html[data-theme="light"] .product-detail-body,
html[data-theme="light"] .product-order-page {
  background: #f7f6f2;
  color: var(--text);
}

html[data-theme="light"] .product-detail-intro,
html[data-theme="light"] .product-order-info {
  border-color: rgba(32, 33, 35, .14);
}

html[data-theme="light"] .product-detail-intro p,
html[data-theme="light"] .product-order-info p,
html[data-theme="light"] .product-order-description,
html[data-theme="light"] .article-card p,
html[data-theme="light"] .article-excerpt,
html[data-theme="light"] .contact-info-card p,
html[data-theme="light"] .contact-muted,
html[data-theme="light"] .faq-list p {
  color: #4f5864;
}

html[data-theme="light"] .product-detail-intro strong,
html[data-theme="light"] .product-order-info strong,
html[data-theme="light"] .product-order-price,
html[data-theme="light"] .detail-content-title,
html[data-theme="light"] .form-title,
html[data-theme="light"] .contact-info-card h2,
html[data-theme="light"] .faq-list summary,
html[data-theme="light"] .article-card h2,
html[data-theme="light"] .article-title,
html[data-theme="light"] .section-title,
html[data-theme="light"] .admin-section-title {
  color: #17181c;
}

html[data-theme="light"] .product-detail-tags span,
html[data-theme="light"] .blog-switch a,
html[data-theme="light"] .pagination a,
html[data-theme="light"] .article-share a,
html[data-theme="light"] .article-share button,
html[data-theme="light"] .back-link {
  background: #fff;
  border-color: rgba(32, 33, 35, .12);
  color: #202123;
}

html[data-theme="light"] .product-detail-tags span:hover,
html[data-theme="light"] .blog-switch a.active,
html[data-theme="light"] .pagination a.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

html[data-theme="light"] .contact-form,
html[data-theme="light"] .contact-info-card,
html[data-theme="light"] .hours-card,
html[data-theme="light"] .faq-card,
html[data-theme="light"] .article-card,
html[data-theme="light"] .product-order-panel,
html[data-theme="light"] .not-found-card {
  background: #fff;
  border-color: rgba(32, 33, 35, .12);
  color: #202123;
  box-shadow: 0 22px 55px rgba(22, 22, 18, .08);
}

html[data-theme="light"] .not-found-card p,
html[data-theme="light"] .not-found-card .muted {
  color: #53606c;
}

html[data-theme="light"] .footer-brand,
html[data-theme="light"] .footer .brand strong {
  color: #202123;
}

html[data-theme="light"] .footer {
  border-color: rgba(32, 33, 35, .14);
}

html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .field input,
html[data-theme="light"] .field textarea,
html[data-theme="light"] .field select,
html[data-theme="light"] .editor-select,
html[data-theme="light"] .editor-color,
html[data-theme="light"] .rich-editor {
  background: #fff;
  border-color: rgba(32, 33, 35, .16);
  color: #202123;
}

html[data-theme="light"] .editor-toolbar,
html[data-theme="light"] .admin-tab-articles main > .form-card .editor-toolbar {
  background: #f0eee9;
  border-color: rgba(32, 33, 35, .12);
}

html[data-theme="light"] .editor-toolbar button,
html[data-theme="light"] .admin-tab-articles main > .form-card .editor-toolbar button {
  background: #fff;
  border-color: rgba(32, 33, 35, .14);
  color: #202123;
}

html[data-theme="light"] .editor-toolbar button.is-active,
html[data-theme="light"] .admin-tab-articles main > .form-card .editor-toolbar button.is-active {
  background: rgba(225, 29, 72, .14);
  border-color: rgba(225, 29, 72, .42);
  color: #9f1239;
}

html[data-theme="light"] .admin-tab-articles main > .form-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(225, 29, 72, .08), transparent 24rem),
    #fff;
  color: #202123;
}

html[data-theme="light"] .admin-tab-articles main > .form-card .form-grid > .field:nth-child(4),
html[data-theme="light"] .admin-tab-articles main > .form-card .form-grid > .field:nth-child(7),
html[data-theme="light"] .media-upload-panel,
html[data-theme="light"] .image-field {
  background: #f7f6f2;
  border-color: rgba(32, 33, 35, .12);
}

html[data-theme="light"] .admin-main,
html[data-theme="light"] .admin-layout {
  background: #f7f6f2;
  color: #202123;
}

html[data-theme="light"] .admin-head {
  background: rgba(247, 246, 242, .95);
  color: #202123;
}

html[data-theme="light"] .product-admin-builder,
html[data-theme="light"] .option-setup-panel,
html[data-theme="light"] .workflow-step-card,
html[data-theme="light"] .option-scenario-help,
html[data-theme="light"] .option-focus-card,
html[data-theme="light"] .option-admin-card,
html[data-theme="light"] .option-matrix-card,
html[data-theme="light"] .option-assignment-board,
html[data-theme="light"] .assignment-row,
html[data-theme="light"] .option-condition-panel,
html[data-theme="light"] .condition-rule,
html[data-theme="light"] .option-simulation,
html[data-theme="light"] .condition-choice-list {
  background: #fff;
  border-color: rgba(32, 33, 35, .12);
  color: #202123;
  box-shadow: 0 18px 48px rgba(32, 33, 35, .06);
}

html[data-theme="light"] .option-setup-panel > summary,
html[data-theme="light"] .product-admin-builder-head,
html[data-theme="light"] .assignment-label strong,
html[data-theme="light"] .condition-rule strong,
html[data-theme="light"] .simulation-groups strong,
html[data-theme="light"] .option-admin-card h3,
html[data-theme="light"] .option-matrix-card h3,
html[data-theme="light"] .option-condition-panel h3,
html[data-theme="light"] .option-simulation h3 {
  color: #17181c;
}

html[data-theme="light"] .option-setup-panel > summary small,
html[data-theme="light"] .product-admin-builder-head p,
html[data-theme="light"] .assignment-label span,
html[data-theme="light"] .condition-rule p,
html[data-theme="light"] .simulation-groups span,
html[data-theme="light"] .option-admin-card p,
html[data-theme="light"] .option-matrix-card p,
html[data-theme="light"] .option-condition-panel p,
html[data-theme="light"] .option-simulation p {
  color: #53606c;
}

html[data-theme="light"] .matrix-chip,
html[data-theme="light"] .condition-pill,
html[data-theme="light"] .simulation-groups span,
html[data-theme="light"] .condition-rule select,
html[data-theme="light"] .option-simulation select {
  background: #f7f6f2;
  border-color: rgba(32, 33, 35, .14);
  color: #202123;
}

html[data-theme="light"] .matrix-chip.is-on,
html[data-theme="light"] .condition-pill.is-on {
  background: #01696f;
  border-color: #018891;
  color: #fff;
}

html[data-theme="light"] .table,
html[data-theme="light"] table {
  background: #fff;
  color: #202123;
}

html[data-theme="light"] .table th,
html[data-theme="light"] .table td,
html[data-theme="light"] table th,
html[data-theme="light"] table td {
  color: #202123;
}

html[data-theme="light"] .table small,
html[data-theme="light"] table small,
html[data-theme="light"] .muted,
html[data-theme="light"] .hint,
html[data-theme="light"] .help-text {
  color: #64717f;
}

html[data-theme="light"] .admin-tab-options .product-admin-builder {
  background: transparent;
  border: 0;
  box-shadow: none;
}

html[data-theme="light"] .option-items-head,
html[data-theme="light"] .field label,
html[data-theme="light"] .product-admin-builder-head span,
html[data-theme="light"] .admin-helper-text,
html[data-theme="light"] .option-admin-card small {
  color: #56616f;
}

html[data-theme="light"] .option-item-row {
  border-color: rgba(32, 33, 35, .11);
}

html[data-theme="light"] .option-item-row input,
html[data-theme="light"] .option-item-row select,
html[data-theme="light"] .option-item-media-field input {
  background: #fff;
  border-color: rgba(32, 33, 35, .16);
  color: #17181c;
}

html[data-theme="light"] .option-item-row input::placeholder {
  color: #7a8491;
}

html[data-theme="light"] .option-item-row label,
html[data-theme="light"] .option-item-row select {
  color: #17181c;
}

html[data-theme="light"] .option-item-drag-handle {
  background: #ece9e3;
  color: #5d6673;
}

html[data-theme="light"] .option-item-drag-handle:hover {
  background: rgba(225, 29, 72, .12);
  color: var(--red);
}

html[data-theme="light"] .product-order-panel .option-step-section,
html[data-theme="light"] .product-order-panel .option-step-sticky,
html[data-theme="light"] .product-order-panel .option-step-note {
  background: #fff;
}

html[data-theme="light"] .product-order-panel .option-step-choice {
  color: #202123;
}

html[data-theme="light"] .cart-drawer {
  background: #111;
  color: #f8fafc;
}

html[data-theme="light"] .cart-drawer .muted,
html[data-theme="light"] .cart-drawer small {
  color: #aeb7c2;
}

@media (max-width: 900px) {
  html[data-theme="light"] .nav {
    justify-content: space-between;
  }

  html[data-theme="light"] .links {
    margin-left: 0;
  }
}

/* Light mode second pass: homepage menu, hours column, product cards and dashboard readability. */
html[data-theme="light"] .cat-bar {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

html[data-theme="light"] .cat-btn {
  background: #fff;
  border: 1px solid rgba(32, 33, 35, .12);
  color: #202123;
}

html[data-theme="light"] .cat-btn.active,
html[data-theme="light"] .cat-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

html[data-theme="light"] .product-description h2,
html[data-theme="light"] .product-description h3 {
  color: #202123;
}

html[data-theme="light"] .product h3 {
  color: #fff;
}

html[data-theme="light"] .product:hover h3 {
  color: #fff;
}

html[data-theme="light"] .product p,
html[data-theme="light"] .product-description {
  color: #626a73;
}

html[data-theme="light"] .product-foot {
  border-color: rgba(32, 33, 35, .10);
}

html[data-theme="light"] .product-foot strong,
html[data-theme="light"] .price {
  color: #202123;
}

html[data-theme="light"] .hours-status.closed {
  background: #fff1f4;
  border-color: rgba(225, 29, 72, .22);
  color: #9f1239;
}

html[data-theme="light"] .hours-status.closed strong,
html[data-theme="light"] .hours-status.closed span {
  color: #e11d48;
}

html[data-theme="light"] .hours-status.open {
  background: #ecfdf3;
  border-color: rgba(22, 163, 74, .24);
  color: #166534;
}

html[data-theme="light"] .hours-status.open strong,
html[data-theme="light"] .hours-status.open span {
  color: #15803d;
}

html[data-theme="light"] .hours-details,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .home-social-card,
html[data-theme="light"] .google-business-card {
  border-color: rgba(32, 33, 35, .12);
}

html[data-theme="light"] .hours-details summary {
  color: #475569;
}

html[data-theme="light"] .hours-row {
  border-color: rgba(32, 33, 35, .10);
  color: #334155;
}

html[data-theme="light"] .hours-row strong {
  color: #202123;
}

html[data-theme="light"] .hours-slot {
  background: #fff;
  border-color: rgba(32, 33, 35, .14);
  color: #334155;
}

html[data-theme="light"] .hours-row.today {
  background: #fff1f4;
  border-color: rgba(225, 29, 72, .22);
  color: #9f1239;
}

html[data-theme="light"] .hours-row.today strong {
  color: #e11d48;
}

html[data-theme="light"] .hours-row.today.open {
  background: #ecfdf3;
  border-color: rgba(22, 163, 74, .28);
  color: #166534;
}

html[data-theme="light"] .hours-row.today.open strong,
html[data-theme="light"] .hours-row.today.open svg {
  color: #15803d;
}

html[data-theme="light"] .hours-row.today.open .hours-slot {
  background: rgba(22, 163, 74, .08);
  border-color: rgba(22, 163, 74, .24);
  color: #166534;
}

html[data-theme="light"] .hours-row.today.closed .hours-slot {
  background: rgba(225, 29, 72, .08);
  border-color: rgba(225, 29, 72, .22);
  color: #9f1239;
}

html[data-theme="light"] .home-social-item,
html[data-theme="light"] .google-business-head,
html[data-theme="light"] .google-review {
  background: #fff;
  border-color: rgba(32, 33, 35, .12);
}

html[data-theme="light"] .home-social-text strong,
html[data-theme="light"] .google-business-head strong {
  color: #202123;
}

html[data-theme="light"] .google-review p {
  color: #4f5864;
}

html[data-theme="light"] .article-content,
html[data-theme="light"] .article-body,
html[data-theme="light"] .article-detail,
html[data-theme="light"] .article-panel,
html[data-theme="light"] .legal-panel {
  color: #202123;
}

html[data-theme="light"] .article-content p,
html[data-theme="light"] .article-body p,
html[data-theme="light"] .article-detail p,
html[data-theme="light"] .legal-panel p,
html[data-theme="light"] .legal-panel li {
  color: #4f5864;
}

html[data-theme="light"] .article-content h1,
html[data-theme="light"] .article-content h2,
html[data-theme="light"] .article-content h3,
html[data-theme="light"] .article-body h1,
html[data-theme="light"] .article-body h2,
html[data-theme="light"] .article-body h3,
html[data-theme="light"] .legal-panel h2 {
  color: #202123;
}

html[data-theme="light"] .dashboard-theme .dashboard-intro h2,
html[data-theme="light"] .dashboard-theme .stat-card h2,
html[data-theme="light"] .dashboard-theme .analytics-card-head h3,
html[data-theme="light"] .analytics-summary strong,
html[data-theme="light"] .dash-row,
html[data-theme="light"] .dashboard-theme .panel h2,
html[data-theme="light"] .dashboard-theme .panel h3 {
  color: #202123;
}

html[data-theme="light"] .dashboard-theme .dashboard-intro p,
html[data-theme="light"] .dashboard-theme .stat-card p,
html[data-theme="light"] .dashboard-theme .analytics-card-head p,
html[data-theme="light"] .dashboard-theme .analytics-summary span,
html[data-theme="light"] .dash-row span,
html[data-theme="light"] .dash-row small,
html[data-theme="light"] .chart-legend,
html[data-theme="light"] .dashboard-theme .chart-label {
  color: #5b6470;
  fill: #5b6470;
}

html[data-theme="light"] .dashboard-theme .stat-card span:not(.stat-bubble),
html[data-theme="light"] .dashboard-theme .dash-row strong {
  color: var(--red);
}

html[data-theme="light"] .dashboard-theme .stat-card::before {
  background: rgba(32, 33, 35, .10);
}

html[data-theme="light"] .dashboard-theme .analytics-summary div {
  background: #fff;
  border-color: rgba(32, 33, 35, .12);
}

html[data-theme="light"] .dashboard-theme .chart-grid-line {
  stroke: rgba(32, 33, 35, .10);
}

html[data-theme="light"] .admin-main > h1,
html[data-theme="light"] .admin-main > h2,
html[data-theme="light"] .admin-main > h3,
html[data-theme="light"] .admin-head strong {
  color: #202123;
}

/* Light mode contrast safety net.
   Several older components used pale "muted" colors tuned for dark mode.
   In light mode, keep all reading text dark enough on white surfaces. */
html[data-theme="light"] {
  --text: #111827;
  --muted: #4b5563;
  --warm-ink: #111827;
  --warm-muted: #4b5563;
}

html[data-theme="light"] .empty-state-card,
html[data-theme="light"] .not-found-card,
html[data-theme="light"] .admin-main,
html[data-theme="light"] .admin-main .form-card,
html[data-theme="light"] .admin-main .panel,
html[data-theme="light"] .admin-main .card,
html[data-theme="light"] .admin-main .product-admin-builder,
html[data-theme="light"] .admin-main .option-setup-panel,
html[data-theme="light"] .admin-main .workflow-step-card,
html[data-theme="light"] .admin-main .option-scenario-help,
html[data-theme="light"] .admin-main .option-focus-card,
html[data-theme="light"] .admin-main .option-admin-card,
html[data-theme="light"] .admin-main .option-matrix-card,
html[data-theme="light"] .admin-main .option-assignment-board,
html[data-theme="light"] .admin-main .assignment-row,
html[data-theme="light"] .admin-main .option-condition-panel,
html[data-theme="light"] .admin-main .condition-rule,
html[data-theme="light"] .admin-main .option-simulation,
html[data-theme="light"] .admin-main .condition-choice-list {
  color: #111827;
}

html[data-theme="light"] .empty-state-card h1,
html[data-theme="light"] .empty-state-card h2,
html[data-theme="light"] .empty-state-card h3,
html[data-theme="light"] .empty-state-card strong,
html[data-theme="light"] .not-found-card h1,
html[data-theme="light"] .not-found-card h2,
html[data-theme="light"] .not-found-card h3,
html[data-theme="light"] .not-found-card strong,
html[data-theme="light"] .admin-main h1,
html[data-theme="light"] .admin-main h2,
html[data-theme="light"] .admin-main h3,
html[data-theme="light"] .admin-main h4,
html[data-theme="light"] .admin-main strong,
html[data-theme="light"] .admin-main label,
html[data-theme="light"] .admin-main th,
html[data-theme="light"] .admin-main td {
  color: #111827;
}

html[data-theme="light"] .empty-state-card p,
html[data-theme="light"] .empty-state-card li,
html[data-theme="light"] .empty-state-card .muted,
html[data-theme="light"] .empty-state-hints,
html[data-theme="light"] .empty-state-hints span,
html[data-theme="light"] .not-found-card p,
html[data-theme="light"] .not-found-card li,
html[data-theme="light"] .not-found-card .muted,
html[data-theme="light"] .not-found-card small,
html[data-theme="light"] .admin-main p,
html[data-theme="light"] .admin-main small,
html[data-theme="light"] .admin-main .muted,
html[data-theme="light"] .admin-main .hint,
html[data-theme="light"] .admin-main .help-text,
html[data-theme="light"] .admin-main .admin-helper-text,
html[data-theme="light"] .admin-main .product-admin-builder-head p,
html[data-theme="light"] .admin-main .workflow-step-card p,
html[data-theme="light"] .admin-main .option-scenario-help p,
html[data-theme="light"] .admin-main .option-scenario-help li,
html[data-theme="light"] .admin-main .assignment-label span,
html[data-theme="light"] .admin-main .condition-rule p,
html[data-theme="light"] .admin-main .condition-rule summary em,
html[data-theme="light"] .admin-main .option-admin-card p,
html[data-theme="light"] .admin-main .option-matrix-card p,
html[data-theme="light"] .admin-main .option-condition-panel p,
html[data-theme="light"] .admin-main .option-simulation p,
html[data-theme="light"] .admin-main .simulation-groups span {
  color: #4b5563;
}

html[data-theme="light"] .admin-main input,
html[data-theme="light"] .admin-main textarea,
html[data-theme="light"] .admin-main select,
html[data-theme="light"] .admin-main option {
  color: #111827;
}

html[data-theme="light"] .admin-main input::placeholder,
html[data-theme="light"] .admin-main textarea::placeholder {
  color: #6b7280;
}

html[data-theme="light"] .admin-main :where(p, li, span, small, em, b, dd, dt):not(.btn):not(.btn *):not(.side-link):not(.side-link *):not(.matrix-chip):not(.matrix-chip *):not(.condition-pill):not(.condition-pill *):not(.stat-bubble):not(.badge):not(.badge *) {
  color: #374151;
}

html[data-theme="light"] .admin-main :where(h1, h2, h3, h4, h5, h6, strong, label, th, td, summary):not(.btn):not(.btn *):not(.matrix-chip):not(.matrix-chip *):not(.condition-pill):not(.condition-pill *) {
  color: #111827;
}

html[data-theme="light"] .admin-main .kicker,
html[data-theme="light"] .admin-main .accent,
html[data-theme="light"] .admin-main .danger:not(.btn),
html[data-theme="light"] .admin-main .required,
html[data-theme="light"] .empty-state-code {
  color: var(--red);
}

html[data-theme="light"] .btn,
html[data-theme="light"] .btn.danger,
html[data-theme="light"] button.btn.danger {
  color: #fff;
}

html[data-theme="light"] .btn.secondary {
  color: #111827;
}
