:root {
  --bg: #fff5ec;
  --bg-soft: #ffe9d8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-border: rgba(116, 58, 28, 0.12);
  --text: #3d2418;
  --muted: rgba(61, 36, 24, 0.75);
  --primary: #ff5b1f;
  --primary-strong: #ff3d15;
  --secondary: #ffb423;
  --accent: #b56616;
  --shadow: 0 20px 80px rgba(116, 58, 28, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body.landing-body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 91, 31, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 180, 35, 0.22), transparent 26%),
    linear-gradient(180deg, #fff8f2 0%, #fff1e3 48%, #ffe6d1 100%);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

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

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

.page-shell {
  overflow: hidden;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  padding: 14px 0 24px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto auto 10% -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 91, 31, 0.4) 0%, rgba(255, 91, 31, 0) 72%);
  filter: blur(10px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 12px 20px;
  border: 1px solid rgba(116, 58, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.76);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 12px;
  z-index: 10;
}

.brand-lockup img {
  width: min(190px, 38vw);
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-nav,
.btn-secondary-nav,
.btn-outline-mai,
.btn-outline-light-mai {
  border: 1px solid rgba(116, 58, 28, 0.16);
}

.btn-secondary-nav {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary-strong), var(--secondary));
  color: #fff;
  border-color: rgba(255, 120, 45, 0.42);
  box-shadow: 0 16px 32px rgba(255, 91, 31, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28%;
  width: 42%;
  height: 180%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(22deg);
  filter: blur(2px);
  transition: left 0.35s ease;
  pointer-events: none;
}

.btn-nav:hover::after {
  left: 92%;
}

.btn-nav:hover {
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 91, 31, 0.3);
}

.btn-primary-mai {
  background: linear-gradient(135deg, var(--primary-strong), var(--secondary));
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 91, 31, 0.3);
}

.btn-outline-mai {
  color: var(--text);
  background: transparent;
}

.btn-outline-light-mai {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-login-submit {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding: 34px 0 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 205, 134, 0.3);
  border: 1px solid rgba(214, 130, 36, 0.18);
  color: #a65710;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  font-family: "Sora", sans-serif;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 4.55vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 8.6ch;
  text-wrap: balance;
}

.hero-lead,
.section-heading p,
.feature-card p,
.benefit-card p,
.resource-item p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-copy {
  max-width: 520px;
}

.hero-lead {
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.4rem 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.2rem;
}

.hero-metrics div,
.benefit-card,
.mini-highlight {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(116, 58, 28, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.card-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 240, 0.72));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  padding: 1.7rem;
  border-radius: 36px;
  transform: translateY(-10px);
}

.delivery-stage {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.delivery-glow {
  position: absolute;
  inset: 8% 12% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 54, 0.28), rgba(255, 176, 54, 0));
  filter: blur(8px);
}

.hero-device-stack {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  min-height: 500px;
}

.hero-device {
  position: absolute;
}

.hero-device-back {
  top: 34px;
  left: 10px;
  transform: rotate(-8deg);
}

.hero-device-front {
  right: 6px;
  bottom: 10px;
  transform: rotate(7deg);
}

.hero-device-shell {
  width: min(100%, 250px);
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, #fffdfb 0%, #fff2e7 100%);
  border: 1px solid rgba(116, 58, 28, 0.1);
  box-shadow: 0 28px 70px rgba(116, 58, 28, 0.14);
}

.hero-device-notch {
  width: 108px;
  height: 16px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.12);
}

.hero-device-screen {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 248, 241, 0.9);
  box-shadow: inset 0 0 0 1px rgba(116, 58, 28, 0.05);
}

.hero-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-device-note {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.08);
  box-shadow: 0 18px 36px rgba(116, 58, 28, 0.12);
}

.hero-device-note span {
  display: block;
  color: #b36518;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-device-note strong {
  display: block;
  color: #3d2418;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.hero-device-note small {
  color: rgba(61, 36, 24, 0.68);
  line-height: 1.5;
}

.hero-device-note-left {
  top: 38px;
  left: 6px;
}

.hero-device-note-right {
  right: -2px;
  bottom: 46px;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  border-radius: 42px;
  background: linear-gradient(180deg, #fffdfb 0%, #fff2e7 100%);
  padding: 16px;
  border: 1px solid rgba(116, 58, 28, 0.1);
  box-shadow: 0 28px 70px rgba(116, 58, 28, 0.14);
}

.phone-notch {
  width: 120px;
  height: 18px;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.12);
  margin: 0 auto 12px;
}

.phone-screen {
  border-radius: 30px;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 180, 35, 0.2), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, #fff1e6 100%);
}

.app-header,
.checkout-row,
.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.app-header {
  margin-bottom: 1rem;
  color: #3d2418;
}

.app-header small {
  display: block;
  color: rgba(61, 36, 24, 0.58);
  margin-bottom: 0.15rem;
}

.app-header strong {
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
}

.status-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 180, 35, 0.16);
  color: #9f5b10;
  font-size: 0.78rem;
}

.app-hero-banner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.95rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 91, 31, 0.16), rgba(255, 180, 35, 0.22));
  color: #3d2418;
}

.app-hero-banner small {
  display: block;
  color: rgba(61, 36, 24, 0.6);
  margin-bottom: 0.25rem;
}

.app-hero-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
}

