:root {
  --background: #ffffff;
  --foreground: #050505;
  --muted: #f5f5f5;
  --muted-text: #666666;
  --border: #e7e7e7;
  --card: #ffffff;
  --primary: #ff7a00;
  --primary-dark: #d85f00;
  --secondary: #121212;
  --amber: #f59e0b;
  --green: #22c55e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

body.website-loading {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.website-loading .website-page,
body.website-loading .floating-cart,
body.website-loading .scroll-top {
  visibility: hidden;
}

[hidden] {
  display: none !important;
}

.display_none {
  display: none !important;
}

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

@keyframes stripe-button-loading {
  to {
    transform: rotate(360deg);
  }
}

.website-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--foreground);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.website-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.website-preloader__content {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.website-preloader__spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #eeeeee;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: website-preloader-spin 800ms linear infinite;
}

.website-preloader__text {
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.payorder-blocked {
  overflow: hidden;
}

.payorder-blocker {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: #fff8f2;
}

.payorder-blocker-dialog {
  width: min(100%, 460px);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 122, 0, 0.22);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(35, 24, 14, 0.14);
  text-align: center;
}

.payorder-blocker-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4e8;
  color: var(--primary);
  font-size: 30px;
  font-weight: 900;
}

.payorder-blocker h1 {
  margin: 0;
  color: #101114;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
}

.payorder-blocker p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.payorder-blocker .place-order {
  width: 100%;
  max-width: 280px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.payorder-blocker.is-success .payorder-blocker-icon {
  background: #ecfdf5;
  color: #16a34a;
}

@keyframes websiteItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

.container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.order-pill,
.checkout-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.website-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(247, 247, 247, 0.46), rgba(247, 247, 247, 0.72)),
    url("/image/website/menu-pattern.svg"),
    radial-gradient(circle at 18px 18px, rgba(255, 122, 0, 0.13) 0 2px, transparent 2.5px),
    radial-gradient(circle at 58px 58px, rgba(0, 0, 0, 0.065) 0 1.5px, transparent 2px),
    linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  background-size: auto, 300px 300px, 80px 80px, 80px 80px, auto;
  background-position: center top, center top, left top, left top, center;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
  padding-bottom: 80px;
}

.hero {
  position: relative;
  height: clamp(256px, 32vw, 384px);
  background: #f7f7f7;
  overflow: visible;
}

.hero img {
  display: block;
  width: 100%;
  height: calc(100% + 320px);
  object-fit: cover;
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0 0 -320px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(247, 247, 247, 0.08) 0%,
    rgba(247, 247, 247, 0.12) 14%,
    rgba(247, 247, 247, 0.18) 28%,
    rgba(247, 247, 247, 0.3) 43%,
    rgba(247, 247, 247, 0.46) 58%,
    rgba(247, 247, 247, 0.64) 73%,
    rgba(247, 247, 247, 0.84) 89%,
    #f7f7f7 100%
  );
}

.back-button {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-size: 24px;
  font-weight: 700;
}

.website-card-wrap {
  position: relative;
  z-index: 2;
  margin-top: -80px;
}

.website-card {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.website-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 192px;
  padding: 8px;
  margin-top: -96px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.website-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

.brand-carousel {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.brand-carousel[hidden] {
  display: none;
}

.brand-carousel:not(.has-overflow) {
  grid-template-columns: minmax(0, 1fr);
}

.brand-carousel:not(.has-overflow) .brand-carousel-control {
  display: none;
}

.brand-carousel-track {
  display: flex;
  gap: 10px;
  min-width: 0;
  justify-content: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.brand-carousel.has-overflow .brand-carousel-track {
  justify-content: flex-start;
}

.brand-carousel-track::-webkit-scrollbar {
  display: none;
}

.brand-slide {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  max-width: 240px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px 6px 8px;
  background: #fff;
  color: var(--foreground);
  font-weight: 800;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.brand-slide.has-no-logo {
  padding: 6px 16px;
}

.brand-slide img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.brand-slide span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-slide.is-active {
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.2);
}

.brand-carousel-control {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--foreground);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.brand-carousel.has-overflow .brand-carousel-control {
  opacity: 1;
  pointer-events: auto;
}

.brand-carousel-control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

h1,
h2,
h3 {
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 0.95;
  font-weight: 900;
}

.badge,
.small-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 10px;
}

.badge.open {
  background: var(--green);
  color: #fff;
}

.badge.closed {
  background: #ff3b3f;
  color: #fff;
}

.badge.night {
  background: #111;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.cuisine {
  margin: 10px 0 14px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.description {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted-text);
  font-size: 18px;
  line-height: 1.55;
}

.meta-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 14px 16px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.meta-strip[hidden],
.meta-strip span[hidden] {
  display: none;
}

.meta-strip i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.start-copy {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  max-width: 1024px;
  padding-top: 56px;
}

.menu-category {
  margin-bottom: 64px;
}

.menu-category h2 {
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 32px;
  font-weight: 800;
}

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

.menu-item {
  display: flex;
  gap: 16px;
  min-height: 160px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  animation: websiteItemIn 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
}

.item-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.menu-item h3 {
  margin: 0 0 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  transition: color 160ms ease;
}

.menu-item:hover h3 {
  color: var(--primary);
}

.menu-item p {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.4;
}

.small-badge {
  flex: 0 0 auto;
  background: #ffedd5;
  color: #c2410c;
  border-radius: 8px;
  font-size: 12px;
  padding: 4px 8px;
}

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

.item-bottom strong {
  font-size: 18px;
}

.item-bottom button {
  width: auto;
  min-width: 132px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.24);
}

.item-bottom button.is-in-cart {
  background: #08a83e;
  box-shadow: 0 12px 24px rgba(8, 168, 62, 0.24);
}

.item-bottom button:disabled,
.item-bottom button.is-disabled {
  cursor: not-allowed;
  background: #d8d8d8;
  color: #8a8a8a;
  box-shadow: none;
  opacity: 1;
}

.menu-item img {
  width: 128px;
  height: 128px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  background: var(--muted);
}

.hours-card {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hours-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
}

.night-callout {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  background: #090909;
  color: var(--amber);
  font-size: 14px;
  font-weight: 700;
}

.hours-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(231, 231, 231, 0.75);
  color: var(--muted-text);
  font-size: 14px;
}

