:root {
  --white: #ffffff;
  --gray-50: #f7f8f9;
  --gray-100: #e6ebef;
  --gray-600: #66727b;
  --dark: #36454f;
  --dark-2: #25313a;
  --gold: #c1a347;
  --gold-dark: #987e2c;
  --danger: #b42318;
  --success: #1f7a3f;
  --shadow: 0 18px 45px rgba(37, 49, 58, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--dark-2);
  background: var(--gray-50);
}

.auth-checking body {
  visibility: hidden;
}

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

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

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--dark-2);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  padding: 5px;
  box-shadow: 0 6px 16px rgba(37, 49, 58, 0.1);
}

.brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--gold);
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.btn:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--gray-100);
}

.btn-small {
  min-height: 38px;
  padding: 9px 14px;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero,
.section {
  padding: 70px clamp(18px, 5vw, 72px);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  min-height: 650px;
  background: linear-gradient(135deg, var(--white), #f4f0df);
}

.kicker {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 850px;
  margin: 14px 0;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.hero p,
.section-title p,
.about-section p {
  color: var(--gray-600);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-preview {
  position: relative;
}

.hero-preview img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  max-width: 240px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.section-title {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-title h2,
.final-cta h2,
.about-section h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.muted-section {
  background: var(--white);
}

.grid,
.summary-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.summary-card,
.auth-card,
.public-cart,
.dashboard-table,
.form-block {
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(37, 49, 58, 0.05);
}

.card {
  padding: 22px;
}

.card p {
  color: var(--gray-600);
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--gray-50);
  border-radius: 14px;
}

.steps span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.tag-cloud span {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.final-cta {
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.final-cta p {
  color: #d7dde1;
}

.landing-hero-conversion {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 225, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(193, 163, 71, 0.2), transparent 34%);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span,
.trust-strip span,
.comparison-grid span {
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-weight: 800;
}

.hero-proof span {
  padding: 9px 12px;
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--dark);
}

.trust-strip span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 11px 15px;
}

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

.demo-section {
  background:
    linear-gradient(180deg, var(--gray-50), var(--white));
}

.demo-menu-frame {
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  background: var(--gray-50);
  box-shadow: var(--shadow);
}

.demo-menu-header {
  position: relative;
  background: var(--white);
}

.demo-cover {
  min-height: 230px;
  background:
    linear-gradient(rgba(37, 49, 58, 0.2), rgba(37, 49, 58, 0.5)),
    url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.demo-store-profile {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: -52px 22px 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(37, 49, 58, 0.12);
  transform: translateY(32px);
}

.demo-store-profile img {
  width: 96px;
  height: 96px;
  border: 4px solid var(--white);
  border-radius: 22px;
  object-fit: contain;
  background: var(--white);
}

.demo-store-profile h3 {
  margin: 4px 0;
  font-size: 1.8rem;
}

.demo-store-profile p {
  color: var(--gray-600);
  line-height: 1.5;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-actions span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.demo-menu-body {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 56px 22px 22px;
}

.demo-filter {
  display: grid;
  align-content: start;
  gap: 12px;
}

.demo-filter input {
  width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
}

.demo-products {
  min-width: 0;
}

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

.comparison-section {
  background: var(--white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.comparison-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 12px;
}

.site-footer {
  border-top: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 18%, rgba(193, 163, 71, 0.28), transparent 30%),
    linear-gradient(135deg, var(--dark), #202a31 58%, #6d5b25);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 560px);
  gap: 28px;
  min-height: 100vh;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 46px);
}

.auth-hero-panel {
  position: relative;
  display: grid;
  min-height: 620px;
  align-content: space-between;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(37, 49, 58, 0.18), rgba(37, 49, 58, 0.72)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1100&q=80")
      center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.auth-hero-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(193, 163, 71, 0.34);
  filter: blur(6px);
}

.auth-hero-panel > * {
  position: relative;
  z-index: 1;
}

.auth-hero-panel h1 {
  max-width: 620px;
  margin: 14px 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.auth-hero-panel p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}

.auth-brand {
  color: var(--white);
}

.auth-brand img,
.dashboard-sidebar .brand img {
  background: rgba(255, 255, 255, 0.94);
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-benefits span,
.auth-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.auth-benefits span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.auth-pill {
  margin-bottom: 18px;
  background: #f4ecd3;
  color: var(--gold-dark);
}

.auth-card {
  width: min(100%, 460px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
}

.auth-card h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.auth-card > p {
  color: var(--gray-600);
  line-height: 1.55;
}

.auth-card.wide {
  width: min(100%, 640px);
}

form {
  display: grid;
  gap: 14px;
}

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

.span-2 {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--white);
  color: var(--dark-2);
  min-height: 46px;
  padding: 12px 13px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(193, 163, 71, 0.18);
}

.form-message {
  min-height: 22px;
  color: var(--danger);
  font-weight: 700;
}

.form-helper {
  margin-bottom: 0;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-message.success {
  color: var(--success);
}

.auth-link {
  margin: 18px 0 0;
  color: var(--gray-600);
}

.auth-link a {
  color: var(--gold-dark);
  font-weight: 800;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 92px;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 34px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 10px;
  background: #f4ecd3;
  color: var(--gold-dark);
  cursor: pointer;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.forgot-link {
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  padding: 0;
  font-weight: 900;
  text-align: left;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(37, 49, 58, 0.62);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.modal-card p {
  color: var(--gray-600);
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  font-size: 1.35rem;
}

.dashboard-page {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.dashboard-menu-button,
.dashboard-overlay {
  display: none;
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100vh;
  padding: 22px;
  background: var(--dark);
  color: var(--white);
}

.dashboard-sidebar .brand {
  color: var(--white);
}

.dashboard-sidebar nav {
  display: grid;
  gap: 8px;
}

.dashboard-sidebar nav button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #e6ebef;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.dashboard-sidebar nav button.active,
.dashboard-sidebar nav button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dashboard-main {
  padding: 26px;
}

.dashboard-toast {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 90;
  max-width: min(420px, calc(100vw - 36px));
  border-radius: 14px;
  background: var(--success);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 13px 16px;
  font-weight: 900;
}

.dashboard-toast.error {
  background: var(--danger);
}

.dashboard-toast[hidden] {
  display: none;
}

.pwa-install-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  padding: 11px 16px;
  font-weight: 900;
}

.pwa-install-button:hover {
  background: var(--dark-2);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-top h1 {
  margin: 6px 0 0;
}

.panel {
  display: none;
}

.panel.active {
  display: grid;
  gap: 18px;
}

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

.summary-card {
  padding: 20px;
}

.summary-card span {
  color: var(--gray-600);
  font-weight: 800;
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.1rem;
}

.form-block {
  display: grid;
  gap: 14px;
  padding: 20px;
}

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

.address-block {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: var(--gray-50);
}

.address-block h3,
.address-block p {
  margin-bottom: 0;
}

.address-block p {
  color: var(--gray-600);
  line-height: 1.5;
}

.image-preview {
  display: grid;
  min-height: 120px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #cbd5dc;
  border-radius: 14px;
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.logo-preview {
  width: 150px;
  min-height: 150px;
  background: var(--white);
}

.logo-preview img {
  object-fit: contain;
  padding: 10px;
}

.cover-preview {
  min-height: 150px;
}

.dashboard-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

th,
td {
  padding: 13px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--gray-50);
  color: var(--dark);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-btn {
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 8px 10px;
  font-weight: 800;
}

.mini-btn.danger {
  color: var(--danger);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.qr-card img {
  width: 180px;
  height: 180px;
  margin: 12px auto;
}

.qr-controls p {
  margin-bottom: 0;
  color: var(--gray-600);
  line-height: 1.5;
}

.qr-print-area {
  display: grid;
  gap: 18px;
}

.qr-print-header {
  display: none;
}

.qr-general-card {
  max-width: 360px;
}

.qr-card {
  text-align: center;
}

.qr-card h3 {
  margin-bottom: 8px;
}

.qr-card p {
  margin-bottom: 10px;
  color: var(--gray-600);
  font-weight: 800;
}

.qr-card input {
  font-size: 0.78rem;
  text-align: center;
}

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

.public-menu-header {
  background: var(--white);
}

.cover {
  height: 260px;
  background: linear-gradient(135deg, var(--dark), var(--gold));
  background-position: center;
  background-size: cover;
}

.store-profile {
  display: flex;
  align-items: end;
  gap: 18px;
  max-width: 1180px;
  margin: -54px auto 0;
  padding: 0 18px 24px;
}

.store-profile > div {
  max-width: min(100%, 760px);
  padding: 10px 12px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), var(--white) 78%);
  box-shadow: none;
  backdrop-filter: blur(5px);
}

.store-profile img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 20px;
  background: var(--white);
}

.store-profile h1 {
  margin: 8px 0 4px;
  color: var(--dark-2);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 0 14px rgba(255, 255, 255, 0.8);
}

.store-profile p {
  color: var(--gray-600);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.store-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(37, 49, 58, 0.06);
}

.store-action svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.public-menu-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 330px;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 18px 60px;
}

.public-menu-sidebar,
.public-cart {
  position: sticky;
  top: 16px;
  align-self: start;
}

.category-pills {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.category-pills button {
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  padding: 11px 14px;
  text-align: left;
  font-weight: 800;
}

.category-pills button.active {
  background: var(--gold);
  color: var(--white);
}

.banner-strip {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.banner {
  min-height: 120px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  align-items: end;
  padding: 18px;
  overflow: hidden;
}

.public-products {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.category-section h2 {
  margin-bottom: 12px;
}

.category-section {
  min-width: 0;
}

.menu-product {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: var(--white);
}

.menu-product img {
  width: 150px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.product-head h3 {
  overflow-wrap: anywhere;
}

.price {
  color: var(--gold-dark);
  font-weight: 900;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  width: max-content;
  margin: 4px 4px 4px 0;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f4ecd3;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.addition-group {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.addition-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.addition-options button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  max-width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  padding: 8px 11px;
  font-size: 0.86rem;
  font-weight: 900;
}

.addition-options button small {
  color: var(--gray-600);
  font-weight: 800;
}

.addition-options button.selected {
  border-color: var(--gold);
  background: #f4ecd3;
  color: var(--gold-dark);
}

.unavailable {
  opacity: 0.56;
}

.public-cart {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.cart-header,
.cart-line,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  font-weight: 900;
}

.cart-line {
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-line small {
  display: block;
  color: var(--gray-600);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .cards-grid,
  .steps,
  .resource-cards,
  .audience-grid,
  .comparison-grid,
  .summary-grid,
  .qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-menu-layout {
    grid-template-columns: 1fr;
  }

  .public-menu-sidebar,
  .public-cart {
    position: static;
  }

  .demo-menu-body {
    grid-template-columns: 1fr;
  }

  .demo-filter .category-pills {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .auth-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 16px;
  }

  .auth-hero-panel {
    min-height: 320px;
    border-radius: 24px;
  }

  .auth-hero-panel h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .demo-store-profile {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .demo-store-profile img {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .landing-hero,
  .about-section,
  .two-columns,
  .dashboard-page {
    grid-template-columns: 1fr;
  }

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

  .dashboard-page {
    padding-top: 64px;
  }

  .dashboard-menu-button {
    position: fixed;
    top: 12px;
    left: 14px;
    z-index: 60;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow);
    padding: 10px 14px;
    font-weight: 900;
  }

  .dashboard-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: block;
    background: rgba(37, 49, 58, 0.52);
  }

  .dashboard-overlay[hidden] {
    display: none;
  }

  .dashboard-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 55;
    width: min(86vw, 320px);
    height: 100dvh;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow);
  }

  .dashboard-sidebar.open {
    transform: translateX(0);
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 16px;
    padding-left: 62px;
  }

  .dashboard-top .btn {
    width: 100%;
  }

  .form-block,
  .card,
  .summary-card,
  .auth-card {
    border-radius: 14px;
    padding: 16px;
  }

  .public-menu-layout {
    padding: 16px 12px 120px;
  }

  .public-menu-sidebar {
    position: sticky;
    top: 0;
    z-index: 12;
    padding: 12px 0;
    background: var(--gray-50);
  }

  .category-pills {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .category-pills button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .public-cart {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    max-height: 48dvh;
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 620px) {
  .cards-grid,
  .steps,
  .feature-list,
  .summary-grid,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 48px 18px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .auth-card .btn,
  .form-block .btn {
    width: 100%;
  }

  .hero-preview img {
    height: 310px;
  }

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

  .menu-product img {
    width: 100%;
  }

  .product-head,
  .cart-line,
  .cart-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-profile img {
    width: 92px;
    height: 92px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    padding: 12px;
    border-bottom: 1px solid var(--gray-100);
  }

  td {
    border: 0;
    padding: 7px 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: var(--gray-600);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  body {
    background: #fff;
  }

  .dashboard-mobile-bar,
  .dashboard-sidebar,
  .dashboard-overlay,
  .dashboard-top,
  .panel:not(#panel-qrcode),
  #panel-qrcode > .form-block {
    display: none !important;
  }

  .dashboard-page,
  .dashboard-main,
  #panel-qrcode {
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
  }

  .qr-print-area {
    display: block;
  }

  .qr-print-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10mm;
    padding-bottom: 5mm;
    border-bottom: 1px solid #ddd;
  }

  .qr-print-header img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .qr-print-header strong,
  .qr-print-header span {
    display: block;
  }

  .qr-general-card {
    display: none;
  }

  .qr-print-grid {
    display: grid !important;
    grid-template-columns: repeat(var(--qr-print-columns, 3), 1fr) !important;
    gap: 8mm;
  }

  .qr-card {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #d7dde1 !important;
    border-radius: 6mm !important;
    box-shadow: none !important;
    padding: 6mm !important;
    text-align: center;
  }

  .qr-card h3 {
    margin: 0 0 3mm;
    font-size: 15pt;
  }

  .qr-card img {
    width: 38mm !important;
    height: 38mm !important;
    margin: 0 auto 3mm !important;
  }

  .qr-card p {
    margin: 0;
    color: #36454f;
    font-size: 9pt;
  }

  .qr-card input {
    display: none;
  }
}

/* Responsive polish */
body {
  overflow-x: hidden;
}

.dashboard-mobile-bar,
.cart-fab,
.cart-backdrop,
.cart-close {
  display: none;
}

.dashboard-main,
.public-menu-layout,
.store-profile {
  width: 100%;
}

.summary-card,
.menu-product,
.form-block,
.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.summary-card:hover,
.menu-product:hover,
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 49, 58, 0.1);
}

.dashboard-sidebar {
  background:
    linear-gradient(180deg, rgba(193, 163, 71, 0.12), rgba(193, 163, 71, 0)),
    var(--dark);
}

.dashboard-sidebar nav button {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.dashboard-top {
  position: sticky;
  top: 0;
  z-index: 15;
  margin: -26px -26px 24px;
  padding: 20px 26px;
  background: rgba(247, 248, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 235, 239, 0.9);
}

.public-menu-header {
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
}

.cover {
  position: relative;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 49, 58, 0.05), rgba(37, 49, 58, 0.45));
}

.store-profile {
  position: relative;
  z-index: 1;
}

.public-menu-sidebar input {
  box-shadow: 0 8px 22px rgba(37, 49, 58, 0.06);
}

.menu-product {
  overflow: hidden;
}

.menu-product > div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.menu-product p {
  margin-bottom: 0;
  color: var(--gray-600);
  line-height: 1.5;
}

.cart-close {
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.cart-header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1080px) {
  .public-menu-layout {
    max-width: 820px;
  }

  .public-cart {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 24px rgba(37, 49, 58, 0.08);
  }

  .site-nav.open {
    gap: 8px;
    padding-top: 10px;
  }

  .site-nav.open a {
    padding: 12px 0;
    border-top: 1px solid var(--gray-100);
  }

  .dashboard-page {
    display: block;
    padding-top: 72px;
    background: #f2f5f6;
  }

  .dashboard-mobile-bar {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: 44px 1fr 52px;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 6px;
    border: 1px solid rgba(230, 235, 239, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(37, 49, 58, 0.16);
    backdrop-filter: blur(14px);
  }

  .dashboard-mobile-bar strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .dashboard-mobile-bar a {
    display: grid;
    min-height: 38px;
    place-items: center;
    border-radius: 12px;
    background: #f4ecd3;
    color: var(--gold-dark);
    font-weight: 900;
  }

  .dashboard-menu-button {
    position: static;
    display: grid;
    width: 40px;
    min-height: 40px;
    place-items: center;
    gap: 4px;
    border: 0;
    border-radius: 12px;
    background: var(--dark);
    box-shadow: none;
    padding: 9px;
  }

  .dashboard-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
  }

  .dashboard-sidebar {
    width: min(82vw, 300px);
    padding-top: 26px;
    border-radius: 0 22px 22px 0;
  }

  .dashboard-sidebar nav {
    gap: 6px;
  }

  .dashboard-sidebar nav button {
    min-height: 48px;
    border-radius: 14px;
  }

  .dashboard-main {
    padding: 12px;
  }

  .dashboard-top {
    position: static;
    margin: 0 0 14px;
    padding: 12px;
    border: 0;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(37, 49, 58, 0.06);
  }

  .dashboard-top h1 {
    font-size: 1.45rem;
  }

  .dashboard-top > .btn {
    display: none;
  }

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

  .summary-card {
    min-height: 112px;
    padding: 16px;
  }

  .summary-card strong {
    font-size: 1.75rem;
  }

  .form-block {
    gap: 12px;
  }

  .public-menu-header {
    border-radius: 0 0 24px 24px;
    box-shadow: 0 16px 34px rgba(37, 49, 58, 0.1);
  }

  .cover {
    height: 210px;
  }

  .store-profile {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: end;
    gap: 12px;
    margin-top: -42px;
    padding: 0 14px 18px;
  }

  .store-profile img {
    width: 82px;
    height: 82px;
    border-width: 4px;
    border-radius: 18px;
  }

  .store-profile h1 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 1.45rem;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .store-profile p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .store-actions {
    flex-wrap: nowrap;
    overflow-x: auto;
    grid-column: 1 / -1;
    margin: 4px -14px 0;
    padding: 0 14px 4px;
    scrollbar-width: none;
  }

  .store-actions::-webkit-scrollbar {
    display: none;
  }

  .store-action {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 11px;
  }

  .public-menu-layout {
    gap: 14px;
    max-width: none;
    width: 100%;
    overflow-x: hidden;
    padding: 14px 12px 92px;
  }

  .public-menu-sidebar {
    margin: 0 -12px;
    padding: 12px;
    border-bottom: 1px solid var(--gray-100);
    background: rgba(247, 248, 249, 0.96);
    backdrop-filter: blur(12px);
  }

  .category-pills {
    margin-right: -12px;
    margin-left: -12px;
    padding: 0 12px 4px;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .banner {
    min-height: 100px;
    border-radius: 18px;
  }

  .category-section h2 {
    margin: 10px 0 12px;
    font-size: 1.25rem;
  }

  .menu-product {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 10px;
    border-radius: 18px;
  }

  .menu-product img {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .menu-product > div,
  .product-head,
  .addition-group,
  .note-label,
  .menu-product label {
    min-width: 0;
    max-width: 100%;
  }

  .menu-product input,
  .menu-product select,
  .menu-product textarea,
  .menu-product .btn {
    max-width: 100%;
  }

  .product-head h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .menu-product p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .menu-product label {
    font-size: 0.82rem;
  }

  .addition-options {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .addition-options::-webkit-scrollbar {
    display: none;
  }

  .addition-options button {
    flex: 0 0 auto;
    max-width: calc(100vw - 150px);
    min-height: 34px;
    padding: 7px 10px;
    white-space: nowrap;
  }

  .public-cart {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    max-height: 82dvh;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    transform: translateY(105%);
    transition: transform 0.24s ease;
  }

  .public-cart.open {
    transform: translateY(0);
  }

  .cart-close {
    display: grid;
  }

  .cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    background: rgba(37, 49, 58, 0.46);
  }

  .cart-backdrop[hidden] {
    display: none;
  }

  .cart-fab {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 56px;
    border: 0;
    border-radius: 18px;
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(37, 49, 58, 0.28);
    padding: 12px 16px;
    font-weight: 900;
  }

  .cart-fab-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 1.1rem;
  }

  .cart-fab strong {
    margin-left: auto;
  }

  .cart-fab[hidden] {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero,
  .section {
    padding: 40px 16px;
  }

  .landing-hero {
    gap: 26px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-preview img {
    height: 250px;
    border-radius: 18px;
  }

  .floating-card {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .auth-shell {
    align-items: start;
    padding: 12px;
  }

  .auth-card {
    margin-top: 10px;
    padding: 22px 16px;
    border-radius: 20px;
  }

  .auth-hero-panel {
    min-height: 250px;
    padding: 20px;
  }

  .auth-hero-panel .brand {
    display: none;
  }

  .auth-hero-panel p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .auth-benefits {
    margin-top: 18px;
  }

  .cards-grid,
  .steps,
  .feature-list,
  .resource-cards,
  .audience-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-strip {
    padding: 16px;
  }

  .trust-strip span {
    flex: 1 1 150px;
    text-align: center;
  }

  .demo-menu-frame {
    border-radius: 14px;
  }

  .demo-cover {
    min-height: 170px;
  }

  .demo-store-profile {
    grid-template-columns: 1fr;
    margin: -42px 12px 0;
    padding: 14px;
    transform: translateY(26px);
  }

  .demo-store-profile img {
    width: 74px;
    height: 74px;
  }

  .demo-store-profile h3 {
    font-size: 1.45rem;
  }

  .demo-actions span {
    flex: 1 1 110px;
    text-align: center;
  }

  .demo-menu-body {
    padding: 44px 10px 12px;
  }

  .comparison-grid span {
    min-height: 48px;
  }

  .menu-product {
    grid-template-columns: 86px minmax(0, 1fr);
    overflow: hidden;
  }

  .menu-product img {
    width: 86px;
    height: 86px;
  }

  .product-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .price {
    font-size: 0.95rem;
  }

  .menu-product .btn {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 420px) {
  .menu-product {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .menu-product img {
    width: 78px;
    height: 78px;
  }

  .addition-options button {
    max-width: calc(100vw - 138px);
  }

  .menu-product .btn {
    font-size: 0.92rem;
  }
}

/* Hard clamp for public menu cards on phones */
@media (max-width: 620px) {
  html,
  body.menu-page,
  .public-menu-header,
  .cover,
  .store-profile,
  .store-profile > div,
  .store-actions,
  .public-menu-layout,
  .public-menu-layout > section,
  .public-products,
  .category-section,
  .menu-product,
  .menu-product > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body.menu-page {
    position: relative;
    background: var(--gray-50);
  }

  .public-menu-header {
    width: 100dvw;
    max-width: 100dvw;
    overflow: hidden;
  }

  .cover {
    width: 100%;
    max-width: 100%;
  }

  .store-profile {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .store-profile > div {
    min-width: 0;
    overflow: hidden;
  }

  .store-actions {
    max-width: 100%;
  }

  .store-action {
    width: 42px;
    min-width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .store-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .store-action svg {
    width: 19px;
    height: 19px;
  }

  .public-menu-layout {
    box-sizing: border-box;
    max-width: 100dvw !important;
    padding-right: 10px;
    padding-left: 10px;
  }

  .public-menu-layout > section {
    display: block;
  }

  .public-menu-sidebar {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .public-menu-sidebar input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .category-pills {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow: visible;
    padding-right: 0;
    padding-left: 0;
  }

  .category-pills button {
    flex: 1 1 auto;
    min-width: max-content;
    max-width: 100%;
    text-align: center;
  }

  .menu-product {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    max-width: calc(100dvw - 20px) !important;
    padding: 12px;
    margin-right: 0;
    margin-left: 0;
  }

  .menu-product img {
    width: 100%;
    height: 156px;
    margin-bottom: 12px;
    object-fit: cover;
  }

  .product-head {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-head h3,
  .menu-product p,
  .price,
  .badge,
  .addition-group,
  .menu-product label,
  .menu-product input,
  .menu-product .btn {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .addition-options {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .addition-options button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    white-space: normal;
    text-align: left;
  }

  .addition-options button small {
    min-width: max-content;
    white-space: nowrap;
  }

  .menu-product .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}
