:root {
  --primary: #f97316;
  --primary-dark: #c2410c;
  --primary-soft: #fff1e5;
  --accent: #16a34a;
  --accent-soft: #ecfdf3;
  --ink: #14213d;
  --ink-soft: #60708a;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-muted: #f8f5ef;
  --border: rgba(20, 33, 61, 0.1);
  --border-strong: rgba(20, 33, 61, 0.18);
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 18px 36px rgba(15, 23, 42, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1220px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 30%),
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.11), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f7f6f2 100%);
}

body.area-admin {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.11), transparent 20%),
    linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

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

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

.site-main {
  padding-bottom: 64px;
}

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

.surface-card,
.data-card,
.list-card,
.summary-card,
.contact-card,
.success-card,
.campaign-card,
.category-card,
.product-card,
.admin-stat {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.surface-card,
.data-card,
.list-card,
.summary-card,
.contact-card,
.success-card,
.campaign-card,
.product-card,
.category-card {
  border-radius: var(--radius-lg);
}

.eyebrow,
.pill,
.feature-chip,
.tag,
.coupon-chip,
.chip-button,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pill {
  padding: 0.52rem 0.9rem;
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
  font-size: 0.84rem;
}

.pill-soft {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.pill-success {
  background: linear-gradient(135deg, var(--success) 0%, #22c55e 100%);
}

.feature-chip,
.tag,
.coupon-chip,
.chip-button {
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(20, 33, 61, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 0.84rem;
}

.tag {
  padding: 0.48rem 0.76rem;
  font-size: 0.76rem;
  color: var(--primary-dark);
  background: rgba(249, 115, 22, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.32rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  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 {
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent) 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.2);
}

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

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

.btn-small {
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
}

.section-head,
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.section-copy {
  max-width: 560px;
}

.site-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(20, 33, 61, 0.96) 0%, rgba(35, 48, 74, 0.96) 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-topline__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 0;
  font-size: 0.92rem;
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 18px 0;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14) 0%, rgba(22, 163, 74, 0.12) 100%);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.16);
}

.brand-mark img {
  width: 38px;
  height: 38px;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

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

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.nav-links {
  justify-content: center;
}

.nav-links a {
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.86rem 1rem;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.96);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(20, 33, 61, 0.16);
}

.cart-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 1);
}

.site-footer {
  padding: 42px 0 36px;
  border-top: 1px solid rgba(20, 33, 61, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.4rem;
  padding: 1.7rem 0 1.2rem;
}

.site-footer__brand p {
  margin-top: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}

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

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(20, 33, 61, 0.08);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.28);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.page-qr-menu #site-whatsapp {
  display: none;
}

.hero-shell {
  padding-top: 28px;
}

.hero-grid,
.detail-layout,
.checkout-layout,
.cart-layout,
.two-col,
.admin-auth__grid,
.page-hero__grid {
  display: grid;
  gap: 1.4rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.page-hero__aside,
.detail-card,
.summary-card,
.list-card,
.data-card,
.login-card,
.login-side {
  padding: 1.6rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-copy h1,
.page-hero__content h1,
.success-card h1,
.admin-hero h1,
.login-card h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.02;
}

.hero-actions,
.detail-actions,
.product-actions,
.success-actions,
.form-actions,
.admin-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-list,
.tag-row,
.service-area-list,
.toolbar-chips,
.coupon-list,
.hours-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stats,
.quick-grid,
.product-grid,
.campaign-preview-grid,
.benefit-grid,
.contact-grid,
.campaign-grid,
.qr-grid,
.preset-grid,
.stat-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card {
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-md);
}

.stat-card span,
.stat-card small,
.product-meta span,
.summary-row span,
.summary-item span,
.metric-bar__label span,
.mini-order span,
.table-product span,
.success-meta span {
  color: var(--ink-soft);
}

.stat-card strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1.5rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-cover {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-cover img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.slider-shell {
  margin-top: -82px;
  position: relative;
  z-index: 1;
}

.slider-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow);
}

.slider-card--green {
  background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
}

.slider-card--amber {
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.slider-card--orange {
  background: linear-gradient(135deg, #c2410c 0%, #fb923c 100%);
}

.slider-card--ink {
  background: linear-gradient(135deg, #14213d 0%, #334155 100%);
}

.slider-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.slider-card strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

.slider-card p,
.slider-meta span,
.slider-meta a {
  color: rgba(255, 255, 255, 0.86);
}

.slider-meta,
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.slider-control,
.slider-dot {
  border: 0;
}

.slider-control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1rem;
}

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

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
  background: #fff;
}

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

.category-card {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.category-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.11);
  color: var(--primary-dark);
  font-weight: 800;
}

.category-card small {
  color: var(--primary-dark);
  font-weight: 700;
}

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