.hours-card li:last-child {
  border-bottom: 0;
}

.hours-card strong {
  color: var(--foreground);
  text-align: right;
  font-weight: 700;
}

.floating-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 48px;
  padding: 0 12px 0 18px;
  border: 0;
  border-radius: 999px;
  background: #ff7900;
  color: #fff;
  box-shadow: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.floating-cart.is-visible {
  display: inline-flex;
}

.floating-cart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cart svg circle {
  fill: currentColor;
  stroke: none;
}

.floating-cart [data-floating-count] {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff;
  color: #ff7900;
  font-size: 13px;
  font-weight: 900;
}

.scroll-top {
  position: fixed;
  right: 32px;
  bottom: 92px;
  z-index: 39;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.cart-panel {
  width: min(100%, 420px);
  height: 100%;
  padding: 28px;
  background: #fff;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.2);
  transform: translateX(42px);
  opacity: 0.98;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
  opacity: 1;
}

.cart-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
}

.cart-panel h2 {
  margin: 0 0 24px;
  font-size: 30px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.cart-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted-text);
  font-weight: 500;
}

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

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
  font-size: 20px;
}

.checkout-button {
  width: 100%;
  min-height: 52px;
}

.checkout-body,
.embedded-checkout,
.confirmation-body {
  min-height: 100vh;
  background: #f7f7f7;
}

[data-catalog-view][hidden],
[data-checkout-view][hidden] {
  display: none;
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.checkout-header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkout-header h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

.checkout-header span {
  margin-left: auto;
  color: var(--muted-text);
  font-size: 14px;
}

.checkout-back {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--foreground);
  padding: 0;
}

.checkout-back:hover {
  background: var(--muted);
}

.checkout-back svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-shell {
  max-width: 768px;
  padding: 32px 0 80px;
}

.checkout-form {
  display: grid;
  gap: 28px;
}

.checkout-card,
.checkout-empty,
.confirmation-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.checkout-card h2 {
  margin: 0 0 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

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

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

.order-type-grid[hidden],
.checkout-form .order-type-grid[hidden] {
  display: none;
}

.order-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--muted-text);
}

.order-type span {
  font-size: 28px;
  line-height: 1;
}

.order-type small {
  opacity: 0.7;
}

.order-type.is-active {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
}

.place-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.place-option {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted-text);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.place-option:hover {
  border-color: #c9c9c9;
  background: #fff;
}

.place-option.is-active {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.checkout-items {
  display: grid;
  gap: 16px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto 72px 28px;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(231, 231, 231, 0.75);
}

.checkout-item.has-no-image {
  grid-template-columns: minmax(0, 1fr) auto 72px 28px;
}

.checkout-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-item-media {
  position: relative;
  width: 64px;
  height: 64px;
}

.checkout-item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.checkout-item-copy {
  min-width: 0;
}

.checkout-item-copy strong,
.checkout-item-copy span {
  display: block;
}

.checkout-item-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 900;
}

.checkout-item-copy span {
  color: var(--muted-text);
  font-size: 14px;
}

.line-price-value.has-discount,
.cart-item-price.has-discount {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cart-item-price.has-discount {
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}

.line-price-value__old,
.cart-item-price__old {
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
  text-decoration: line-through;
}

.line-price-value__current,
.cart-item-price__current {
  color: #d72d20;
  font-size: 15px;
  font-weight: 900;
}

.cart-item-price__current {
  font-size: 18px;
}

.checkout-item-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.stikers,
.checkout-item-stiker,
.cart-item-stiker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.stikers {
  min-height: 0;
  margin: 2px 0 6px;
}

.menu-list .note_discount,
.customize-dialog .note_discount {
  width: 100%;
  margin: 6px 0 8px;
  padding: 8px 10px 8px 12px;
  border-left: 3px solid #e9a23b;
  border-radius: 8px;
  background: #fff7e8;
  color: #5a4630;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.menu-list .note_discount p,
.customize-dialog .note_discount p {
  margin: 0;
}

.customize-dialog #modal_discounts {
  display: grid;
  gap: 8px;
  margin: 8px 0 14px;
}

.checkout-item-stiker,
.cart-item-stiker {
  width: fit-content;
  margin: 0 0 6px;
}

.menu-list .stiker,
.cart-drawer .stiker,
.checkout-shell .stiker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 7px;
  border-radius: 6px;
  background: #ffe8a3;
  border: 1px solid #e15b28;
  color: #2e2412;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  box-sizing: border-box;
  white-space: nowrap;
}

.menu-list .img_stiker,
.cart-drawer .img_stiker,
.checkout-shell .img_stiker {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.stiker > .img_stiker {
  width: 18px;
  height: 18px;
}

.checkout-item-stiker.is-overlay,
.cart-item-stiker.is-overlay {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 2;
  margin: 0;
}

.checkout-item-details {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-item-note {
  overflow-wrap: anywhere;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 82px;
  height: 34px;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--muted);
}

.qty-control button {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted-text);
  font-weight: 800;
  padding: 0;
}

.qty-control button:disabled,
.cart-items .drawer-qty button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.qty-control svg,
.remove-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qty-control span {
  min-width: 12px;
  text-align: center;
  color: var(--foreground);
  font-weight: 900;
  line-height: 1;
}

.line-price {
  width: 72px;
  text-align: right;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 900;
}