.app-hero-banner p {
  margin: 0;
  color: rgba(61, 36, 24, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.app-hero-banner span {
  align-self: flex-start;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.62);
  color: #a65710;
  font-weight: 800;
}

.category-pills {
  display: flex;
  gap: 0.55rem;
  overflow: hidden;
  margin-bottom: 0.95rem;
}

.category-pills span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: rgba(61, 36, 24, 0.72);
  font-size: 0.78rem;
  white-space: nowrap;
}

.category-pills .active {
  background: rgba(255, 180, 35, 0.18);
  color: #9b5d12;
}

.product-list {
  display: grid;
  gap: 0.75rem;
}

.product-card {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.product-card h3 {
  font-size: 1.08rem;
  margin: 0.2rem 0 0.35rem;
  color: #3d2418;
  font-family: "Sora", sans-serif;
}

.product-card p,
.product-card small,
.checkout-row small,
.floating-card small {
  color: rgba(61, 36, 24, 0.68);
}

.featured {
  background: linear-gradient(135deg, rgba(255, 91, 31, 0.18), rgba(255, 180, 35, 0.2));
}

.checkout-row {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.checkout-row span {
  color: #2f1b15;
  background: #ffd278;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 800;
}

.delivery-card {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.08);
  box-shadow: 0 18px 36px rgba(116, 58, 28, 0.12);
}

.delivery-card span {
  display: block;
  color: #b36518;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.delivery-card strong {
  display: block;
  color: #3d2418;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.delivery-card small {
  color: rgba(61, 36, 24, 0.68);
  line-height: 1.5;
}

.delivery-summary {
  top: 34px;
  left: 8px;
}

.delivery-rating {
  right: 10px;
  bottom: 34px;
}

.floating-card {
  position: absolute;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(116, 58, 28, 0.08);
  box-shadow: 0 18px 40px rgba(116, 58, 28, 0.12);
}

.floating-card span {
  display: block;
  color: #b36518;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #3d2418;
}

.analytics-card {
  left: -26px;
  bottom: 110px;
  max-width: 220px;
}

.ops-card {
  right: -8px;
  top: 86px;
  max-width: 260px;
}

.brand-strip {
  padding: 8px 0 22px;
}

.brand-strip p {
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--accent);
  border-top: 1px solid rgba(116, 58, 28, 0.08);
  border-bottom: 1px solid rgba(116, 58, 28, 0.08);
}

.section-block {
  padding: 86px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 247, 240, 0.4), rgba(255, 238, 223, 0.55));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 1rem 0;
}

.feature-grid,
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: #2b1c18;
  background: linear-gradient(135deg, var(--secondary), #ffe1a1);
}

.feature-card h3,
.benefit-card h3,
.resource-item h4,
.benefit-panel h3 {
  font-family: "Sora", sans-serif;
  margin-bottom: 0.85rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.stacked-cards {
  display: grid;
  gap: 1.25rem;
}

.benefit-panel {
  padding: 1.8rem;
  border-radius: 28px;
}

.benefit-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.65;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mini-highlight {
  display: grid;
  gap: 0.35rem;
}

.mini-highlight strong {
  font-size: 1.1rem;
}

.mini-highlight span {
  color: var(--muted);
}

.resource-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.resource-item {
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

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

.benefit-card {
  min-height: 100%;
}

.pricing-section {
  padding-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
}

.pricing-card-featured {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 180, 35, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 229, 0.88));
  border: 1px solid rgba(255, 120, 45, 0.16);
  box-shadow: 0 24px 60px rgba(255, 91, 31, 0.12);
}

.pricing-badge,
.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 0.45rem 0.8rem;
  background: linear-gradient(135deg, var(--primary-strong), var(--secondary));
  color: #fff;
  font-size: 0.78rem;
}

.pricing-tag {
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  background: rgba(255, 180, 35, 0.18);
  color: #9b5d12;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.pricing-header h3 {
  margin: 0 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1.15;
}

.pricing-header p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-price-block {
  display: grid;
  gap: 0.2rem;
  margin: 0.2rem 0 1rem;
}

.pricing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1;
  color: #2f1b15;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.pricing-trial {
  color: #b56616;
  font-weight: 800;
  line-height: 1.5;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pricing-footer {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(116, 58, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-footer strong {
  font-size: 1.1rem;
}

.onboarding-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}

.onboarding-modal.is-open {
  display: flex;
}

.onboarding-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 22, 14, 0.48);
  backdrop-filter: blur(6px);
}

.onboarding-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  padding: 2rem;
  border-radius: 32px;
  max-height: min(92vh, 900px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 101, 24, 0.35) rgba(116, 58, 28, 0.08);
}

.onboarding-dialog::-webkit-scrollbar {
  width: 10px;
}

.onboarding-dialog::-webkit-scrollbar-track {
  background: rgba(116, 58, 28, 0.08);
  border-radius: 999px;
}

.onboarding-dialog::-webkit-scrollbar-thumb {
  background: rgba(179, 101, 24, 0.35);
  border-radius: 999px;
}

.onboarding-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(116, 58, 28, 0.08);
  color: var(--text);
}