.product-card {
  overflow: hidden;
}

.product-media {
  display: block;
  padding: 1rem 1rem 0;
}

.product-media img,
.detail-gallery img,
.preview-card img,
.qr-product img {
  width: 100%;
  border-radius: 24px;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 1rem 1.1rem;
}

.product-meta,
.price-row,
.cart-item__meta,
.summary-item,
.summary-row,
.table-actions,
.metric-bar__label,
.provider-card,
.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-meta strong,
.price-row strong,
.summary-row strong,
.summary-item strong {
  font-family: "Sora", sans-serif;
}

.compare-table {
  overflow: hidden;
}

.compare-table__head,
.compare-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.1fr;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.compare-table__head {
  background: rgba(20, 33, 61, 0.96);
  color: #fff;
  font-weight: 800;
}

.compare-row:nth-child(odd) {
  background: rgba(249, 115, 22, 0.03);
}

.compare-row__business {
  color: var(--accent);
  font-weight: 800;
}

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

.campaign-card,
.benefit-card {
  padding: 1.4rem;
}

.campaign-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.campaign-card--featured {
  min-height: 100%;
}

.campaign-card--green {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.12), rgba(255, 255, 255, 0.92));
}

.campaign-card--amber {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.13), rgba(255, 255, 255, 0.92));
}

.campaign-card--orange {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.13), rgba(255, 255, 255, 0.92));
}

.campaign-card--ink {
  background: linear-gradient(180deg, rgba(20, 33, 61, 0.12), rgba(255, 255, 255, 0.92));
}

.campaign-card__meta,
.stack-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.page-hero__grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.page-hero__content,
.page-hero__aside {
  padding: 1.45rem 0;
}

.page-hero__aside {
  border-radius: var(--radius-lg);
}

.menu-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.2rem;
}

.sidebar-card {
  padding: 1.2rem;
}

.menu-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-filter-list,
.qr-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.menu-filter {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-soft);
  font-weight: 700;
}

.menu-filter.active {
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary-dark);
  border-color: rgba(249, 115, 22, 0.22);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.toolbar-search {
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.toolbar-search span,
.field span,
.field-label,
.muted {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.breadcrumb {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.detail-gallery,
.map-card {
  padding: 1rem;
}

.detail-card,
.summary-card,
.list-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.info-chip {
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(20, 33, 61, 0.05);
}

.info-chip strong {
  display: block;
  margin-bottom: 0.3rem;
}

.quantity-control,
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.05);
  width: fit-content;
}

.quantity-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(20, 33, 61, 0.08);
}

.quantity-value {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(20, 33, 61, 0.08);
}

.cart-item:first-child {
  border-top: 0;
}

.cart-item__media img {
  border-radius: 20px;
}

.cart-item__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
}

.coupon-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.summary-block,
.summary-items,
.provider-card,
.payment-preview {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-total {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(20, 33, 61, 0.08);
}

.summary-row--muted {
  font-size: 0.92rem;
}

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

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  text-align: center;
}

.option-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.option-card.is-active {
  border-color: rgba(249, 115, 22, 0.38);
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-dark);
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field--full.is-hidden {
  display: none;
}

.payment-panel {
  display: none;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(20, 33, 61, 0.04);
}

.payment-panel.is-active {
  display: block;
}

.payment-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.secure-note,
.demo-note,
.summary-alert {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(20, 33, 61, 0.05);
  color: var(--ink-soft);
}

.success-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

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

.success-meta div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(20, 33, 61, 0.05);
}

.timeline {
  display: grid;
  gap: 0.7rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(20, 33, 61, 0.04);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 33, 61, 0.08);
  font-weight: 800;
}

.timeline-item.is-active span {
  background: rgba(22, 163, 74, 0.14);
  color: var(--success);
}

.campaign-feature {
  padding: 0.4rem;
}

.qr-shell {
  padding-bottom: 110px;
}

.qr-header {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

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

.qr-product {
  overflow: hidden;
}

.qr-product__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sticky-action {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(20, 33, 61, 0.96);
  color: #fff;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 26px;
}

.hours-list span,
.service-area-list span {
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(20, 33, 61, 0.04);
}

.admin-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 1.2rem;
  background: linear-gradient(180deg, #14213d 0%, #1f3357 100%);
  color: #fff;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.admin-brand__mark {
  background: rgba(255, 255, 255, 0.08);
}

.admin-brand small,
.admin-topbar__meta span,
.admin-sidebar__foot p {
  color: rgba(255, 255, 255, 0.72);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-nav__item {
  padding: 0.88rem 1rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.admin-nav__item.active,
.admin-nav__item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-sidebar__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.4rem;
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem 0;
}

.admin-topbar__meta {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

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

.admin-user {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.admin-user span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.admin-demo-banner {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 1rem 1.5rem 0;
}

.admin-demo-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.admin-content {
  padding: 1.4rem 1.5rem 2rem;
}

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

.admin-hero p {
  max-width: 760px;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.admin-stat {
  padding: 1.2rem;
  border-radius: 24px;
}

.admin-stat strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1.85rem;
}

.tone-primary {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0.94));
}

.tone-success {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.14), rgba(255, 255, 255, 0.94));
}