.remove-item {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted-text);
  padding: 0;
}

.form-card {
  display: grid;
  gap: 16px;
}

.form-card label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  color: var(--foreground);
  font: inherit;
  font-weight: 500;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(255, 122, 0, 0.15);
}

.form-card input.field-error,
.form-card textarea.field-error {
  border-color: #dc2626;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-card input.field-error:focus,
.form-card textarea.field-error:focus {
  border-color: #dc2626;
  outline: 2px solid rgba(220, 38, 38, 0.18);
}

.form-card .website-field-message {
  display: block;
  margin-top: 6px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.delivery-fields {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.delivery-fields[hidden] {
  display: none;
}

.delivery-fields h3 {
  margin: 0 0 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.delivery-address-summary {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 14px;
  background: #fff7ed;
}

.delivery-address-summary[hidden],
.delivery-address-form[hidden] {
  display: none;
}

.delivery-address-summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-address-summary strong {
  display: block;
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.35;
}

.delivery-address-actions {
  display: flex;
  gap: 10px;
}

.delivery-address-actions button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.edit-delivery-button {
  background: var(--foreground);
  color: #fff;
}

.delete-delivery-button {
  background: #fff1f2;
  color: #be123c;
  box-shadow: inset 0 0 0 1px rgba(190, 18, 60, 0.18);
}

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

.delivery-action-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.delivery-action-row button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.delivery-action-row .submit-delivery-button {
  flex: 1;
  min-width: 220px;
  background: linear-gradient(90deg, var(--primary, #ff7a00), var(--primary-dark, #d85f00));
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.24);
}

.delivery-action-row .cancel-delivery-button {
  background: #fff1f2;
  color: #be123c;
  box-shadow: inset 0 0 0 1px rgba(190, 18, 60, 0.18);
}

.delivery-action-row button:hover {
  transform: translateY(-1px);
}

.delivery-action-row .submit-delivery-button:hover {
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.3);
}

.delivery-action-row button[hidden] {
  display: none;
}

@media (max-width: 560px) {
  .delivery-action-row {
    flex-direction: column;
  }

  .delivery-action-row .submit-delivery-button {
    width: 100%;
    min-width: 0;
  }
}

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

.payment-card > div {
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: #fafafa;
  text-align: center;
}

.payment-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  opacity: 0.55;
  text-align: center;
}

.payment-card strong {
  display: block;
}

.payment-card p,
.terms {
  margin: 6px 0 0;
  color: var(--muted-text);
  font-size: 13px;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  padding: 0;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.payment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.payment-modal-dialog {
  position: relative;
  width: min(100% - 32px, 768px);
  min-height: 100dvh;
  margin: 0 auto;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.payment-modal.is-open .payment-modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.payment-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground);
}

.payment-modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.payment-card-window {
  min-height: 100dvh;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 72px 0 max(24px, env(safe-area-inset-bottom));
}

.payment-card-window #payment-form {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafafa;
}

.payment-loading {
  min-height: 88px;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 800;
}

.payment-loading-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #f1f1f1;
  border-top-color: var(--primary);
  border-radius: 999px;
  animation: website-spin 0.8s linear infinite;
}

.payment-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.card-button,
#paymentButton {
  min-height: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.card-button {
  gap: 8px;
  border-color: var(--primary);
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

#paymentButton {
  border-color: #d9d9d9;
  background: #fff;
}

#paymentButton > * {
  width: 100% !important;
  height: 100% !important;
}

#paymentButton iframe {
  width: 100% !important;
  min-width: 100% !important;
  height: 52px !important;
  display: block !important;
}

@media (max-width: 560px) {
  .payment-buttons {
    grid-template-columns: 1fr;
  }

  #paymentButton {
    order: 1;
  }

  .card-button {
    order: 2;
  }
}

.card-button img {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}

.card-elements {
  display: grid;
  gap: 14px;
}

#card-element {
  min-height: 52px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

#payment-form #submit {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  transition: filter 0.18s ease, opacity 0.18s ease;
}

#payment-form #button-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 900;
  margin: auto;
  text-align: center;
}

#payment-form #submit:not(:disabled) #button-text {
  opacity: 1;
}

#payment-form #submit:hover:not(:disabled) {
  filter: contrast(112%);
}

#payment-form #submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

#payment-form .hidden {
  display: none !important;
}

#payment-form .spinner,
#payment-form .spinner::before,
#payment-form .spinner::after {
  border-radius: 50%;
}

#payment-form .spinner {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  color: #fff;
  font-size: 22px;
  text-indent: -99999px;
  position: relative;
  box-shadow: inset 0 0 0 2px;
}

#payment-form .spinner::before,
#payment-form .spinner::after {
  content: "";
  position: absolute;
  background: var(--primary-dark);
}

#payment-form .spinner::before {
  width: 10.4px;
  height: 20.4px;
  top: -0.2px;
  left: -0.2px;
  border-radius: 20.4px 0 0 20.4px;
  transform-origin: 10.4px 10.2px;
  animation: stripe-button-loading 2s infinite ease 1.5s;
}

#payment-form .spinner::after {
  width: 10.4px;
  height: 10.2px;
  top: -0.1px;
  left: 10.2px;
  border-radius: 0 10.2px 10.2px 0;
  transform-origin: 0 10.2px;
  animation: stripe-button-loading 2s infinite ease;
}

#card-error {
  min-height: 20px;
  margin: 0;
  color: #dc2626;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
}

#card-error:not(:empty),
.website-payment-message {
  padding: 12px 14px;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 12px;
  background: #fffafa;
  color: #991b1b;
}

#card-error.is-warning,
.website-payment-message.is-warning {
  border-color: rgba(245, 158, 11, 0.32);
  background: #fffbeb;
  color: #92400e;
}