.onboarding-header h2 {
  margin: 1rem 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.onboarding-header p {
  color: var(--muted);
  max-width: 60ch;
}

.onboarding-steps {
  display: flex;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.step-chip {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: var(--muted);
  font-weight: 700;
}

.step-chip.active {
  background: rgba(255, 180, 35, 0.22);
  color: #9b5d12;
}

.onboarding-step {
  display: none;
}

.onboarding-step.active {
  display: block;
}

.onboarding-plan-grid,
.onboarding-form-grid {
  display: grid;
  gap: 1rem;
}

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

.plan-choice {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(116, 58, 28, 0.08);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-choice strong {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.plan-choice small {
  color: var(--muted);
  line-height: 1.6;
}

.plan-choice.active,
.plan-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 120, 45, 0.24);
  box-shadow: 0 18px 32px rgba(255, 91, 31, 0.1);
}

.featured-plan {
  background:
    radial-gradient(circle at top right, rgba(255, 180, 35, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 229, 0.85));
}

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

.cnpj-group {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  align-self: start;
  position: relative;
  padding-bottom: 3.2rem;
}

.cnpj-help {
  position: absolute;
  left: 0;
  top: calc(100% - 2.7rem);
  color: var(--muted);
  line-height: 1.5;
  max-width: 100%;
  margin-top: 0;
}

.onboarding-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.onboarding-feedback {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(197, 72, 28, 0.12);
  border: 1px solid rgba(197, 72, 28, 0.18);
  color: #b33d17;
}

.cta-section {
  padding: 0 0 88px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 180, 35, 0.23), transparent 25%),
    linear-gradient(135deg, rgba(255, 91, 31, 0.9), rgba(91, 31, 11, 0.92));
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 680px;
  color: rgba(255, 247, 237, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  padding: 0 0 42px;
}

.public-menu-hero {
  padding: 36px 0 18px;
}

.public-menu-shell {
  padding: 1.4rem;
  border-radius: 36px;
}

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

.public-menu-brand-link img {
  width: 168px;
  max-width: 100%;
}

.public-menu-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 1.25rem;
}

.public-menu-store {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.public-menu-store-logo {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-menu-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.public-menu-store-logo span {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.public-menu-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  font-family: "Sora", sans-serif;
}

.public-menu-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.public-menu-badges,
.public-menu-product-meta,
.public-menu-actions,
.public-product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.public-menu-lead {
  margin-top: 1rem;
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.public-menu-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.public-menu-metrics div,
.public-menu-info {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.86);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-menu-metrics small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.public-menu-metrics strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.public-menu-info {
  display: grid;
  gap: 0.9rem;
  align-self: start;
}

.public-menu-hours-head,
.public-menu-hours-row,
.public-menu-product-top,
.public-product-add-on-head,
.public-product-add-on-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.public-menu-hours-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(116, 58, 28, 0.06);
}

.public-menu-hours-row.is-today {
  color: var(--accent-dark);
}

.public-menu-note p {
  margin-top: 0.35rem;
}

.public-menu-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 0 18px;
}

.public-menu-nav-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid rgba(116, 58, 28, 0.08);
  box-shadow: 0 18px 36px rgba(98, 52, 27, 0.08);
}

.public-menu-nav-strip a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.public-menu-section {
  padding: 0 0 48px;
}

.public-menu-category {
  margin-bottom: 3rem;
}

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

.public-menu-product {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
}

.public-menu-product-media {
  width: 148px;
  height: 148px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.92);
}

.public-menu-product-media img,
.public-product-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-menu-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d38439;
  font-size: 2rem;
  background: rgba(255, 244, 231, 0.92);
}

.public-menu-product-body,
.public-product-dialog-copy,
.public-product-add-ons,
.public-product-add-on-group {
  display: grid;
  gap: 0.85rem;
}

.public-menu-product-top h3,
.public-product-dialog-copy h3 {
  margin: 0.15rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.public-menu-product-top strong,
.public-product-price-row strong {
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
}

.public-menu-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}

.public-product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}

.public-product-modal.is-open {
  display: block;
}

.public-product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 16, 10, 0.55);
  backdrop-filter: blur(8px);
}

.public-product-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 980px);
  max-height: 88vh;
  overflow: auto;
  margin: 5vh auto 0;
  padding: 1.2rem;
  border-radius: 32px;
}

.public-product-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: var(--text);
}

.public-product-dialog-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.public-product-dialog-media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 248, 241, 0.92);
}

.public-product-add-on-group {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 249, 243, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-product-add-on-head span,
.public-product-add-on-item span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.public-menu-footer {
  padding-top: 12px;
}

.public-store-hero {
  padding: 36px 0 18px;
}

.public-store-theme {
  background:
    radial-gradient(circle at top left, var(--public-bg-soft, rgba(255, 91, 31, 0.18)), transparent 28%),
    radial-gradient(circle at top right, var(--public-bg-soft-strong, rgba(255, 91, 31, 0.08)), transparent 24%),
    linear-gradient(180deg, #fff8f2 0%, #fff2e7 48%, #ffe9db 100%);
}

.public-store-shell {
  padding: 1.6rem;
  border-radius: 36px;
}

.public-store-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(220px, 0.42fr);
  gap: 1.2rem;
  align-items: start;
}

.public-store-main,
.public-store-hours,
.public-store-brand-copy,
.public-store-menu,
.public-store-category,
.public-store-product-body,
.public-cart-sidebar,
.public-cart-items,
.public-product-add-ons {
  display: grid;
  gap: 1rem;
}

.public-store-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.public-store-brand-logo {
  width: 124px;
  height: 124px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-store-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.public-store-brand-logo span {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  color: var(--accent);
}

.public-store-brand-copy h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.public-store-brand-copy p,
.public-store-lead {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.public-store-badges,
.public-store-product-meta,
.public-store-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

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

.public-store-metrics div,
.public-store-hours,
.public-cart-sidebar {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.86);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-store-hours {
  align-self: start;
  align-content: start;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  min-height: auto;
}

.public-store-metrics small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.public-store-hours-action {
  display: grid;
  align-content: space-between;
}

.public-store-metrics strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.public-store-hours-head,
.public-store-hours-row,
.public-cart-head,
.public-cart-summary-row,
.public-store-product-top,
.public-cart-item-head,
.public-product-price-row,
.public-product-add-on-head,
.public-product-add-on-item,
.public-product-purchase {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.public-store-hours-title {
  display: grid;
  gap: 0.25rem;
}

.public-store-hours-title strong {
  font-size: 1.05rem;
}

.public-store-hours-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(210, 120, 36, 0.16);
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.95);
  color: var(--brand-wood);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-store-hours-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(143, 74, 17, 0.1);
}

.public-store-hours-toggle i {
  transition: transform 0.22s ease;
}

.public-hours-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.public-hours-modal.is-open {
  display: block;
}

.public-hours-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 520px);
  max-height: 88vh;
  overflow: auto;
  margin: 8vh auto 0;
  padding: 1.2rem;
  border-radius: 32px;
  box-shadow: 0 28px 58px rgba(69, 35, 18, 0.18);
}

