:root {
  --bg: #0b0f14;
  --bg-deep: #080b10;
  --panel: rgba(17, 21, 28, 0.9);
  --panel-strong: #131821;
  --panel-soft: rgba(20, 25, 34, 0.72);
  --panel-elevated: rgba(24, 30, 40, 0.94);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --ink: #f6f2e9;
  --ink-soft: #c4c0b8;
  --ink-muted: #8f98a4;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gold: #f4c56c;
  --gold-deep: #d39d34;
  --orange: #f38a2b;
  --orange-deep: #d76414;
  --green: #2ab66a;
  --green-deep: #1d9152;
  --blue: #67b4ff;
  --danger: #f56a6a;
  --warning: #ffb257;
  --shadow-xl: 0 32px 120px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 18px 36px rgba(0, 0, 0, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --container: min(1320px, calc(100% - 36px));
  --container-wide: min(1440px, calc(100% - 36px));
  --admin-rail-bg: #0d1218;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.74);
  --panel-elevated: rgba(255, 255, 255, 0.94);
  --surface: rgba(14, 24, 39, 0.04);
  --surface-strong: rgba(14, 24, 39, 0.08);
  --surface-soft: rgba(14, 24, 39, 0.03);
  --ink: #172131;
  --ink-soft: #4f5f77;
  --ink-muted: #75829a;
  --line: rgba(18, 29, 44, 0.1);
  --line-strong: rgba(18, 29, 44, 0.18);
  --shadow-xl: 0 32px 120px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.1);
  --shadow-md: 0 18px 36px rgba(15, 23, 42, 0.08);
  --admin-rail-bg: #eef3f9;
}

html[data-theme="system"] {
  color-scheme: light dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 197, 108, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(42, 182, 106, 0.1), transparent 22%),
    radial-gradient(circle at 30% 120%, rgba(243, 138, 43, 0.16), transparent 24%),
    linear-gradient(180deg, #0d1218 0%, #090c11 100%);
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0, transparent 28%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.02) 0, transparent 35%);
  opacity: 0.9;
}