.website-payment-message {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 16px;
  border: 0;
  border-radius: 0;
  background: rgba(17, 24, 39, 0.32);
  color: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}

.website-payment-message.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.website-payment-message-dialog {
  position: relative;
  width: min(100%, 430px);
  padding: 18px 48px 18px 18px;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 14px;
  background: #fffafa;
  color: #991b1b;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.18);
  font-size: 15px;
  line-height: 1.45;
  transform: translateY(-8px);
  transition: transform 0.18s ease;
}

.website-payment-message.is-open .website-payment-message-dialog {
  transform: translateY(0);
}

.website-payment-message.is-warning .website-payment-message-dialog {
  border-color: rgba(245, 158, 11, 0.32);
  background: #fffbeb;
  color: #92400e;
}

.website-payment-message-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.07);
  color: currentColor;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.result-message {
  margin: 0;
  color: var(--muted-text);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.result-message a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.summa_cart {
  margin: 0;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.45;
}

.order-complete-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  justify-content: center;
  padding: 36px 20px;
  background: #fff;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.order-complete-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.order-complete-dialog {
  width: min(100%, 512px);
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.order-complete-header {
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.order-complete-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 5px solid #22c55e;
  background: #fff;
  color: #22c55e;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 26px;
}

.order-complete-dialog h2 {
  margin: 0 0 10px;
  color: #101114;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.order-complete-subtitle {
  margin: 0 0 34px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.45;
}

.order-complete-receipt {
  width: 100%;
  padding: 23px 24px;
  border: 1px solid #ececec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
}

.order-complete-receipt > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
  color: #101114;
  font-size: 15px;
  line-height: 1.3;
  text-align: left;
}

.order-complete-receipt > div[hidden] {
  display: none;
}

.order-complete-receipt > div:last-child {
  margin-bottom: 0;
}

.order-complete-receipt span {
  color: #4b5563;
}

.order-complete-receipt strong {
  color: #101114;
  font-weight: 900;
  text-align: right;
}

.order-complete-receipt .is-accent span,
.order-complete-receipt .is-accent strong {
  color: var(--primary);
}

.order-complete-items {
  display: block;
  width: 100%;
  padding-top: 18px;
  margin-top: 8px;
  border-top: 1px solid #ececec;
}

.order-complete-receipt > .order-complete-items {
  display: block;
}

.order-complete-items[hidden] {
  display: none;
}

.order-complete-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 12px;
  color: #101114;
  font-size: 15px;
  line-height: 1.3;
  text-align: left;
}

.order-complete-item:last-child {
  margin-bottom: 0;
}

.order-complete-item span {
  min-width: 0;
  color: #101114;
  overflow-wrap: anywhere;
}

.order-complete-item strong {
  flex: 0 0 auto;
  min-width: max-content;
  text-align: right;
}

.order-complete-total {
  padding-top: 16px;
  margin-top: 2px;
  border-top: 1px solid #ececec;
  font-size: 18px;
}

.order-complete-total span,
.order-complete-total strong {
  color: #101114;
}

.order-complete-total strong {
  color: var(--primary);
  font-size: 18px;
}

.order-complete-pickup {
  width: 100%;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fafafa;
  color: #101114;
  text-align: left;
}

.order-complete-pin {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--primary);
}

.order-complete-pin svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-complete-pickup strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.order-complete-pickup p {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
}

.order-complete-pickup [data-order-complete-phone] {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  color: #111827;
  font-weight: 700;
}

.order-complete-actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}

.order-complete-dialog .place-order {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: none;
}

.order-again-button {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
  color: #101114;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 560px) {
  .order-complete-modal {
    padding: 28px 18px;
  }

  .order-complete-dialog {
    min-height: calc(100vh - 56px);
    justify-content: flex-start;
  }

  .order-complete-mark {
    width: 78px;
    height: 78px;
    font-size: 48px;
    margin-bottom: 22px;
  }

  .order-complete-dialog h2 {
    font-size: 34px;
  }

  .order-complete-subtitle {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .order-complete-receipt {
    padding: 18px;
    border-radius: 18px;
  }

  .order-complete-receipt > div {
    gap: 14px;
    font-size: 14px;
  }

  .order-complete-receipt > .order-complete-items {
    display: block;
    padding-top: 14px;
    margin-top: 6px;
  }

  .order-complete-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .order-complete-item span {
    flex: 1 1 auto;
    text-align: left;
  }

  .order-complete-item strong {
    flex: 0 0 auto;
    text-align: right;
  }

  .order-complete-actions {
    grid-template-columns: 1fr;
  }
}

.tips-card {
  display: grid;
  gap: 16px;
}

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

.tips-grid button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 900;
}

.tips-grid button.is-active {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.tip-custom {
  display: grid;
  gap: 8px;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 800;
}

.tip-custom input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--foreground);
  font: inherit;
  font-weight: 700;
}

.tip-custom input:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(255, 122, 0, 0.15);
}

.ready-time-card {
  display: grid;
  gap: 14px;
}

.ready-time-card label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 800;
}

.ready-time-card label::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 19px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted-text);
  border-bottom: 2px solid var(--muted-text);
  pointer-events: none;
  transform: rotate(45deg);
}

.ready-time-card select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0 64px 0 14px;
  color: var(--foreground);
  font: inherit;
  font-weight: 700;
}

.ready-time-card select:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(255, 122, 0, 0.15);
}

@media (max-width: 480px) {
  .tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.summary-card {
  display: grid;
  gap: 10px;
}

.summary-card > div,
.confirmation-card > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-text);
  font-size: 14px;
}

.summary-card > div[hidden] {
  display: none;
}

.summary-card strong,
.confirmation-card strong {
  color: var(--foreground);
  text-align: right;
}

.summary-total {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--foreground) !important;
  font-size: 22px !important;
  font-weight: 900;
}