.public-hours-dialog-copy {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.public-hours-dialog-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.public-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.public-checkout-modal.is-open {
  display: block;
}

.public-checkout-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 880px);
  max-height: 88vh;
  overflow: auto;
  margin: 5vh auto 0;
  padding: 1.2rem;
  border-radius: 32px;
  box-shadow: 0 28px 58px rgba(69, 35, 18, 0.18);
}

.public-checkout-copy,
.public-checkout-panel-copy,
.public-checkout-actions {
  display: grid;
  gap: 0.45rem;
}

.public-checkout-copy {
  margin-bottom: 1rem;
}

.public-checkout-copy h3,
.public-checkout-panel-copy h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.public-checkout-mode-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.public-checkout-mode {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(116, 58, 28, 0.08);
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.9);
  text-align: left;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.public-checkout-mode:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(98, 52, 27, 0.08);
}

.public-checkout-mode.is-active {
  border-color: rgba(255, 91, 31, 0.28);
  box-shadow: 0 16px 28px rgba(255, 91, 31, 0.1);
}

.public-checkout-mode span {
  color: var(--muted);
  line-height: 1.55;
}

.public-checkout-panel {
  display: none;
  gap: 1rem;
}

.public-checkout-panel.is-active {
  display: grid;
}

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

.public-checkout-actions {
  margin-top: 0.4rem;
}

.public-store-hours-toggle.is-open i {
  transform: rotate(180deg);
}

.public-store-hours.is-collapsed {
  align-content: start;
}

.public-store-hours-row {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(116, 58, 28, 0.06);
}

.public-store-hours-row.is-today {
  color: var(--accent-dark);
}

.public-store-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 0 18px;
}

.public-store-nav-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.92);
  border: 1px solid rgba(116, 58, 28, 0.08);
  box-shadow: 0 18px 36px rgba(98, 52, 27, 0.08);
}

.public-store-nav-strip a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.public-store-content {
  padding: 0 0 48px;
  transition: padding-right 0.25s ease;
}

.public-store-content .container {
  width: min(100% - 2rem, 1400px);
  display: grid;
  gap: 1rem;
}

.public-store-content-cart-open {
  padding-right: 0;
}

.public-store-content-cart-closed {
  padding-right: 0;
}

.public-store-products {
  display: grid;
  gap: 1rem;
}

.public-store-product {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
}

.public-store-product-media {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.92);
}

.public-store-product-media img,
.public-product-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-store-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d38439;
  font-size: 2rem;
  background: rgba(255, 244, 231, 0.92);
}

.public-store-product-top h3,
.public-product-dialog-copy h3,
.public-cart-head h3 {
  margin: 0.15rem 0 0;
  font-family: "Sora", sans-serif;
}

.public-store-product-top strong,
.public-product-price-row strong,
.public-cart-item-total {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.public-cart-sidebar {
  position: fixed;
  top: 88px;
  right: 24px;
  width: 328px;
  max-height: calc(100vh - 112px);
  z-index: 35;
  box-shadow: 0 24px 48px rgba(98, 52, 27, 0.16);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.public-cart-sidebar.is-collapsed {
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
}

.public-cart-items {
  max-height: 56vh;
  overflow: auto;
}

.public-cart-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 36;
  display: inline-grid;
  place-items: center;
  align-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-strong), var(--secondary));
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 91, 31, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-cart-toggle:hover {
  transform: translateY(-1px);
}

.public-cart-toggle.is-open {
  box-shadow: 0 18px 36px rgba(69, 35, 18, 0.24);
}

.public-cart-toggle i {
  font-size: 1.2rem;
}

.public-cart-toggle-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(69, 35, 18, 0.16);
}

.public-cart-empty {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 248, 241, 0.84);
  text-align: center;
  color: var(--muted);
}

.public-cart-empty i {
  font-size: 1.6rem;
  color: #d38439;
}

.public-cart-head-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.public-cart-continue-link {
  display: none;
  border: 0;
  background: transparent;
  color: #b56616;
  font-weight: 800;
  padding: 0;
}

.public-cart-item {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-cart-item-head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(197, 72, 28, 0.1);
  color: #c5481c;
}

.public-cart-item-head small,
.public-cart-item-addons span,
.public-product-add-on-option-copy small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.public-cart-item-addons {
  display: grid;
  gap: 0.3rem;
}

.public-cart-actions {
  display: grid;
  gap: 0.8rem;
}

.public-cart-footer {
  display: grid;
  gap: 0.8rem;
}

.public-product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 90;
}

.public-product-modal.is-open {
  display: block;
}