body.area-admin {
  background:
    radial-gradient(circle at top right, rgba(244, 197, 108, 0.12), transparent 22%),
    radial-gradient(circle at 8% 90%, rgba(103, 180, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #0b0f14 0%, #090c11 100%);
}

body.area-admin::before {
  opacity: 0.45;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(244, 197, 108, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(42, 182, 106, 0.12), transparent 24%),
    radial-gradient(circle at 30% 120%, rgba(103, 180, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.02) 0, transparent 28%),
    linear-gradient(300deg, rgba(15, 23, 42, 0.025) 0, transparent 35%);
}

html[data-theme="light"] body.area-admin {
  background:
    radial-gradient(circle at top right, rgba(244, 197, 108, 0.18), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(103, 180, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f7fb 0%, #edf2f8 100%);
}

html[data-theme="light"] body.area-admin::before {
  opacity: 0.22;
}

html[data-theme="light"] select option {
  background: #ffffff;
}

@media (prefers-color-scheme: light) {
  html[data-theme="system"] {
    --panel: rgba(255, 255, 255, 0.88);
    --panel-strong: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.74);
    --panel-elevated: rgba(255, 255, 255, 0.94);
    --surface: rgba(14, 24, 39, 0.04);
    --surface-strong: rgba(14, 24, 39, 0.08);
    --surface-soft: rgba(14, 24, 39, 0.03);
    --ink: #172131;
    --ink-soft: #4f5f77;
    --ink-muted: #75829a;
    --line: rgba(18, 29, 44, 0.1);
    --line-strong: rgba(18, 29, 44, 0.18);
    --shadow-xl: 0 32px 120px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.1);
    --shadow-md: 0 18px 36px rgba(15, 23, 42, 0.08);
    --admin-rail-bg: #eef3f9;
  }

  html[data-theme="system"] body {
    background:
      radial-gradient(circle at top left, rgba(244, 197, 108, 0.18), transparent 28%),
      radial-gradient(circle at top right, rgba(42, 182, 106, 0.12), transparent 24%),
      radial-gradient(circle at 30% 120%, rgba(103, 180, 255, 0.16), transparent 26%),
      linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  }

  html[data-theme="system"] body::before {
    background:
      linear-gradient(120deg, rgba(15, 23, 42, 0.02) 0, transparent 28%),
      linear-gradient(300deg, rgba(15, 23, 42, 0.025) 0, transparent 35%);
  }

  html[data-theme="system"] body.area-admin {
    background:
      radial-gradient(circle at top right, rgba(244, 197, 108, 0.18), transparent 24%),
      radial-gradient(circle at 8% 90%, rgba(103, 180, 255, 0.12), transparent 28%),
      linear-gradient(180deg, #f4f7fb 0%, #edf2f8 100%);
  }

  html[data-theme="system"] body.area-admin::before {
    opacity: 0.22;
  }

  html[data-theme="system"] select option {
    background: #ffffff;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(196, 192, 184, 0.55);
}

select option {
  background: #10151d;
  color: var(--ink);
}

small {
  color: var(--ink-muted);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(244, 197, 108, 0.45);
  box-shadow: 0 0 0 4px rgba(244, 197, 108, 0.08);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.container,
.container-wide {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: var(--container);
}

.container-wide {
  max-width: var(--container-wide);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.26rem;
  line-height: 1.1;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.text-muted {
  color: var(--ink-muted);
}

.site-main,
.admin-content {
  padding-bottom: 72px;
}

.page-section {
  padding: 34px 0;
}

.surface,
.card,
.metric-card,
.info-card,
.summary-card,
.list-card,
.product-card,
.campaign-card,
.dashboard-panel,
.tree-card,
.table-card,
.login-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.card,
.metric-card,
.info-card,
.summary-card,
.list-card,
.product-card,
.campaign-card,
.dashboard-panel,
.tree-card,
.table-card,
.login-panel,
.surface {
  border-radius: var(--radius-lg);
}

.eyebrow,
.pill,
.tag,
.chip,
.status-pill,
.role-pill,
.tiny-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pill,
.tag,
.chip,
.status-pill,
.role-pill,
.tiny-pill {
  padding: 0.58rem 0.9rem;
  font-size: 0.84rem;
}

.pill {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 52%, #ffcf7b 100%);
  color: #16120a;
  box-shadow: 0 12px 24px rgba(243, 138, 43, 0.2);
}

.pill-secondary {
  background: linear-gradient(135deg, rgba(42, 182, 106, 0.95), rgba(93, 215, 147, 0.95));
  color: #09120f;
}

.pill-outline,
.chip,
.tag,
.tiny-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.tag {
  color: var(--gold);
}

.status-pill--success {
  background: rgba(42, 182, 106, 0.14);
  color: #80efb0;
}

.status-pill--warning {
  background: rgba(243, 138, 43, 0.14);
  color: #ffc27e;
}

.status-pill--danger {
  background: rgba(245, 106, 106, 0.12);
  color: #ffaaaa;
}

.status-pill--info {
  background: rgba(103, 180, 255, 0.14);
  color: #a7d1ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #12100c;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 55%, #ffdb95 100%);
  box-shadow: 0 14px 32px rgba(243, 138, 43, 0.28);
}

.btn-secondary {
  color: #08130d;
  background: linear-gradient(135deg, rgba(42, 182, 106, 0.96), rgba(116, 232, 168, 0.94));
  box-shadow: 0 14px 30px rgba(42, 182, 106, 0.18);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--ink-soft);
  background: transparent;
}

.btn-small {
  min-height: 40px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
}

.demo-topline {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 13, 18, 0.84);
}

.demo-topline__inner {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.demo-topline__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-topline__meta p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.demo-topline__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.theme-switch button {
  min-height: 34px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-muted);
  font-weight: 600;
}

.theme-switch button.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #15120c;
}

.site-header {
  position: sticky;
  top: 56px;
  z-index: 35;
  padding: 16px 0 0;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  background: rgba(12, 16, 22, 0.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-lg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--ink-muted);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.nav-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-weight: 700;
}

.cart-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #15120c;
}

.site-footer {
  padding: 28px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 1.2rem;
}

.footer-card {
  padding: 1.4rem;
}

.footer-links {
  display: grid;
  gap: 0.78rem;
  margin-top: 1rem;
}

.footer-links a,
.footer-links span {
  color: var(--ink-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(42, 182, 106, 0.98), rgba(116, 232, 168, 0.92));
  color: #08130d;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.4rem;
}

.hero-slider,
.hero-aside,
.feature-strip,
.section-card {
  overflow: hidden;
}

.hero-slider {
  position: relative;
  padding: 1.6rem;
  min-height: 560px;
}

.hero-slider__layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 197, 108, 0.16), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(42, 182, 106, 0.12), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.hero-slider__body {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: space-between;
}

.hero-copy p {
  max-width: 52ch;
  font-size: 1.02rem;
}

.hero-actions,
.hero-metrics,
.hero-tags,
.section-actions,
.detail-meta,
.inline-actions,
.branch-tags,
.filter-row,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url("../images/cover-graphic.svg") center/cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(8, 11, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-overlay strong {
  font-size: 1.06rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  padding: 1rem;
}

.metric-card span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.metric-card strong {
  display: block;
  margin: 0.5rem 0 0.18rem;
  font-size: 1.45rem;
  font-family: "Sora", sans-serif;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.slider-dots button.active {
  width: 28px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.stack-card {
  padding: 1.2rem;
}

.stack-card--branch {
  display: grid;
  gap: 1rem;
}

.branch-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.branch-inline strong {
  font-size: 1.08rem;
}

.feature-strip {
  padding: 1.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-tile {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-tile strong {
  display: block;
  margin-bottom: 0.42rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head__copy {
  display: grid;
  gap: 0.5rem;
}

.section-head p {
  max-width: 60ch;
}

.grid-2,
.grid-3,
.grid-4,
.product-grid,
.campaign-grid,
.insight-grid,
.summary-grid,
.dashboard-grid,
.login-grid,
.contact-grid,
.report-grid,
.appearance-grid,
.settings-grid,
.kpi-grid,
.branch-grid {
  display: grid;
  gap: 1rem;
}

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

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

.grid-4,
.product-grid,
.kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.summary-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.dashboard-grid {
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
}

.contact-grid,
.report-grid,
.appearance-grid,
.settings-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.insight-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.section-card,
.stack-card,
.dashboard-panel,
.table-card,
.tree-card,
.info-card,
.summary-card {
  padding: 1.25rem;
}

.category-scroller,
.chip-scroller {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.category-scroller::-webkit-scrollbar,
.chip-scroller::-webkit-scrollbar {
  display: none;
}

.category-chip,
.filter-chip,
.choice-chip,
.tab-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  min-width: max-content;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-chip:hover,
.filter-chip:hover,
.choice-chip:hover,
.tab-chip:hover,
.category-chip.active,
.filter-chip.active,
.choice-chip.active,
.tab-chip.active {
  color: var(--ink);
  border-color: rgba(244, 197, 108, 0.32);
  background: rgba(244, 197, 108, 0.08);
  transform: translateY(-1px);
}

.category-chip .icon-badge,
.filter-chip .icon-badge {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 0.72rem;
}

.product-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.product-art {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, var(--art-start, rgba(244, 197, 108, 0.7)), var(--art-end, rgba(243, 138, 43, 0.35)));
}

.product-art--large {
  min-height: 420px;
}

.product-art__plate,
.product-art__core,
.product-art__leaf,
.product-art__spark,
.product-art__ring {
  position: absolute;
  display: block;
}

.product-art__plate {
  inset: auto 12% 14% 12%;
  height: 52%;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.78);
  box-shadow:
    inset 0 -18px 28px rgba(0, 0, 0, 0.08),
    0 30px 50px rgba(0, 0, 0, 0.18);
}

.product-art__core {
  inset: auto 22% 24% 22%;
  border-radius: 42% 46% 38% 40%;
  background: var(--art-accent, rgba(17, 17, 17, 0.45));
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.18);
}

.product-art__ring {
  width: 86%;
  height: 86%;
  top: 7%;
  left: 7%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
}

.product-art__spark {
  width: 108px;
  height: 108px;
  top: -24px;
  right: -12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.product-art__leaf {
  width: 34px;
  height: 16px;
  border-radius: 100px;
  background: rgba(42, 182, 106, 0.76);
  transform: rotate(-16deg);
}

.product-art__leaf--1 {
  bottom: 34%;
  right: 23%;
}

.product-art__leaf--2 {
  bottom: 28%;
  left: 26%;
}

.product-art__copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(11, 15, 20, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.product-art__copy small {
  color: rgba(246, 242, 233, 0.76);
}

.product-art[data-art="burger"] .product-art__core {
  height: 26%;
  background:
    linear-gradient(180deg, #7f3b12 0 30%, #ffcb6f 30% 48%, #3d2416 48% 62%, #3ca35c 62% 72%, #ffd46f 72% 84%, #5b381d 84% 100%);
}

.product-art[data-art="pizza"] .product-art__core {
  height: 27%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffd984 0 45%, #f28b42 45% 65%, #9d4a15 65% 76%, #fdf1d4 76% 100%);
}

.product-art[data-art="bowl"] .product-art__core {
  height: 24%;
  border-radius: 44% 44% 40% 40%;
  background:
    linear-gradient(180deg, #2b7d47 0 24%, #ffd084 24% 48%, #ff7a2e 48% 62%, #e9efe4 62% 76%, #46372d 76% 100%);
}

.product-art[data-art="dessert"] .product-art__core {
  height: 26%;
  border-radius: 38% 38% 24% 24%;
  background:
    linear-gradient(180deg, #fdf5e4 0 34%, #f0d3ab 34% 64%, #8d4d22 64% 100%);
}

.product-art[data-art="coffee"] .product-art__core {
  height: 28%;
  border-radius: 18px 18px 30px 30px;
  background:
    linear-gradient(180deg, #f7efe1 0 22%, #88532f 22% 100%);
}

.product-art[data-art="drink"] .product-art__core {
  height: 30%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.44) 0 20%, #3ca9ff 20% 52%, #2ab66a 52% 78%, #0d2334 78% 100%);
}

.product-art[data-art="sandwich"] .product-art__core {
  height: 24%;
  border-radius: 40px;
  background:
    linear-gradient(180deg, #f7d690 0 24%, #d7a15a 24% 34%, #2d4d1f 34% 44%, #f8efe4 44% 54%, #6c391d 54% 74%, #f7d690 74% 100%);
}

.product-meta {
  display: grid;
  gap: 0.72rem;
}

.product-meta h3 {
  font-size: 1.2rem;
}

.meta-line,
.price-line,
.card-row,
.split-row,
.timeline-row,
.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.meta-line {
  flex-wrap: wrap;
}

.price-line strong {
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
}

.price-line span {
  color: var(--ink-muted);
  text-decoration: line-through;
}

.campaign-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem;
}

.campaign-hero {
  position: relative;
  min-height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(244, 197, 108, 0.18), rgba(243, 138, 43, 0.12) 48%, rgba(42, 182, 106, 0.14)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.campaign-hero::before,
.campaign-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.campaign-hero::before {
  width: 140px;
  height: 140px;
  top: -34px;
  right: -26px;
}

.campaign-hero::after {
  width: 90px;
  height: 90px;
  bottom: -18px;
  left: -18px;
}

.bundle-list,
.detail-list,
.list-stack,
.campaign-points,
.branch-list,
.status-list,
.metric-list,
.tree-list,
.permission-list,
.timeline-list,
.faq-list {
  display: grid;
  gap: 0.78rem;
}

.bundle-list div,
.detail-list div,
.metric-list div,
.timeline-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.menu-layout,
.checkout-layout,
.cart-layout,
.detail-layout,
.admin-form-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.menu-layout,
.checkout-layout,
.cart-layout,
.detail-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.admin-form-layout {
  grid-template-columns: 1fr 360px;
}

.filter-panel,
.sticky-card,
.builder-panel {
  position: sticky;
  top: 132px;
}

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

.field {
  display: grid;
  gap: 0.55rem;
}

.field label,
.field strong {
  color: var(--ink);
  font-weight: 600;
}

.hint {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.segmented,
.option-grid,
.toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.segmented button,
.option-tile,
.toggle-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.segmented button.active,
.option-tile.active,
.toggle-card.active {
  color: var(--ink);
  border-color: rgba(244, 197, 108, 0.34);
  background: rgba(244, 197, 108, 0.08);
}

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

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.quantity-control button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.quantity-control strong {
  min-width: 28px;
  text-align: center;
}

.summary-card {
  display: grid;
  gap: 1rem;
}

.summary-lines {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.summary-line strong {
  font-family: "Sora", sans-serif;
}

.summary-line--total {
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.timeline {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 1 1 130px;
  display: grid;
  gap: 0.5rem;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.timeline-step.active {
  border-color: rgba(42, 182, 106, 0.35);
  background: rgba(42, 182, 106, 0.1);
}

.timeline-step.pending {
  opacity: 0.72;
}

.compact-product {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.compact-product .product-art {
  min-height: 88px;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 15% 20%, rgba(103, 180, 255, 0.18), transparent 18%),
    radial-gradient(circle at 78% 16%, rgba(244, 197, 108, 0.18), transparent 22%),
    radial-gradient(circle at 38% 72%, rgba(42, 182, 106, 0.16), transparent 18%),
    #11161f;
  border: 1px solid var(--line);
}

.map-line {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.map-line--1 {
  width: 68%;
  height: 42%;
  top: 20%;
  left: 10%;
  transform: rotate(-8deg);
}

.map-line--2 {
  width: 56%;
  height: 28%;
  bottom: 14%;
  right: 10%;
  transform: rotate(12deg);
}

.map-marker {
  position: absolute;
  display: grid;
  gap: 0.4rem;
  min-width: 170px;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(10, 13, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.map-marker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 0 8px rgba(244, 197, 108, 0.12);
}

.faq-item,
.branch-card,
.order-card,
.queue-card,
.theme-card,
.provider-card,
.cms-card,
.role-card,
.permission-card,
.stats-card,
.coupon-card {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.branch-card__head,
.table-stat,
.chart-meta,
.theme-card__head,
.provider-card__head,
.cms-card__head,
.role-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.admin-shell {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
  background: linear-gradient(90deg, var(--admin-rail-bg) 0, var(--admin-rail-bg) 300px, transparent 300px);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  height: 100vh;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  backdrop-filter: none;
  overflow: hidden;
}

.admin-sidebar__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem;
  height: 100%;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-nav {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid transparent;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
  color: var(--ink);
  background: rgba(244, 197, 108, 0.08);
  border: 1px solid rgba(244, 197, 108, 0.16);
}

.admin-nav a span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-main {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: none;
}

.admin-topbar__meta {
  display: grid;
  gap: 0.34rem;
}

.admin-topbar__meta strong {
  font-size: 1.04rem;
}

.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-user {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
}

.admin-user span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #15120c;
  font-weight: 800;
}

.admin-demo-banner {
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(244, 197, 108, 0.14), rgba(243, 138, 43, 0.1) 48%, rgba(42, 182, 106, 0.12)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 197, 108, 0.22);
}

.admin-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-wrap {
  display: grid;
  gap: 0.9rem;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
}

.legend-item span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.chart-svg {
  width: 100%;
  height: 240px;
  display: block;
}

.bars {
  display: grid;
  gap: 0.8rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.bar-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.bar-fill--green {
  background: linear-gradient(90deg, var(--green), #7de2a4);
}

.table-card table,
.matrix-table {
  width: 100%;
  border-collapse: collapse;
}

.table-card th,
.table-card td,
.matrix-table th,
.matrix-table td {
  padding: 0.95rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.table-card th,
.matrix-table th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.table-card tr:last-child td,
.matrix-table tr:last-child td {
  border-bottom: 0;
}

.table-scroll,
.permission-matrix {
  overflow-x: auto;
}

.tree-node {
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tree-node__children {
  display: grid;
  gap: 0.65rem;
  padding-left: 1rem;
  margin-left: 0.75rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.14);
}

.permission-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.permission-cell.allowed {
  color: #102013;
  background: rgba(42, 182, 106, 0.88);
}

.appearance-preview {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(244, 197, 108, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.swatch {
  width: 88px;
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.swatch-sample {
  height: 36px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.login-grid {
  width: min(1240px, 100%);
  grid-template-columns: 1.08fr 0.92fr;
}

.login-showcase,
.login-panel {
  padding: 1.5rem;
}

.login-showcase {
  display: grid;
  gap: 1rem;
}

.showcase-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(244, 197, 108, 0.2), rgba(243, 138, 43, 0.1) 48%, rgba(42, 182, 106, 0.12)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.showcase-hero::before,
.showcase-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-hero::before {
  width: 240px;
  height: 240px;
  top: -40px;
  right: -20px;
}

.showcase-hero::after {
  width: 180px;
  height: 180px;
  bottom: -10px;
  left: -10px;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 120;
  display: grid;
  gap: 0.8rem;
  width: min(360px, calc(100% - 28px));
}

.toast {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(10, 13, 18, 0.92);
  border: 1px solid rgba(244, 197, 108, 0.26);
  box-shadow: var(--shadow-lg);
  transform: translateY(10px);
  opacity: 0;
  animation: toast-in 0.24s ease forwards;
}

.toast small {
  color: var(--ink-muted);
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fade-in 0.45s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .summary-grid,
  .dashboard-grid,
  .insight-grid,
  .menu-layout,
  .checkout-layout,
  .cart-layout,
  .detail-layout,
  .admin-form-layout,
  .contact-grid,
  .report-grid,
  .appearance-grid,
  .settings-grid,
  .login-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .product-grid,
  .kpi-grid,
  .grid-3,
  .campaign-grid,
  .branch-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .sticky-card,
  .filter-panel,
  .builder-panel {
    position: static;
  }
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
    background: none;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--admin-rail-bg);
  }

  .admin-sidebar__inner {
    grid-template-rows: auto auto auto;
  }

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

  .admin-main {
    padding: 18px;
  }

  .hero-slider__body,
  .showcase-metrics,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .container-wide {
    max-width: calc(100% - 24px);
  }

  .demo-topline__inner,
  .demo-topline__meta,
  .site-nav,
  .admin-topbar,
  .admin-page-head,
  .section-head,
  .card-row,
  .split-row,
  .table-toolbar,
  .branch-inline,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    top: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(10, 13, 18, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .grid-4,
  .product-grid,
  .kpi-grid,
  .grid-3,
  .campaign-grid,
  .branch-grid,
  .grid-2,
  .footer-grid,
  .field-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .compact-product {
    grid-template-columns: 1fr;
  }

  .compact-product .product-art {
    min-height: 180px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .toast-stack {
    right: 14px;
    left: 14px;
    width: auto;
  }

  .map-marker {
    min-width: 140px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }
}