.summary-total strong {
  color: var(--primary);
}

.place-order {
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.2);
  font-size: 20px;
  font-weight: 900;
}

.terms {
  text-align: center;
}

.checkout-empty {
  text-align: center;
}

.checkout-empty h2 {
  margin-top: 0;
  font-size: 32px;
}

.confirmation-shell {
  width: min(100% - 32px, 540px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.checkmark {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 6px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 56px;
  font-weight: 900;
}

.confirmation-shell h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 900;
}

.confirmation-shell > p {
  margin: 0 auto 28px;
  max-width: 380px;
  color: var(--muted-text);
  font-size: 18px;
}

.confirmation-card {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.confirmation-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border);
}

.confirmation-actions {
  display: flex;
  gap: 12px;
}

.outline-pill {
  display: inline-flex;
  min-height: 42px;
  flex: 1;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 0 24px;
  background: #fff;
  color: var(--foreground);
  font-weight: 800;
}

.confirmation-actions .order-pill {
  min-height: 58px;
  flex: 1;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .website-card {
    display: block;
    padding: 24px;
  }

  .website-logo {
    width: 128px;
    height: 128px;
    margin: -64px 0 24px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hours-card {
    position: static;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .hero {
    height: 256px;
  }

  .website-card-wrap {
    margin-top: -64px;
  }

  h1 {
    font-size: 40px;
  }

  .meta-strip {
    display: flex;
    width: 100%;
  }

  .menu-item {
    min-height: 146px;
    padding: 14px;
  }

  .menu-item img {
    width: 104px;
    height: 104px;
  }

  .checkout-item {
    grid-template-columns: 56px 1fr auto;
  }

  .checkout-item.has-no-image {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .checkout-item-media {
    width: 56px;
    height: 56px;
  }

  .line-price,
  .remove-item {
    grid-column: 3;
  }

  .two-col,
  .order-type-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}

/* Screenshot-matched desktop layout */
@media (min-width: 861px) {
  .website-card-wrap,
  .content-grid,
  .checkout-header .container,
  .checkout-shell {
    max-width: 740px;
  }

  .order-pill {
    min-height: 34px;
    padding: 0 22px;
    font-size: 13px;
  }

  .hero {
    height: 218px;
  }

  .website-card-wrap {
    margin-top: -72px;
  }

  .website-card {
    gap: 34px;
    align-items: center;
    min-height: 280px;
    padding: 40px 36px;
    border-radius: 18px;
  }

  .website-logo {
    width: 154px;
    height: 154px;
    margin-top: 0;
    border-radius: 16px;
  }

  .website-logo img {
    border-radius: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .title-row {
    gap: 8px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 9px;
  }

  .badge.night {
    order: 3;
    width: max-content;
  }

  .cuisine {
    margin: 12px 0 14px;
    font-size: 18px;
  }

  .description {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .meta-strip {
    gap: 18px;
    padding: 12px 14px;
    margin-bottom: 24px;
    border-radius: 14px;
    font-size: 13px;
  }

  .content-grid {
    display: block;
    padding-top: 44px;
  }

  .menu-category {
    margin-bottom: 50px;
  }

  .menu-category h2 {
    margin-bottom: 26px;
    font-size: 27px;
  }

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

  .menu-item {
    min-height: 132px;
    padding: 14px;
    border-radius: 12px;
  }

  .menu-item h3 {
    font-size: 15px;
  }

  .menu-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
  }

  .small-badge {
    font-size: 10px;
    padding: 3px 7px;
  }

  .item-bottom {
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
  }

  .item-bottom strong {
    font-size: 17px;
  }

  .item-bottom button {
    width: auto;
    min-width: 124px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .menu-item img {
    width: 104px;
    height: 104px;
    border-radius: 12px;
  }

  .hours-card {
    position: static;
    width: 100%;
    margin-top: 58px;
    padding: 24px;
    border-radius: 12px;
  }

  .hours-card li {
    padding: 11px 0;
  }

  .checkout-shell {
    padding-top: 32px;
  }

  .checkout-card {
    border-radius: 14px;
    padding: 24px;
  }

  .checkout-form {
    gap: 32px;
  }
}

.cart-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  padding: 0;
}

.cart-panel .cart-close {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.cart-panel h2 {
  margin: 0;
  padding: 18px 48px 0 16px;
  font-size: 24px;
  line-height: 1.1;
}

.cart-panel h2::after {
  content: attr(data-brand-name);
  display: block;
  margin-top: 6px;
  color: var(--muted-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.cart-items {
  margin-top: 18px;
  padding: 16px;
  border-top: 1px solid var(--border);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
  padding: 0;
  border-bottom: 0;
}

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

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
}

.cart-item-main {
  min-width: 0;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.2;
}

.cart-item-actions {
  display: grid;
  grid-template-columns: max-content 32px 1fr 32px;
  align-items: center;
  gap: 14px;
  color: var(--muted-text);
}

.drawer-qty {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 96px;
  height: 36px;
  gap: 12px;
  border-radius: 999px;
  padding: 0 17px;
  background: var(--muted);
  color: var(--foreground);
}

.drawer-qty span,
.drawer-qty b {
  line-height: 1;
}

.drawer-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #6f6f6f;
  padding: 0;
}

.drawer-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-remove {
  justify-self: end;
}

.cart-total {
  margin-top: 0;
  padding: 22px 16px 0;
  border-top: 1px solid var(--border);
}

.cart-order-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
  margin-inline: 16px;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 999px;
  background: var(--muted);
}

.cart-order-type button {
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-text);
  font-weight: 800;
}

.cart-order-type button.is-active {
  background: #fff;
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.cart-coupon {
  display: grid;
  gap: 8px;
  margin: 0 16px 14px;
}

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

.cart-coupon label {
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-coupon div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px auto;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.cart-coupon div:has(#clearCoupon.display_none) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cart-coupon div:has(#applyCoupon.display_none) {
  grid-template-columns: minmax(0, 1fr) 36px;
}

.cart-coupon input {
  min-width: 0;
  height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.cart-coupon input::placeholder {
  color: #9a9a9a;
}

.cart-coupon button {
  height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--foreground);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.cart-coupon #clearCoupon {
  width: 36px;
  padding: 0;
  background: #f1f1f1;
  color: var(--muted-text);
  font-size: 0;
  line-height: 1;
}

.cart-coupon #clearCoupon::before {
  content: "\00d7";
  font-size: 20px;
}

.cart-coupon #clearCoupon.display_none {
  display: none;
}

.cart-coupon p {
  min-height: 16px;
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.cart-breakdown {
  display: grid;
  gap: 8px;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-text);
}

.cart-breakdown div {
  display: flex;
  justify-content: space-between;
}

.cart-breakdown strong {
  color: var(--muted-text);
}

.checkout-button {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #ff4d00);
  font-size: 18px;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.25);
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .hero {
    height: 210px;
  }

  .back-button {
    width: 38px;
    height: 38px;
    top: 14px;
    left: 14px;
  }

  .website-page {
    padding-bottom: 96px;
  }

  .website-card-wrap {
    margin-top: -54px;
  }

  .website-card {
    padding: 20px;
    border-radius: 18px;
  }

  .website-logo {
    width: 112px;
    height: 112px;
    margin: -48px 0 16px;
    border-radius: 16px;
  }

  .title-row {
    gap: 8px;
  }

  h1 {
    width: 100%;
    font-size: 36px;
    line-height: 1;
  }

  .badge {
    font-size: 11px;
    padding: 5px 8px;
  }

  .cuisine {
    margin: 12px 0 10px;
    font-size: 17px;
  }

  .description {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.45;
  }

  .meta-strip {
    gap: 10px;
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .start-copy {
    font-size: 12px;
  }

  .content-grid {
    display: block;
    padding-top: 34px;
  }

  .menu-category {
    margin-bottom: 38px;
  }

  .menu-category h2 {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-item {
    min-height: 128px;
    padding: 13px;
    border-radius: 12px;
  }

  .menu-item h3 {
    font-size: 16px;
  }

  .menu-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
  }

  .small-badge {
    font-size: 10px;
    padding: 3px 7px;
  }

  .item-bottom {
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
  }

  .item-bottom strong {
    font-size: 17px;
  }

  .item-bottom button {
    width: auto;
    min-width: 124px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .menu-item img {
    width: 104px;
    height: 104px;
    border-radius: 12px;
  }

  .hours-card {
    margin-top: 38px;
    padding: 20px;
    border-radius: 12px;
  }

  .hours-card li {
    align-items: flex-start;
    font-size: 13px;
  }

  .night-callout {
    font-size: 12px;
  }

  .cart-panel {
    width: 100%;
    padding: 0;
  }

  .cart-close {
    width: 34px;
    height: 34px;
    border: 0;
  }

  .cart-items {
    flex: 1;
    min-height: 0;
    overflow: auto;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .cart-item img {
    width: 72px;
    height: 72px;
  }

  .cart-item-top {
    gap: 10px;
  }

  .drawer-qty {
    gap: 12px;
    padding: 7px 13px;
  }

  .cart-order-type {
    padding-top: 12px;
  }

  .checkout-header-inner {
    height: 56px;
  }

  .checkout-shell,
  .payment-modal-dialog {
    width: min(100% - 24px, 560px);
    padding: 22px 0 64px;
  }

  .payment-modal-dialog {
    min-height: auto;
    padding: 0 0 max(24px, env(safe-area-inset-bottom));
  }

  .payment-card-window {
    min-height: auto;
    padding: 64px 0 max(28px, env(safe-area-inset-bottom));
  }

  .checkout-form {
    gap: 18px;
  }

  .checkout-card {
    padding: 18px;
    border-radius: 14px;
  }

  .order-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-type {
    min-height: 96px;
    padding: 12px;
  }

  .checkout-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    grid-template-areas:
      "image copy remove"
      "image qty price";
    gap: 8px 12px;
  }

  .checkout-item.has-no-image {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy remove"
      "qty price";
  }

  .checkout-item-media {
    grid-area: image;
    width: 56px;
    height: 56px;
  }

  .checkout-item-copy {
    grid-area: copy;
  }

  .qty-control {
    grid-area: qty;
    justify-self: start;
  }

  .line-price {
    grid-area: price;
    width: auto;
    align-self: center;
  }

  .remove-item {
    grid-area: remove;
    align-self: start;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .place-order {
    min-height: 56px;
    font-size: 17px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .menu-item,
  .cart-drawer,
  .cart-panel,
  .cart-items .cart-item,
  .customize-modal,
  .customize-dialog {
    animation: none;
    transition: none;
  }
}

@media (max-width: 390px) {
  .container,
  .checkout-shell,
  .payment-modal-dialog {
    width: min(100% - 20px, 560px);
  }

  h1 {
    font-size: 32px;
  }

  .menu-item {
    gap: 10px;
  }

  .menu-item img {
    width: 92px;
    height: 92px;
  }

  .item-bottom {
    gap: 10px;
  }

  .item-bottom button {
    min-width: 112px;
    padding: 0 12px;
    font-size: 13px;
  }

  .order-type-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-form .order-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.checkout-form .order-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--muted-text);
  font-weight: 800;
}

.checkout-form .order-type-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: currentColor;
}

.checkout-form .order-type-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-form .order-type strong {
  font-size: 16px;
  line-height: 1;
}

.checkout-form .order-type small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}

.checkout-form .order-type.is-active {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
  box-shadow: none;
}

.pickup-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 14px;
  padding: 4px;
  border-radius: 999px;
  background: var(--muted);
}

.pickup-mode[hidden] {
  display: none;
}

.pickup-mode-option {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 900;
}

.pickup-mode-option.is-active {
  background: #fff;
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.cart-items {
  display: grid;
  gap: 24px;
  padding: 18px 16px 0;
  border-top: 1px solid var(--border);
}

.cart-items .cart-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #ededed;
  font-weight: 700;
  animation: websiteItemIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-items .cart-item.is-removing {
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
}

.cart-items .cart-item.has-no-image {
  grid-template-columns: minmax(0, 1fr);
}

.cart-items .cart-item:last-child {
  border-bottom: 0;
}

.cart-items .cart-item-media {
  position: relative;
  width: 80px;
  height: 80px;
}

.cart-items .cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--muted);
}

.cart-items .cart-item .stiker > .img_stiker {
  width: 18px;
  height: 18px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.cart-items .cart-item-main {
  min-width: 0;
  padding-top: 2px;
}

.cart-items .cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.25;
}

.cart-items .cart-item-top strong:first-child {
  min-width: 0;
  font-weight: 900;
}

.cart-items .cart-item-top strong:last-child {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 900;
  text-align: right;
}

.cart-items .cart-item-notes {
  display: -webkit-box;
  margin: -6px 0 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.cart-items .cart-item-note-line {
  display: block;
  margin: -8px 0 12px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.cart-items .cart-item-actions {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 32px 32px;
  align-items: center;
  gap: 14px;
  color: #666;
}

.cart-items .cart-item-actions .drawer-icon:first-of-type {
  grid-column: 3;
}

.cart-items .drawer-qty {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 96px;
  min-width: 96px;
  height: 32px;
  gap: 0;
  padding: 0 14px;
  border-radius: 999px;
  background: #f3f3f3;
  color: var(--foreground);
}

.cart-items .drawer-qty button,
.cart-items .drawer-qty b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.cart-items .drawer-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #6d6d6d;
  padding: 0;
}

.cart-items .drawer-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-items .drawer-remove {
  justify-self: end;
}

.cart-drawer.is-open {
  overflow: hidden;
}

.cart-panel {
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.cart-panel h2 {
  flex: 0 0 auto;
}

.cart-items {
  flex: 1 1 auto;
  align-content: start;
  grid-auto-rows: max-content;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #9a9a9a transparent;
}

.cart-items::-webkit-scrollbar {
  width: 8px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #9a9a9a;
}

.cart-order-type,
.cart-coupon,
.cart-breakdown,
.cart-total,
.checkout-button {
  flex: 0 0 auto;
}

.cart-footer {
  flex: 0 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  background: #f7f7f7;
}

.cart-breakdown {
  margin-top: 0;
}

@media (max-width: 860px) {
  .cart-order-type {
    height: 54px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    margin: 0 16px 14px;
    padding: 4px;
    border-radius: 999px;
    background: var(--muted);
  }

  .cart-order-type button {
    width: 100%;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted-text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
  }

  .cart-order-type button.is-active {
    background: #fff;
    color: var(--foreground);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  }
}

.hours-card {
  width: 320px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hours-card h3 {
  margin: 0 0 22px;
  color: var(--foreground);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.hours-card .night-callout {
  display: none;
}

.hours-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 41px;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  color: #696969;
  font-size: 14px;
  font-weight: 500;
}

.hours-card li:last-child {
  border-bottom: 0;
}

.hours-card li span {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.hours-card li strong {
  flex: 0 1 auto;
  min-width: 0;
  color: #696969;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.hours-card li em {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f4f4f4;
  color: var(--foreground);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.hours-card li.is-today,
.hours-card li.is-today strong {
  color: var(--primary);
  font-weight: 900;
}

.hero-hours {
  display: none;
}

.website-contact {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.35;
}

.website-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.website-contact p[hidden] {
  display: none;
}

.website-contact img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.category-filter-wrap {
  position: relative;
  margin-top: 24px;
  padding: 0;
  display: flex;
  justify-content: center;
}

.category-filter-wrap::before,
.category-filter-wrap::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  z-index: 2;
  width: 54px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

.category-filter-wrap::before {
  left: 1px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, #fff 18%, rgba(255, 255, 255, 0));
}

.category-filter-wrap::after {
  right: 1px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(270deg, #fff 18%, rgba(255, 255, 255, 0));
}

.category-filter-wrap.can-scroll-left::before,
.category-filter-wrap.can-scroll-right::after {
  opacity: 1;
}

.category-filter-wrap.can-scroll-left .category-filter-scroll-cue.is-left,
.category-filter-wrap.can-scroll-right .category-filter-scroll-cue.is-right {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.category-filter-scroll-cue {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.28);
  opacity: 0;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.category-filter-scroll-cue.is-left {
  left: 10px;
  transform: translateY(-50%) translateX(-6px);
}

.category-filter-scroll-cue.is-right {
  right: 10px;
}

.category-filter-scroll-cue svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

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

.category-filter button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.category-filter button.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.24);
}

.menu-category.is-hidden,
.menu-item.is-hidden {
  display: none;
}

@media (min-width: 861px) {
  .website-card-wrap,
  .content-grid {
    max-width: 960px;
  }

  .website-card {
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr) 320px;
    gap: 34px;
  }

  .content-grid > .hours-card {
    display: none;
  }

  .category-filter {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .checkout-form .order-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-form .order-type {
    min-height: 104px;
    padding: 12px;
  }
}

@media (max-width: 860px) {
  .content-grid > .hours-card {
    width: 100%;
  }

  .category-filter-wrap {
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .floating-cart.is-visible {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-height: 54px;
  }
}

@media (min-width: 861px) {
  .website-card-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 0;
    align-items: stretch;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .website-card-wrap .website-card {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    gap: 26px;
    min-height: 280px;
    padding: 40px 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .website-card-wrap .brand-carousel {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .website-card-wrap > .hero-hours {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: block;
    position: static;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 30px 20px;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
  }
}

.menu-image-zoom {
  position: relative;
  flex: 0 0 auto;
  width: 128px;
  height: 128px;
  border: 0;
  border-radius: 14px;
  padding: 0;
  background: var(--muted);
  overflow: hidden;
  cursor: zoom-in;
}

.menu-image-zoom img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.menu-image-zoom::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

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

.image-modal img {
  max-width: 70vw;
  max-height: 70vh;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  padding: 0;
}

.image-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 860px) {
  .menu-image-zoom {
    width: 104px;
    height: 104px;
    border-radius: 12px;
  }

  .image-modal {
    padding: 0;
  }

  .image-modal img {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }

  .image-modal-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 390px) {
  .menu-image-zoom {
    width: 92px;
    height: 92px;
  }
}

.customize-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 340ms ease, visibility 0s linear 340ms;
}

.customize-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.customize-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(90vh, 860px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 250px minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: translateY(24px) scale(0.965);
  opacity: 0.98;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.customize-modal.is-open .customize-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.customize-dialog.has-no-image {
  grid-template-rows: minmax(0, 1fr) auto;
}

.customize-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--foreground);
  padding: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.customize-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customize-media {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  background: var(--muted);
}

.customize-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent 58%);
  pointer-events: none;
}

.customize-media img {
  width: 100%;
  height: 250px;
  min-height: 0;
  object-fit: cover;
}

.customize-main {
  grid-column: 1;
  grid-row: 2;
  min-height: 0;
  overflow-y: auto;
  padding: 26px 28px 30px;
}

.customize-dialog.has-no-image .customize-main {
  grid-row: 1;
  padding-top: 32px;
}

.customize-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  padding-right: 58px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.customize-head p {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.customize-head h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.customize-head strong {
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.customize-price-group {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.customize-head #old_price {
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
  white-space: nowrap;
}

.customize-head #old_price[hidden] {
  display: none;
}

.customize-description {
  margin: 0 0 22px;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.45;
}

.customize-section {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.customize-section.has-error {
  border-color: #dc2626;
  background: #fffafa;
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.08);
}

.customize-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.customize-section-title h3 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.customize-section-title h3.error {
  color: #991b1b;
}

.customize-section-title span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

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

.customize-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  color: var(--foreground);
  text-align: left;
  font-weight: 800;
}

.customize-option label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.customize-option label strong,
.customize-option label y {
  min-width: 0;
  font: inherit;
  color: inherit;
}

.customize-option.checked {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.customize-option small {
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 700;
}

.customize-option.is-selected {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.customize-modifier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  overflow: visible;
}

.customize-modifier.is-selected {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.customize-modifier > button {
  flex: 1;
  min-width: 0;
  display: grid;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 12px;
  color: inherit;
  text-align: left;
  font: inherit;
  font-weight: 800;
}

.customize-modifier.is-selected > button {
  color: var(--primary);
}

.customize-modifier > button span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.customize-modifier > button small {
  color: var(--muted-text);
}

.customize-modifier.is-selected > button small {
  color: var(--foreground);
}

.modifier-qty {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 86px;
  height: 32px;
  margin-right: 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  box-shadow: inset 0 0 0 1px var(--border);
}

.customize-modifier:not(.is-selected) .modifier-qty {
  display: none;
}

.modifier-qty button,
.modifier-qty strong {
  width: 28px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.customize-note {
  display: grid;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
}

.customize-note textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  font-size: 14px;
}

.customize-note textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(255, 122, 0, 0.16);
}

.customize-footer {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.customize-qty {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 118px;
  height: 42px;
  border-radius: 999px;
  background: var(--muted);
  padding: 0 8px;
}

.customize-qty button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  font-size: 18px;
  font-weight: 900;
}

.customize-submit {
  min-height: 52px;
  flex: 1;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #ff4d00);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.24);
}

.customize-closed-message {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--muted);
  color: var(--foreground);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.customize-modal .website-side-message {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 10px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.customize-modal .website-side-message.active {
  display: flex;
}

.customize-modal .success_side_block.website-side-message {
  border-color: rgba(255, 122, 0, 0.28);
  background: #fff7ed;
  color: #9a3412;
}

.website-side-message-close {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.website-side-message-close:hover {
  background: #fff;
}

.customize-modal #count_sides {
  display: none;
}

.website-notice-holder {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 6000;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.website-notice {
  width: min(390px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(153, 27, 27, 0.18);
  border-radius: 16px;
  background: #fff;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

.website-notice-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--primary);
}

.website-notice.is-success {
  border-color: rgba(34, 197, 94, 0.22);
}

.website-notice.is-success .website-notice-icon {
  background: #ecfdf5;
  color: #16a34a;
}

.website-notice-icon svg,
.website-notice-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-notice-text {
  min-width: 0;
  font-weight: 800;
  white-space: pre-line;
}

.website-notice-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground);
  padding: 0;
}

.website-notice-close:hover {
  background: #fff7ed;
  color: var(--primary);
}

.website-notice.is-hiding {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 860px) {
  .customize-modal {
    padding: 0;
  }

  .customize-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border-radius: 0;
  }

  .customize-dialog.has-no-image {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .customize-media {
    grid-column: 1;
    grid-row: 1;
  }

  .customize-media img {
    height: 220px;
    min-height: 0;
  }

  .customize-main {
    grid-column: 1;
    grid-row: 2;
    padding: 22px 16px;
  }

  .customize-dialog.has-no-image .customize-main {
    padding-top: 30px;
  }

  .customize-head h2 {
    font-size: 28px;
  }

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

  .customize-footer {
    grid-row: 3;
    padding: 12px;
  }

}