.public-product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 16, 10, 0.55);
  backdrop-filter: blur(8px);
}

.public-product-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 980px);
  max-height: 88vh;
  overflow: auto;
  margin: 5vh auto 0;
  padding: 1.2rem;
  border-radius: 32px;
}

.public-product-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: var(--text);
}

.public-product-dialog-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.public-product-dialog-media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 248, 241, 0.92);
}

.public-product-dialog-copy,
.public-product-add-on-group {
  display: grid;
  gap: 0.85rem;
}

.public-product-add-on-group {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 249, 243, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.public-product-add-on-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(116, 58, 28, 0.06);
}

.public-product-add-on-option:last-child {
  border-bottom: 0;
}

.public-product-add-on-option input {
  margin-top: 0.3rem;
}

.public-product-add-on-option-copy {
  display: grid;
  gap: 0.2rem;
}

.public-product-add-on-option-price {
  font-family: "Sora", sans-serif;
}

.public-product-quantity {
  min-width: 140px;
}

.public-product-quantity input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(116, 58, 28, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.public-store-footer {
  padding-top: 12px;
}

.admin-body {
  background: linear-gradient(180deg, #fff8f1 0%, #ffefdf 100%);
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #3b2119 0%, #2a1813 100%);
  color: rgba(255, 244, 235, 0.82);
}

.admin-brand {
  display: block;
  width: 100%;
  overflow: visible;
}

.admin-brand img {
  width: 248px;
  max-width: 100%;
  margin-left: 0;
}

.admin-establishment-card {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-establishment-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.admin-establishment-card small,
.admin-establishment-card span {
  display: block;
  color: rgba(255, 244, 235, 0.7);
}

.admin-establishment-card strong {
  display: block;
  margin: 0.3rem 0;
  color: #fff;
  font-family: "Sora", sans-serif;
}

.admin-establishment-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  padding: 0.55rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-establishment-thumb img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}

.admin-menu {
  display: grid;
  gap: 0.45rem;
}

.admin-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  color: rgba(255, 244, 235, 0.82);
}

.admin-menu a.active,
.admin-menu a:hover {
  background: linear-gradient(135deg, rgba(255, 91, 31, 0.3), rgba(255, 180, 35, 0.16));
  color: #fff;
}

.admin-logout-form {
  margin-top: auto;
}

.admin-logout-button {
  width: 100%;
  justify-content: center;
}

.admin-main {
  padding: 1.75rem;
}

.admin-dashboard {
  display: grid;
  gap: 1.5rem;
}

.admin-topbar,
.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-topbar h1,
.admin-panel h2 {
  font-family: "Sora", sans-serif;
}

.admin-topbar h1 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.admin-topbar p,
.admin-panel-header small,
.admin-kpi-card span,
.admin-activity-list span {
  color: var(--muted);
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.admin-kpi-card,
.admin-panel {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(116, 58, 28, 0.08);
  box-shadow: 0 18px 40px rgba(116, 58, 28, 0.08);
}

.admin-kpi-card small {
  display: block;
  color: #b36518;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-kpi-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.admin-panel h2 {
  margin: 0;
  font-size: 1.35rem;
}

.admin-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.admin-shortcuts a {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 244, 235, 0.72);
  border: 1px solid rgba(116, 58, 28, 0.07);
}

.admin-shortcuts i {
  color: #b36518;
  font-size: 1.1rem;
}

.admin-shortcuts span {
  font-weight: 700;
}

.admin-activity-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.admin-activity-list div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.92);
  border: 1px solid rgba(116, 58, 28, 0.06);
}

.admin-activity-list strong {
  display: block;
  margin-bottom: 0.3rem;
}

.admin-success-alert {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(80, 174, 114, 0.14);
  border: 1px solid rgba(80, 174, 114, 0.18);
  color: #2d7a49;
  font-weight: 700;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
}

.admin-tab-header {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 244, 235, 0.9);
  border: 1px solid rgba(116, 58, 28, 0.07);
  width: fit-content;
}

.admin-tab-button {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.admin-tab-button.is-active {
  background: linear-gradient(135deg, rgba(255, 91, 31, 0.14), rgba(255, 180, 35, 0.22));
  color: #8f4f11;
  box-shadow: inset 0 0 0 1px rgba(255, 120, 45, 0.14);
}

.admin-tab-panel {
  display: none;
  gap: 1rem;
}

.admin-tab-panel.is-active {
  display: grid;
}

.admin-section-intro {
  display: grid;
  gap: 0.35rem;
  padding: 0.2rem 0 0.4rem;
}

.admin-section-intro-spaced {
  margin-top: 1rem;
}

.admin-tab-header {
  flex-wrap: wrap;
}

.admin-section-intro strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.admin-section-intro span {
  color: var(--muted);
  line-height: 1.6;
}

.admin-logo-upload-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 248, 241, 0.92);
  border: 1px solid rgba(116, 58, 28, 0.06);
}