.tone-accent {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.12), rgba(255, 255, 255, 0.94));
}

.tone-neutral {
  background: linear-gradient(180deg, rgba(20, 33, 61, 0.08), rgba(255, 255, 255, 0.94));
}

.data-grid,
.data-grid--dashboard {
  display: grid;
  gap: 1rem;
}

.data-grid--dashboard {
  grid-template-columns: 1.2fr 0.8fr;
}

.stack-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-card {
  padding: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.92rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
  vertical-align: top;
}

th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

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

.toolbar-row--filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.toolbar-search--wide {
  max-width: 440px;
}

.table-product {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.table-product img {
  width: 68px;
  border-radius: 18px;
}

.toggle {
  width: 56px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.12);
  position: relative;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.toggle.is-on {
  background: rgba(22, 163, 74, 0.26);
}

.toggle.is-on::after {
  transform: translateX(24px);
}

.status-badge {
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  background: rgba(20, 33, 61, 0.08);
}

.status-yeni {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
}

.status-hazirlaniyor {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
}

.status-yolda {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.14);
}

.status-tamamlandi {
  color: #166534;
  background: rgba(22, 163, 74, 0.14);
}

.mini-order {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(20, 33, 61, 0.05);
}

.metric-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-bar__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.08);
  overflow: hidden;
}

.metric-bar__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.dropzone,
.preview-banner,
.provider-card,
.theme-preview {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(20, 33, 61, 0.05);
}

.preview-banner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.preview-banner--campaign p {
  color: var(--ink-soft);
}

.preview-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-card--theme {
  --preview-primary: #f97316;
  --preview-secondary: #16a34a;
  --preview-surface: #fff8ef;
  --preview-ink: #14213d;
}

.theme-preview {
  background: var(--preview-surface);
  color: var(--preview-ink);
}

.theme-preview__hero {
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--preview-primary) 0%, var(--preview-secondary) 100%);
  color: #fff;
}

.theme-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.theme-preview__cards article {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.preset-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.preset-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
}

.preset-card.active {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}

.preset-swatches {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.preset-swatches span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.admin-auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.admin-auth__grid {
  grid-template-columns: 0.95fr 1.05fr;
  width: min(1120px, 100%);
}

.login-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.feature-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.feature-stack span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.06);
  color: var(--ink);
  font-weight: 700;
}

.toast-stack {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: min(360px, calc(100vw - 32px));
}

.toast {
  transform: translateY(-8px);
  opacity: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--info {
  background: rgba(20, 33, 61, 0.95);
}

.toast--success {
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
}

.toast--warning {
  background: linear-gradient(135deg, #c2410c 0%, #f59e0b 100%);
}

@media (max-width: 1180px) {
  .product-grid,
  .quick-grid,
  .contact-grid,
  .stat-grid,
  .campaign-preview-grid,
  .campaign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .data-grid--dashboard,
  .admin-auth__grid,
  .success-layout {
    grid-template-columns: 1fr;
  }

  .menu-layout,
  .detail-layout,
  .checkout-layout,
  .cart-layout,
  .two-col,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: relative;
    height: auto;
  }
}

@media (max-width: 860px) {
  .site-nav {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav {
    position: relative;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-stats,
  .detail-meta-grid,
  .option-grid,
  .field-grid,
  .form-grid,
  .toolbar-row--filters,
  .theme-preview__cards,
  .preset-grid,
  .compare-table__head,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .site-footer__grid,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .qr-header,
  .toolbar,
  .site-topline__inner,
  .site-footer__bottom,
  .admin-topbar,
  .admin-hero,
  .toolbar-row,
  .sticky-action {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .page-section {
    padding: 28px 0;
  }

  .hero-copy,
  .hero-media,
  .page-hero__aside,
  .detail-card,
  .summary-card,
  .list-card,
  .data-card,
  .login-card,
  .login-side,
  .contact-card,
  .campaign-card,
  .category-card,
  .product-content {
    padding: 1.15rem;
  }

  .product-grid,
  .quick-grid,
  .contact-grid,
  .campaign-preview-grid,
  .campaign-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .coupon-box {
    grid-template-columns: 1fr;
  }

  .whatsapp-float,
  .sticky-action {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .toast-stack {
    left: 12px;
    right: 12px;
    top: 12px;
    max-width: none;
  }
}
