:root {
  color-scheme: light;
  --surface: #ffffff;
  --surface-soft: #eef0ea;
  --ink: #101311;
  --muted: #667068;
  --line: rgba(16, 19, 17, .1);
  --electric: #6c5ce7;
  --lime: #c9ff47;
  --mint: #2ed6a1;
}

.dark {
  color-scheme: dark;
  --surface: #141715;
  --surface-soft: #1a1e1b;
  --ink: #f3f5ef;
  --muted: #a3aba5;
  --line: rgba(255, 255, 255, .11);
}

* { box-sizing: border-box; }
html { text-rendering: optimizeLegibility; }
body { overflow-x: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { color: transparent; }
[hidden] { display: none !important; }

::selection { background: #c9ff47; color: #101311; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: .75rem;
  left: .75rem;
  transform: translateY(-150%);
  border-radius: .75rem;
  background: #101311;
  color: #fff;
  padding: .75rem 1rem;
  font-weight: 800;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible,
.focus-ring:focus-visible {
  outline: 3px solid #6c5ce7;
  outline-offset: 3px;
}
.dark :focus-visible { outline-color: #c9ff47; }

.nav-link {
  border-radius: .75rem;
  padding: .65rem .8rem;
  font-size: .82rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover { background: rgba(108, 92, 231, .08); color: var(--ink); }

.icon-button {
  display: inline-flex;
  min-width: 2.6rem;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: .8rem;
  color: var(--ink);
  transition: background .18s ease, transform .18s ease;
}
.icon-button:hover { background: rgba(108, 92, 231, .1); transform: translateY(-1px); }

.locale-menu {
  position: absolute;
  top: calc(100% + .55rem);
  right: 0;
  min-width: 10rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: .35rem;
  box-shadow: 0 20px 55px rgba(16, 19, 17, .18);
}
.locale-menu a { display: block; border-radius: .7rem; padding: .65rem .8rem; font-size: .8rem; font-weight: 700; }
.locale-menu a:hover, .locale-menu a.is-active { background: rgba(108, 92, 231, .1); color: var(--electric); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}
.mobile-menu a { border-radius: .75rem; padding: .8rem 1rem; font-size: .92rem; font-weight: 700; }
.mobile-menu a:hover { background: rgba(108, 92, 231, .08); }

.hero-grid {
  background:
    radial-gradient(circle at 72% 23%, rgba(108, 92, 231, .17), transparent 27rem),
    radial-gradient(circle at 21% 67%, rgba(201, 255, 71, .20), transparent 26rem),
    linear-gradient(rgba(16, 19, 17, .036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 17, .036) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 96%);
}
.dark .hero-grid {
  background:
    radial-gradient(circle at 72% 23%, rgba(108, 92, 231, .28), transparent 27rem),
    radial-gradient(circle at 21% 67%, rgba(201, 255, 71, .09), transparent 26rem),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.gradient-text {
  display: block;
  width: fit-content;
  background: linear-gradient(110deg, #6c5ce7 10%, #2d8f72 62%, #84b61e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dark .gradient-text { background-image: linear-gradient(110deg, #aa9dff 10%, #c9ff47 78%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(108, 92, 231, .18);
  border-radius: 999px;
  background: rgba(108, 92, 231, .07);
  padding: .45rem .75rem;
  color: #5a49d6;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dark .eyebrow { border-color: rgba(201, 255, 71, .14); background: rgba(201, 255, 71, .07); color: var(--lime); }

.button-primary,
.button-secondary,
.button-card,
.button-danger {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .55rem;
  border-radius: .8rem;
  padding: .7rem 1.05rem;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button-primary { background: #101311; color: #fff; box-shadow: 0 10px 25px rgba(16, 19, 17, .14); }
.button-primary:hover { transform: translateY(-2px); background: #6c5ce7; box-shadow: 0 14px 30px rgba(108, 92, 231, .22); }
.dark .button-primary { background: var(--lime); color: #101311; }
.dark .button-primary:hover { background: #d8ff79; }
.button-secondary { border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.button-secondary:hover { transform: translateY(-1px); border-color: rgba(108, 92, 231, .35); background: rgba(108, 92, 231, .06); }
.button-danger { border: 1px solid rgba(220, 38, 38, .28); color: #b91c1c; }
.button-danger:hover { background: rgba(220, 38, 38, .08); }

.section-shell { width: min(100% - 2rem, 80rem); margin-inline: auto; padding-block: 4.5rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.section-heading h2 { margin-top: .8rem; font-family: Manrope, Inter, system-ui, sans-serif; font-size: clamp(1.85rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -.035em; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; width: fit-content; border-radius: .35rem; color: var(--electric); font-size: .8rem; font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.dark .text-link { color: var(--lime); }

.stat { display: flex; flex-direction: column; align-items: center; padding: .5rem; text-align: center; }
.stat strong { font-family: Manrope, Inter, system-ui, sans-serif; font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 900; letter-spacing: -.04em; }
.stat span { margin-top: .15rem; color: var(--muted); font-size: .68rem; font-weight: 700; }

.offer-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.25rem; }
.offer-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: var(--surface);
  padding: .65rem;
  box-shadow: 0 8px 24px rgba(16, 19, 17, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-card:hover { transform: translateY(-5px); border-color: rgba(108, 92, 231, .23); box-shadow: 0 22px 55px rgba(16, 19, 17, .11); }
.favorite-button {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: .8rem;
  background: rgba(255, 255, 255, .9);
  color: #101311;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}
.favorite-button[aria-pressed="true"] { background: #ff6b57; color: #fff; }
.button-card { width: 100%; justify-content: center; background: rgba(16, 19, 17, .055); color: var(--ink); }
.button-card:hover { background: #101311; color: #fff; }
.dark .button-card { background: rgba(255, 255, 255, .08); }
.dark .button-card:hover { background: var(--lime); color: #101311; }

.category-tile,
.directory-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--surface);
  padding: 1rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.category-tile:hover, .directory-card:hover { transform: translateY(-3px); border-color: rgba(108, 92, 231, .25); box-shadow: 0 16px 35px rgba(16, 19, 17, .07); }
.category-tile strong, .directory-card strong { display: block; font-weight: 850; }
.category-tile small, .directory-card small { display: block; margin-top: .18rem; color: var(--muted); font-size: .72rem; }
.category-icon {
  display: flex;
  width: 2.8rem;
  height: 2.8rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(108, 92, 231, .15), rgba(201, 255, 71, .26));
  color: var(--electric);
  font-weight: 900;
}
.store-mark {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 1.1rem;
  background: var(--store-color);
  color: #101311;
  font-size: .85rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.feature-mini { border: 1px solid rgba(255, 255, 255, .09); border-radius: 1.2rem; background: rgba(255, 255, 255, .045); padding: 1.15rem; }
.feature-mini > span { font-family: ui-monospace, monospace; color: var(--lime); font-size: .7rem; font-weight: 900; }
.feature-mini strong { display: block; margin-top: .55rem; font-size: .9rem; }
.feature-mini p { margin-top: .25rem; color: rgba(255, 255, 255, .52); font-size: .72rem; line-height: 1.5; }

.coupon-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 1.5rem; background: var(--surface); padding: 1.4rem; box-shadow: 0 8px 30px rgba(16, 19, 17, .05); }
.coupon-card::before, .coupon-card::after { content: ""; position: absolute; top: 53%; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--paper, #f7f8f4); }
.coupon-card::before { left: -.58rem; }
.coupon-card::after { right: -.58rem; }

.surface-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(16, 19, 17, .04);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 24%, rgba(108, 92, 231, .13), transparent 23rem),
    linear-gradient(180deg, rgba(255, 255, 255, .6), transparent);
}
.dark .page-hero { background: radial-gradient(circle at 83% 24%, rgba(108, 92, 231, .22), transparent 23rem); }
.page-hero h1 { margin-top: 1rem; max-width: 54rem; font-family: Manrope, Inter, system-ui, sans-serif; font-size: clamp(2.4rem, 7vw, 4.8rem); font-weight: 950; line-height: 1.02; letter-spacing: -.052em; }
.page-hero p { margin-top: 1rem; max-width: 44rem; color: var(--muted); font-size: 1rem; line-height: 1.75; }

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--surface);
  padding: .75rem;
}
.search-box { display: flex; min-height: 2.75rem; flex: 1; align-items: center; gap: .65rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface-soft); padding: 0 .85rem; color: var(--muted); }
.search-box input { min-width: 0; flex: 1; background: transparent; color: var(--ink); font-size: .85rem; outline: none; }
.select-label { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .75rem; font-weight: 700; }
.select-label select, .form-select { min-height: 2.75rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface); padding: 0 2.2rem 0 .8rem; color: var(--ink); font-size: .8rem; }

.filter-panel { align-self: start; border: 1px solid var(--line); border-radius: 1.25rem; background: var(--surface); padding: 1rem; }
.filter-heading { display: flex; align-items: center; justify-content: space-between; padding: .25rem .25rem .8rem; font-size: .9rem; }
.filter-panel fieldset { margin-top: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.filter-panel legend { margin-bottom: .6rem; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.filter-panel label { display: flex; align-items: center; gap: .6rem; border-radius: .65rem; padding: .45rem; font-size: .78rem; cursor: pointer; }
.filter-panel label:hover { background: rgba(108, 92, 231, .06); }
.filter-panel label span { flex: 1; }
.filter-panel label small { color: var(--muted); }
.filter-panel input { width: 1rem; height: 1rem; accent-color: var(--electric); }

.empty-state { border: 1px dashed var(--line); border-radius: 1.5rem; padding: 3.5rem 1rem; text-align: center; }
.empty-state h2 { margin-top: .75rem; font-family: Manrope, sans-serif; font-size: 1.35rem; font-weight: 900; }
.empty-state p { margin-top: .4rem; color: var(--muted); font-size: .85rem; }

.score-ring {
  display: flex;
  width: 4.6rem;
  height: 4.6rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(46, 214, 161, .22);
  border-top-color: var(--mint);
  border-radius: 50%;
  line-height: 1;
}
.score-ring strong { font-size: 1.3rem; }
.score-ring span { margin-top: .15rem; color: var(--muted); font-size: .6rem; }
dl div dt { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
dl div dd { margin-top: .15rem; font-weight: 700; }

.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
.faq-item button { display: flex; width: 100%; min-height: 3.5rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; text-align: left; font-weight: 800; }
.faq-item button span:last-child { color: var(--electric); font-size: 1.4rem; transition: transform .18s ease; }
.faq-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-item [data-accordion-panel] { padding: 0 1.2rem 1.2rem; color: var(--muted); font-size: .9rem; line-height: 1.75; }

.legal-nav-link { display: block; border-radius: .75rem; padding: .65rem .75rem; color: var(--muted); font-weight: 700; }
.legal-nav-link:hover { background: rgba(108, 92, 231, .07); color: var(--electric); }
.legal-content section { margin-top: 2.3rem; scroll-margin-top: 7rem; }
.legal-content h2, .article-content h2 { font-family: Manrope, Inter, sans-serif; font-size: 1.5rem; font-weight: 900; letter-spacing: -.02em; }
.legal-content p, .article-content p { margin-top: .75rem; color: var(--muted); line-height: 1.85; }
.legal-content a, .article-content a { color: var(--electric); text-decoration: underline; text-underline-offset: 3px; }

.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 1.5rem; background: var(--surface); transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(16, 19, 17, .09); }
.blog-visual { display: flex; min-height: 14rem; align-items: end; padding: 1.5rem; }
.blog-visual span { font-family: Manrope, sans-serif; font-size: 4rem; font-weight: 950; color: rgba(255, 255, 255, .9); }
.tone-1 { background: radial-gradient(circle at 70% 30%, #c9ff47, transparent 23%), linear-gradient(135deg, #101311, #6c5ce7); }
.tone-2 { background: radial-gradient(circle at 30% 70%, #ffd65c, transparent 25%), linear-gradient(135deg, #ff6b57, #6c5ce7); }
.tone-3 { background: radial-gradient(circle at 70% 20%, #2ed6a1, transparent 25%), linear-gradient(135deg, #19302a, #4774ff); }
.article-content .lead { color: var(--ink); font-size: 1.2rem; font-weight: 600; }
.article-content h2 { margin-top: 2.4rem; }
.article-content blockquote { margin-block: 2rem; border-left: 4px solid var(--lime); padding: 1rem 1.4rem; font-family: Manrope, sans-serif; font-size: 1.35rem; font-weight: 850; line-height: 1.5; }
.article-content ul { margin-top: 1rem; list-style: none; color: var(--muted); }
.article-content li { position: relative; margin-top: .65rem; padding-left: 1.5rem; }
.article-content li::before { content: "✓"; position: absolute; left: 0; color: #16845f; font-weight: 900; }

.contact-option { display: block; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); padding: 1rem; transition: border .18s ease, transform .18s ease; }
.contact-option:hover { transform: translateX(3px); border-color: rgba(108, 92, 231, .3); }
.contact-option strong { display: block; font-size: .85rem; }
.contact-option span { display: block; margin-top: .25rem; color: var(--muted); font-size: .75rem; }

.form-field { display: flex; flex-direction: column; gap: .45rem; color: var(--ink); font-size: .78rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: var(--surface-soft);
  padding: .78rem .85rem;
  color: var(--ink);
  outline: none;
  transition: border .15s ease, box-shadow .15s ease;
}
.form-field input, .form-field select { min-height: 2.9rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(108, 92, 231, .13); }
.form-field small { color: var(--muted); font-size: .67rem; font-weight: 500; line-height: 1.45; }
.form-field .character-counter { align-self: end; color: var(--muted); font-variant-numeric: tabular-nums; }
.form-field .character-counter.is-limit { color: #b45309; font-weight: 750; }
.check-field { display: flex; align-items: center; gap: .65rem; color: var(--muted); font-size: .75rem; line-height: 1.5; cursor: pointer; }
.check-field input { width: 1.05rem; height: 1.05rem; flex: none; accent-color: var(--electric); }
.check-field a { color: var(--electric); text-decoration: underline; }

.auth-shell { display: grid; min-height: calc(100vh - 4.5rem); }
.auth-art {
  display: none;
  min-height: calc(100vh - 4.5rem);
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 255, 71, .35), transparent 25%),
    radial-gradient(circle at 80% 55%, rgba(108, 92, 231, .6), transparent 35%),
    linear-gradient(145deg, #101311, #242923);
  padding: 3rem;
}
.auth-proof { border: 1px solid rgba(255, 255, 255, .1); border-radius: 1rem; background: rgba(255, 255, 255, .05); padding: 1rem; }
.auth-proof strong { display: block; color: var(--lime); font-size: 1.3rem; }
.auth-proof span { display: block; margin-top: .25rem; color: rgba(255, 255, 255, .52); font-size: .66rem; }
.google-button { display: flex; width: 100%; min-height: 3rem; align-items: center; justify-content: center; gap: .7rem; border: 1px solid var(--line); border-radius: .85rem; background: var(--surface); font-size: .82rem; font-weight: 800; }
.google-button:hover { background: var(--surface-soft); }
.google-g { color: #4285f4; font-size: 1.1rem; font-weight: 950; }
.form-divider { display: flex; align-items: center; gap: .75rem; margin-block: 1.25rem; color: var(--muted); font-size: .68rem; }
.form-divider::before, .form-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.password-field { display: flex; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface-soft); }
.password-field input { border: 0; box-shadow: none !important; }
.password-field button { width: 2.8rem; color: var(--muted); }

.account-nav { display: grid; gap: .2rem; }
.account-nav a { border-radius: .7rem; padding: .65rem .75rem; color: var(--muted); font-size: .78rem; font-weight: 750; }
.account-nav a:hover, .account-nav a.is-active { background: rgba(108, 92, 231, .1); color: var(--electric); }
.metric-card { border: 1px solid var(--line); border-radius: 1.25rem; background: var(--surface); padding: 1.15rem; box-shadow: 0 7px 25px rgba(16, 19, 17, .035); }
.metric-card > span { display: block; color: var(--muted); font-size: .68rem; font-weight: 750; }
.metric-card > strong { display: block; margin-top: .5rem; font-family: Manrope, Inter, sans-serif; font-size: 1.8rem; font-weight: 950; letter-spacing: -.04em; }
.metric-card > small { display: block; margin-top: .25rem; color: var(--muted); font-size: .65rem; }
.choice-card { display: flex; min-height: 3rem; align-items: center; gap: .65rem; border: 1px solid var(--line); border-radius: .85rem; background: var(--surface-soft); padding: .75rem; font-size: .78rem; font-weight: 750; cursor: pointer; }
.choice-card:has(input:checked) { border-color: rgba(108, 92, 231, .42); background: rgba(108, 92, 231, .08); color: var(--electric); }
.choice-card input { accent-color: var(--electric); }

.data-table { width: 100%; border-collapse: collapse; white-space: nowrap; text-align: left; font-size: .75rem; }
.data-table th { border-bottom: 1px solid var(--line); padding: .7rem .8rem; color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.data-table td { border-bottom: 1px solid var(--line); padding: .85rem .8rem; vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: rgba(108, 92, 231, .025); }
.data-table td small { display: block; margin-top: .22rem; color: var(--muted); font-size: .62rem; }
.table-action { width: 2rem; height: 2rem; border-radius: .55rem; }
.table-action:hover { background: var(--surface-soft); }
.status-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: .32rem .55rem; font-size: .6rem; font-weight: 850; }
.status-badge.success { background: rgba(46, 214, 161, .13); color: #087957; }
.dark .status-badge.success { color: #6ff0c5; }
.status-badge.warning { background: rgba(245, 158, 11, .14); color: #a15b04; }
.dark .status-badge.warning { color: #facc74; }
.status-badge.neutral { background: rgba(107, 114, 128, .13); color: var(--muted); }

.app-dialog { width: min(100% - 2rem, 32rem); border: 0; border-radius: 1.5rem; background: var(--surface); color: var(--ink); padding: 1.5rem; box-shadow: 0 30px 90px rgba(0, 0, 0, .35); }
.app-dialog::backdrop { background: rgba(0, 0, 0, .55); backdrop-filter: blur(4px); }

.admin-layout { display: grid; min-height: 100vh; }
.admin-page > header, .admin-page > footer, .admin-page > .cookie-banner { display: none; }
.admin-sidebar { position: fixed; z-index: 60; inset: 0 auto 0 0; display: flex; width: 16rem; transform: translateX(-100%); flex-direction: column; background: #101311; color: #fff; transition: transform .2s ease; }
.admin-sidebar.is-open { transform: translateX(0); }
.admin-nav { display: grid; gap: .15rem; padding: .5rem 1rem; }
.admin-nav a { display: flex; align-items: center; gap: .65rem; border-radius: .7rem; padding: .67rem .8rem; color: rgba(255, 255, 255, .58); font-size: .74rem; font-weight: 750; }
.admin-nav a:hover, .admin-nav a.is-active { background: rgba(255, 255, 255, .08); color: #fff; }
.admin-nav a.is-active .admin-nav-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(201, 255, 71, .12); }
.admin-nav-dot { width: .36rem; height: .36rem; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.admin-back { display: flex; align-items: center; gap: .5rem; border-radius: .7rem; padding: .65rem .8rem; color: rgba(255, 255, 255, .55); font-size: .7rem; font-weight: 700; }
.admin-topbar { position: sticky; z-index: 40; top: 0; display: flex; min-height: 4.5rem; align-items: center; gap: 1rem; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 88%, transparent); padding: .8rem 1.25rem; backdrop-filter: blur(16px); }
.admin-content { width: 100%; max-width: 95rem; margin-inline: auto; padding: 1.5rem; }
.admin-heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.admin-heading h2 { font-family: Manrope, sans-serif; font-size: 1.8rem; font-weight: 950; letter-spacing: -.035em; }
.admin-heading p { margin-top: .35rem; color: var(--muted); font-size: .75rem; }
.card-heading { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.card-heading h2 { font-family: Manrope, sans-serif; font-size: 1rem; font-weight: 900; }
.card-heading p { margin-top: .25rem; color: var(--muted); font-size: .65rem; }
.progress-track { height: .45rem; overflow: hidden; border-radius: 999px; background: rgba(107, 114, 128, .15); }
.progress-track span { display: block; height: 100%; border-radius: inherit; }
.progress-track span.good { background: var(--mint); }
.progress-track span.warning { background: #f59e0b; }
.alert-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; border-radius: .8rem; padding: .8rem; font-size: .7rem; }
.alert-row strong { display: block; }
.alert-row span { color: var(--muted); text-align: right; }
.alert-row.success { background: rgba(46, 214, 161, .08); }
.alert-row.warning { background: rgba(245, 158, 11, .1); }
.mini-metric { border-radius: .8rem; background: var(--surface-soft); padding: .8rem; }
.mini-metric strong { display: block; font-size: 1rem; }
.mini-metric span { color: var(--muted); font-size: .6rem; }
.admin-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.table-product { display: flex; align-items: center; gap: .7rem; }
.table-product img { width: 2.5rem; height: 2.5rem; border-radius: .7rem; background: var(--surface-soft); object-fit: cover; }
.admin-card dl div { border-radius: .7rem; background: var(--surface-soft); padding: .7rem; }
.admin-card dl dd { font-size: .8rem; }
.audit-row { display: flex; align-items: center; gap: .75rem; border-radius: .8rem; padding: .75rem; }
.audit-row:hover { background: var(--surface-soft); }
.audit-row strong { display: block; font-size: .75rem; }
.audit-row small { display: block; margin-top: .2rem; color: var(--muted); font-size: .62rem; }
.audit-row time { color: var(--muted); font-size: .6rem; }
.audit-dot { width: .5rem; height: .5rem; flex: none; border-radius: 50%; background: var(--electric); box-shadow: 0 0 0 4px rgba(108, 92, 231, .1); }

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  max-width: 60rem;
  flex-direction: column;
  gap: 1rem;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--surface);
  padding: 1.1rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .22);
}
.footer-pill { border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; padding: .55rem .85rem; color: rgba(255, 255, 255, .7); font-size: .7rem; font-weight: 750; }
.footer-pill:hover { border-color: var(--lime); color: var(--lime); }
.footer-links { margin-top: 1rem; display: grid; gap: .65rem; }
.footer-links a { color: rgba(255, 255, 255, .56); font-size: .75rem; }
.footer-links a:hover { color: #fff; }

.development-notice {
  border-block: 1px solid #7f1d1d;
  background: #991b1b;
  color: #fff;
}
.demo-pulse {
  width: .55rem;
  height: .55rem;
  flex: none;
  border-radius: 999px;
  background: #fef08a;
  box-shadow: 0 0 0 .25rem rgba(254, 240, 138, .18);
}
.demo-card-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(153, 27, 27, .94);
  padding: .35rem .65rem;
  color: #fff;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 .4rem 1.1rem rgba(0, 0, 0, .2);
}
.demo-consent-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(8, 10, 9, .82);
  backdrop-filter: blur(12px);
}
.demo-consent-pending .demo-consent-modal { display: grid; }
.demo-consent-pending body { overflow: hidden; }
.demo-consent-card {
  width: min(100%, 39rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  padding: clamp(1.35rem, 4vw, 2.25rem);
  color: var(--ink);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, .42);
}
.demo-consent-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  background: #991b1b;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.demo-consent-fact {
  display: flex;
  gap: .75rem;
  border-radius: .9rem;
  background: var(--surface-soft);
  padding: .8rem .9rem;
}
.demo-consent-fact svg { color: #991b1b; }
.dark .demo-consent-fact svg { color: #fca5a5; }
.demo-consent-check {
  display: flex;
  gap: .75rem;
  border: 2px solid rgba(108, 92, 231, .25);
  border-radius: 1rem;
  padding: 1rem;
  font-size: .87rem;
  font-weight: 750;
  line-height: 1.5;
  cursor: pointer;
}
.demo-consent-check:focus-within { border-color: var(--electric); }

.error-page { display: flex; min-height: 65vh; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1rem; text-align: center; }
.error-code { font-family: Manrope, sans-serif; font-size: clamp(5rem, 18vw, 10rem); font-weight: 950; line-height: .8; color: transparent; -webkit-text-stroke: 2px rgba(108, 92, 231, .45); }
.error-page h1 { margin-top: 2rem; font-family: Manrope, sans-serif; font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 950; letter-spacing: -.04em; }
.error-page p { max-width: 35rem; margin-top: 1rem; color: var(--muted); line-height: 1.7; }
.error-page > .button-primary { margin-top: 1.75rem; }

@media (min-width: 40rem) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; }
}
@media (min-width: 64rem) {
  .section-shell { width: min(100% - 3rem, 80rem); padding-block: 5.5rem; }
  .offer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .auth-shell { grid-template-columns: minmax(0, 1.05fr) minmax(32rem, .95fr); }
  .auth-art { display: flex; }
  .admin-layout { grid-template-columns: 16rem minmax(0, 1fr); }
  .admin-sidebar { position: sticky; top: 0; transform: none; }
  .admin-content { padding: 2rem; }
}
@media (max-width: 63.99rem) {
  .filter-panel { position: fixed; z-index: 80; inset: 0 auto 0 0; width: min(21rem, 88vw); overflow-y: auto; transform: translateX(-105%); border-radius: 0 1.25rem 1.25rem 0; box-shadow: 20px 0 60px rgba(0, 0, 0, .22); transition: transform .2s ease; }
  .filter-panel.is-open { transform: translateX(0); }
}
@media (max-width: 31rem) {
  .section-heading { align-items: start; flex-direction: column; }
  .catalog-toolbar { align-items: stretch; }
  .catalog-toolbar .search-box { flex-basis: 100%; }
  .select-label { justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