.admin-logo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-logo-preview img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.admin-logo-preview span {
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-logo-upload-copy {
  display: grid;
  gap: 0.45rem;
}

.admin-color-picker-group {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.admin-color-picker {
  width: 64px;
  height: 56px;
  border: 1px solid rgba(116, 58, 28, 0.12);
  border-radius: 18px;
  background: #fff;
  padding: 0.35rem;
  cursor: pointer;
}

.admin-color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.admin-color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 12px;
}

.admin-color-picker::-moz-color-swatch {
  border: none;
  border-radius: 12px;
}

.admin-color-hex-input {
  text-transform: uppercase;
}

.admin-publication-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.admin-publication-actions .btn {
  gap: 0.55rem;
}

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

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

.admin-logo-upload-copy span {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.admin-remove-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(197, 72, 28, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #c5481c;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.admin-remove-logo-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 238, 233, 0.96);
  box-shadow: 0 12px 24px rgba(197, 72, 28, 0.12);
}

.admin-tab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.admin-business-hour-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 249, 243, 0.72);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-business-hour-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-business-hour-head strong {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.admin-business-hour-toggle {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-business-hour-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.admin-cardapio-grid {
  align-items: start;
}

.admin-cardapio-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.admin-cardapio-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.admin-category-shell {
  border: 1px solid rgba(116, 58, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.86);
  overflow: hidden;
}

.admin-category-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.admin-category-toggle-copy {
  display: grid;
  gap: 0.28rem;
}

.admin-category-toggle-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.admin-category-toggle-copy small {
  color: var(--muted);
  line-height: 1.55;
}

.admin-category-toggle-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-category-toggle-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: #8d4f18;
  flex: 0 0 auto;
}

.admin-category-toggle .admin-category-toggle-icon i {
  transition: transform 0.2s ease;
}

.admin-category-toggle.is-open .admin-category-toggle-icon i {
  transform: rotate(180deg);
}

.admin-category-panel {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-category-panel.is-open {
  display: block;
}

.admin-category-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.admin-category-products,
.admin-category-create-product {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(116, 58, 28, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.admin-section-intro-compact {
  margin-bottom: 0.85rem;
}

.admin-empty-state-compact {
  padding: 1.35rem 1rem;
}

.admin-product-list-compact {
  margin-top: 0;
}

.admin-section-intro-with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(42, 24, 19, 0.44);
  backdrop-filter: blur(10px);
  z-index: 1200;
}

.admin-modal-backdrop.is-open {
  display: flex;
}

.admin-modal-card {
  width: min(100%, 760px);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 1.45rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 245, 236, 0.96));
  border: 1px solid rgba(116, 58, 28, 0.1);
  box-shadow: 0 28px 80px rgba(42, 24, 19, 0.24);
}

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

.admin-modal-head h2 {
  margin: 0.85rem 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.admin-modal-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-modal-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: var(--text);
}

.admin-inline-fields {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: start;
}

.admin-form-actions-inline {
  margin-top: 0.35rem;
}

.admin-checkbox-card {
  min-height: 58px;
  padding: 0 1rem;
  border: 1px solid rgba(116, 58, 28, 0.08);
  border-radius: 18px;
  background: rgba(255, 248, 240, 0.72);
}

.admin-collection-list,
.admin-product-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.admin-collection-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(116, 58, 28, 0.08);
  background: rgba(255, 249, 243, 0.88);
}

.admin-collection-card strong,
.admin-product-head strong {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 0.3rem;
}

.admin-collection-card span,
.admin-product-content p,
.admin-product-meta,
.admin-empty-state span {
  color: var(--muted);
  line-height: 1.6;
}

.admin-collection-meta,
.admin-product-meta,
.admin-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-pill-success {
  background: rgba(38, 154, 94, 0.12);
  color: #1d7c4d;
}

.status-pill-highlight {
  background: rgba(255, 180, 35, 0.18);
  color: #b56616;
}

.admin-empty-state {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px dashed rgba(116, 58, 28, 0.16);
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.7);
}

.admin-empty-state i {
  font-size: 1.5rem;
  color: #b36518;
}

.admin-products-panel {
  margin-top: 1.4rem;
}

.admin-product-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(116, 58, 28, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.9);
}

.admin-product-image {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(116, 58, 28, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 243, 231, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.admin-product-image span {
  font-size: 1.6rem;
  color: #c17219;
}

.admin-product-content {
  display: grid;
  gap: 0.75rem;
}

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

.admin-product-head small {
  color: #b36518;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-product-content p {
  margin: 0;
}

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-product-action-button {
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
}

.admin-product-action-button-danger {
  border-color: rgba(197, 72, 28, 0.18);
  color: #c5481c;
}

.admin-edit-image-preview {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}

.admin-edit-image-preview-box {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  border: 1px solid rgba(116, 58, 28, 0.08);
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--muted);
  text-align: center;
  padding: 0.8rem;
}

.admin-edit-image-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-add-on-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-add-on-panel.is-open {
  display: block;
}

.admin-add-on-grid {
  display: none;
}

.admin-add-on-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 249, 243, 0.8);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-add-on-shell-head,
.admin-add-on-group-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-add-on-create-button {
  flex: 0 0 auto;
}

.admin-add-on-group-list-cascade {
  gap: 1rem;
}

.admin-add-on-group-card-cascade {
  padding: 0;
  overflow: hidden;
}

.admin-add-on-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  text-align: left;
}

.admin-add-on-group-summary {
  display: grid;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.admin-add-on-group-chevron {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(116, 58, 28, 0.08);
  color: #6b4b3e;
  transition: transform 0.2s ease, background 0.2s ease;
}

.admin-add-on-group-toggle.is-open .admin-add-on-group-chevron {
  transform: rotate(180deg);
  background: rgba(255, 111, 44, 0.16);
  color: #c5481c;
}

.admin-add-on-group-list,
.admin-add-on-item-list {
  display: grid;
  gap: 0.85rem;
}

.admin-add-on-group-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.admin-add-on-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-add-on-group-head strong,
.admin-add-on-item-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Sora", sans-serif;
}

