:root {
  --navy: #233f70;
  --red: #c52d2f;
  --cream: #f7f0e5;
  --dark: #10141c;
  --paper: #fffaf1;
  --line: rgba(16, 20, 28, 0.11);
  --shadow: 0 18px 48px rgba(35, 63, 112, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(197, 45, 47, 0.08), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, #fffaf1 58%, var(--cream) 100%);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

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

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

button {
  font: inherit;
}

body.sheet-open {
  overflow: hidden;
}

.site-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -14px -14px 10px;
  padding: 12px 14px;
  background: rgba(247, 240, 229, 0.91);
  border-bottom: 1px solid rgba(35, 63, 112, 0.12);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(197, 45, 47, 0.23);
}

.language-button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--navy);
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.16);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 24px 18px 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(35, 63, 112, 0.98), rgba(21, 33, 54, 0.96)),
    var(--navy);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 160px;
  height: 160px;
  right: -82px;
  top: -58px;
  border: 20px solid rgba(247, 240, 229, 0.15);
  border-radius: 50%;
}

.hero::after {
  width: 86px;
  height: 20px;
  right: 22px;
  bottom: 24px;
  border-top: 4px dotted rgba(247, 240, 229, 0.24);
  transform: rotate(-14deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.pickup-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--red);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pickup-badge {
  padding: 8px 12px;
  color: var(--cream);
  background: var(--red);
}

.section-kicker {
  padding: 6px 10px;
}

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

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.8rem, 16vw, 5.7rem);
  font-weight: 900;
}

.hero p {
  margin-top: 12px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-cream {
  color: var(--navy);
  background: var(--cream);
}

.button-outline {
  color: var(--cream);
  border: 1px solid rgba(247, 240, 229, 0.38);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(72vw, 280px);
  padding: 10px;
  background: rgba(247, 240, 229, 0.08);
  border: 1px solid rgba(247, 240, 229, 0.16);
  border-radius: 38px;
  transform: rotate(2deg);
}

.hero-brand-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 30px;
  object-fit: cover;
}

.business-info,
.menu-section {
  padding: 34px 0 0;
}

.business-info h2,
.menu-section h2 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 900;
}

.info-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-card,
.product-card {
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(35, 63, 112, 0.08);
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
}

.info-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card h3 {
  color: var(--dark);
  font-size: 1.16rem;
  font-weight: 900;
}

.info-card p {
  margin-top: 4px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 16px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.13);
  border-radius: 999px;
}

.tab {
  min-height: 42px;
  color: rgba(16, 20, 28, 0.66);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
}

.tab.is-active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(35, 63, 112, 0.2);
}

.product-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(35, 63, 112, 0.08);
}

.product-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.product-content h3 {
  color: var(--dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.product-content p {
  margin-top: 5px;
  color: var(--red);
  font-size: 0.94rem;
  font-weight: 900;
}

.add-button {
  min-width: 70px;
  min-height: 40px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.86);
  background: var(--red);
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 1;
}

.add-button:disabled,
.sheet-action:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.site-footer {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding: 24px 4px 12px;
  color: rgba(16, 20, 28, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.site-footer strong {
  color: var(--navy);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}

.floating-cart {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  max-width: calc(100vw - 28px);
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(197, 45, 47, 0.32);
  font-size: 0.92rem;
  font-weight: 900;
}

.floating-cart[hidden],
.sheet-backdrop[hidden],
.bottom-sheet[hidden] {
  display: none;
}

.floating-cart strong {
  padding-inline-start: 2px;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(16, 20, 28, 0.46);
  backdrop-filter: blur(8px);
}

.bottom-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  gap: 16px;
  width: min(100%, 640px);
  max-height: min(88vh, 760px);
  margin: 0 auto;
  overflow: auto;
  padding: 10px 14px 18px;
  background: var(--cream);
  border: 1px solid rgba(35, 63, 112, 0.14);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -22px 60px rgba(16, 20, 28, 0.24);
}

.sheet-handle {
  justify-self: center;
  width: 52px;
  height: 5px;
  background: rgba(35, 63, 112, 0.2);
  border-radius: 999px;
}

.sheet-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.sheet-header h2 {
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
}

.sheet-header p {
  margin-top: 6px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
}

.sheet-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.14);
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 800;
}

.options-form {
  display: grid;
  gap: 14px;
}

.option-group {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend,
.quantity-row > span,
.checkout-fields span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.option-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 11px 12px;
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.13);
  border-radius: 18px;
  color: var(--dark);
  font-weight: 800;
}

.option-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.option-price {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 40px 44px 40px;
  align-items: center;
  overflow: hidden;
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.14);
  border-radius: 999px;
}

.quantity-control button {
  height: 40px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.quantity-control strong {
  text-align: center;
  color: var(--dark);
}

.sheet-action {
  min-height: 50px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.empty-cart {
  padding: 18px;
  color: rgba(16, 20, 28, 0.66);
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.12);
  border-radius: 20px;
  font-weight: 800;
  text-align: center;
}

.cart-line {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.12);
  border-radius: 20px;
}

.cart-line-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-line h3 {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 900;
}

.cart-line p {
  margin-top: 5px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.cart-line strong {
  color: var(--red);
  white-space: nowrap;
}

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

.cart-actions button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(35, 63, 112, 0.08);
  border: 1px solid rgba(35, 63, 112, 0.12);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.cart-actions button:last-child {
  color: var(--red);
  background: rgba(197, 45, 47, 0.08);
}

.continue-order {
  min-height: 44px;
  color: var(--navy);
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.14);
  border-radius: 999px;
  font-weight: 900;
}

.checkout-fields {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.checkout-fields label {
  display: grid;
  gap: 7px;
}

.checkout-fields input,
.checkout-fields select,
.checkout-fields textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--dark);
  background: #fff8ec;
  border: 1px solid rgba(35, 63, 112, 0.14);
  border-radius: 16px;
  font: inherit;
  font-weight: 700;
}

.checkout-fields textarea {
  resize: vertical;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .hero::before {
  right: auto;
  left: -82px;
}

[dir="rtl"] .hero::after {
  right: auto;
  left: 22px;
  transform: rotate(14deg);
}

[dir="rtl"] .floating-cart {
  right: auto;
  left: 14px;
}

@media (min-width: 560px) {
  .site-shell {
    padding: 18px;
  }

  .site-header {
    margin: -18px -18px 14px;
    padding-inline: 18px;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 32px;
  }

  .hero-actions {
    grid-template-columns: repeat(3, max-content);
  }

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

@media (min-width: 860px) {
  .site-shell {
    padding: 24px;
  }

  .site-header {
    margin: -24px -24px 18px;
    padding-inline: calc((100vw - min(100vw, 1120px)) / 2 + 24px);
  }

  .hero {
    min-height: 540px;
    padding: 46px;
  }

  .business-info,
  .menu-section {
    padding-top: 54px;
  }

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

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .tabs {
    min-width: 280px;
  }

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