.admin-add-on-group-head span,
.admin-add-on-item-card span,
.admin-muted-helper {
  color: var(--muted);
  line-height: 1.55;
}

.admin-add-on-item-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 247, 239, 0.9);
  border: 1px solid rgba(116, 58, 28, 0.06);
}

.admin-add-on-item-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.admin-add-on-item-action-button {
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
}

.admin-add-on-inline-form {
  margin-top: 0.35rem;
}

.admin-add-on-group-body {
  display: none;
  gap: 1rem;
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid rgba(116, 58, 28, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.admin-add-on-group-body.is-open {
  display: grid;
}

.admin-empty-state-inline {
  margin: 0;
}

.admin-modal-card-sm {
  width: min(100%, 680px);
}

.admin-textarea-sm {
  min-height: 110px;
}

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

.checkbox-group-mai {
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(116, 58, 28, 0.06);
}

.admin-textarea {
  min-height: 140px;
  resize: vertical;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.4rem;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.94;
}

.admin-button-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: admin-spin 0.7s linear infinite;
}

@keyframes admin-spin {
  to {
    transform: rotate(360deg);
  }
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.login-brand-panel {
  padding: 2.5rem 1rem 2rem 0;
}

.login-brand img {
  width: min(220px, 46vw);
  margin-bottom: 1.4rem;
}

.login-brand-panel h1,
.login-form-header h2 {
  font-family: "Sora", sans-serif;
}

.login-brand-panel h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
  margin: 1rem 0;
  max-width: 10ch;
}

.login-brand-panel p,
.login-form-header p,
.login-support span {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.login-feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.login-feature-card {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(116, 58, 28, 0.08);
}

.login-feature-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", sans-serif;
}

.login-feature-card span {
  color: var(--muted);
  line-height: 1.6;
}

.login-form-panel {
  padding: 2rem;
  border-radius: 32px;
}

.login-form-header h2 {
  margin: 1rem 0 0.6rem;
  font-size: 2rem;
}

.login-alert {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: rgba(255, 180, 35, 0.14);
  border: 1px solid rgba(255, 180, 35, 0.22);
  color: #9b5d12;
}

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

.form-group-mai {
  display: grid;
  gap: 0.45rem;
}

.form-group-mai label {
  font-weight: 700;
}

.form-control-mai {
  width: 100%;
  border: 1px solid rgba(116, 58, 28, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control-mai:focus {
  border-color: rgba(255, 91, 31, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 91, 31, 0.12);
}

.login-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.remember-check {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--muted);
}

.forgot-link,
.login-support a {
  color: #b36518;
  font-weight: 700;
}

.login-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(116, 58, 28, 0.08);
}

.field-validation-error,
.validation-summary-errors {
  color: #c5481c;
  font-size: 0.92rem;
}

.validation-summary-errors ul {
  margin: 0;
  padding-left: 1.15rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(116, 58, 28, 0.08);
}

.footer-logo {
  width: 180px;
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1199.98px) {
  .hero-grid,
  .split-layout,
  .feature-grid,
  .benefits-grid,
  .pricing-grid,
  .admin-kpi-grid,
  .onboarding-plan-grid,
  .admin-cardapio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-panel {
    transform: none;
  }

  .ops-card,
  .analytics-card,
  .delivery-card,
  .hero-device-note {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }
}

@media (max-width: 991.98px) {
  .topbar,
  .cta-panel,
  .footer-content {
    border-radius: 28px;
  }

  .topbar,
  .footer-content,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-shell {
    display: block;
  }

  .topbar-actions,
  .login-shell {
    width: 100%;
  }

  .hero-nav {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split-layout,
  .feature-grid,
  .benefits-grid,
  .pricing-grid,
  .login-shell,
  .admin-content-grid,
  .admin-kpi-grid,
  .admin-shortcuts,
  .admin-form-grid,
  .admin-tab-grid,
  .onboarding-form-grid,
  .onboarding-plan-grid {
    grid-template-columns: 1fr;
  }

  .admin-logo-upload-card {
    grid-template-columns: 1fr;
  }

  .admin-inline-fields,
  .admin-category-panel-grid,
  .admin-add-on-grid,
  .admin-business-hours-grid,
  .admin-business-hour-fields,
  .admin-edit-image-preview,
  .admin-product-card {
    grid-template-columns: 1fr;
  }

  .admin-add-on-shell-head,
  .admin-add-on-group-toolbar,
  .admin-add-on-group-toggle,
  .admin-add-on-item-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-add-on-group-chevron {
    align-self: flex-end;
  }

  .public-menu-hero-grid,
  .public-menu-products,
  .public-product-dialog-grid,
  .public-menu-product,
  .public-menu-metrics {
    grid-template-columns: 1fr;
  }

  .public-store-hero-grid,
  .public-store-product,
  .public-product-dialog-grid,
  .public-store-metrics {
    grid-template-columns: 1fr;
  }

  .public-menu-store,
  .public-menu-hours-head,
  .public-menu-hours-row,
  .public-menu-product-top,
  .public-product-add-on-head,
  .public-product-add-on-item {
    flex-direction: column;
    align-items: stretch;
  }

  .public-store-brand-block,
  .public-store-hours-head,
  .public-store-hours-row,
  .public-store-product-top,
  .public-cart-head,
  .public-cart-summary-row,
  .public-cart-item-head,
  .public-product-price-row,
  .public-product-add-on-head,
  .public-product-add-on-item,
  .public-product-purchase {
    flex-direction: column;
    align-items: stretch;
  }

  .public-menu-product-media {
    width: 100%;
    height: 220px;
  }

  .public-store-product-media {
    width: 100%;
    height: 220px;
  }

  .public-store-hours {
    padding: 0.9rem 1rem;
  }

  .public-checkout-mode-list,
  .public-checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .public-cart-sidebar {
    position: fixed;
    right: 12px;
    left: 12px;
    top: auto;
    bottom: 88px;
    width: auto;
    max-height: min(72vh, 620px);
    margin-top: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .public-cart-sidebar.is-collapsed {
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    pointer-events: none;
  }

  .public-cart-items {
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding-right: 0.25rem;
  }

  .public-cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 1;
    padding-top: 0.85rem;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(255, 247, 240, 0.98));
    border-top: 1px solid rgba(116, 58, 28, 0.08);
  }

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

  .public-cart-summary-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .public-cart-head-meta {
    width: auto;
    margin-left: auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.35rem;
  }

  .public-cart-continue-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    text-align: right;
  }

  .public-cart-count {
    text-align: right;
  }

  .public-cart-head {
    flex-direction: row;
    align-items: flex-start;
  }

  .public-product-dialog {
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    overflow: auto;
  }

  .public-product-dialog-copy {
    padding-bottom: 8.5rem;
  }

  .public-product-add-on-option {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
  }

  .public-product-add-on-option input {
    margin: 0;
    justify-self: start;
    align-self: center;
  }

  .public-product-add-on-option-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    text-align: left;
  }

  .public-product-add-on-option-copy strong,
  .public-product-add-on-option-copy small {
    display: inline;
  }

  .public-product-add-on-option-price {
    text-align: right;
    white-space: nowrap;
  }

  .public-product-purchase {
    position: sticky;
    bottom: -1rem;
    z-index: 2;
    display: grid;
    gap: 0.85rem;
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    padding-bottom: 0.25rem;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(255, 247, 240, 0.98));
    border-top: 1px solid rgba(116, 58, 28, 0.08);
  }

  .public-product-quantity {
    display: grid;
    grid-template-columns: auto 96px;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
  }

  .public-product-quantity label {
    margin: 0;
  }

  .public-product-purchase .btn {
    width: 100%;
  }

  .public-cart-toggle {
    right: 16px;
    bottom: 16px;
  }

  .public-store-content-cart-open,
  .public-store-content-cart-closed {
    padding-right: 0;
  }

  .hero-panel {
    min-height: auto;
    transform: none;
  }

  .delivery-stage,
  .hero-device-stage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-device-stack {
    width: min(100%, 420px);
    min-height: 440px;
  }

  .hero-device-shell {
    width: min(100%, 220px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 12px;
  }

  .topbar {
    padding: 16px;
    border-radius: 26px;
    position: static;
  }

  .brand-lockup img {
    width: 156px;
  }

  .hero-nav {
    gap: 1rem;
  }

  .topbar-actions,
  .login-form-row,
  .login-support,
  .onboarding-actions,
  .onboarding-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-tab-header {
    width: 100%;
  }

  .admin-tab-button {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.5vw, 3.1rem);
  }

  .phone-mockup {
    width: 100%;
  }

  .hero-device-stack {
    width: 100%;
    min-height: 360px;
  }

  .hero-device-back {
    top: 18px;
    left: 0;
    transform: rotate(-6deg);
  }

  .hero-device-front {
    right: 0;
    bottom: 0;
    transform: rotate(5deg);
  }

  .hero-device-shell {
    width: min(100%, 190px);
    padding: 10px;
    border-radius: 30px;
  }

  .hero-device-notch {
    width: 86px;
    height: 12px;
  }

  .onboarding-dialog {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
  }

  .onboarding-step[data-step="1"].active {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
  }

  .onboarding-step[data-step="1"] .onboarding-plan-grid {
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.25rem;
  }

  .onboarding-step[data-step="1"] .onboarding-actions {
    position: sticky;
    bottom: -1.35rem;
    z-index: 2;
    margin-top: 1rem;
    padding-top: 0.9rem;
    padding-bottom: 0.2rem;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(255, 247, 240, 0.98));
    border-top: 1px solid rgba(116, 58, 28, 0.08);
  }

  .onboarding-step[data-step="2"].active {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
  }

  .onboarding-step[data-step="2"] .onboarding-form-grid {
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.25rem;
  }

  .onboarding-step[data-step="2"] .onboarding-actions {
    position: sticky;
    bottom: -1.35rem;
    z-index: 2;
    margin-top: 1rem;
    padding-top: 0.9rem;
    padding-bottom: 0.2rem;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(255, 247, 240, 0.98));
    border-top: 1px solid rgba(116, 58, 28, 0.08);
  }

  .hero-panel,
  .benefit-panel,
  .cta-panel,
  .feature-card,
  .pricing-card,
  .pricing-card-featured,
  .login-form-panel,
  .admin-main,
  .admin-sidebar,
  .admin-kpi-card,
  .admin-panel {
    padding: 1.35rem;
  }

  .section-block {
    padding: 68px 0;
  }

  .cta-actions,
  .hero-actions {
    width: 100%;
  }

  .cta-actions .btn,
  .hero-actions .btn,
  .btn-nav,
  .btn-secondary-nav {
    width: 100%;
  }

  .public-hours-dialog {
    width: min(100% - 1rem, 520px);
    margin-top: 4vh;
    padding: 1rem;
  }

  .public-checkout-dialog {
    width: min(100% - 1rem, 880px);
    margin-top: 4vh;
    padding: 1rem;
  }
}
