:root {
  --bg: #0b0b0d;
  --bg-elev: #121216;
  --bg-soft: #17171d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.72);
  --muted-2: rgba(245, 245, 247, 0.56);
  --accent: #ffb347;
  --accent-2: #ffd36a;
  --accent-dark: #e78a14;
  --good: #5fe3a1;
  --bad: #ff6d6d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --header-h: 74px;
  --maxw: 1200px;
  --transition: 220ms ease;
  --transition-slow: 420ms cubic-bezier(.2,.8,.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 211, 106, 0.08), transparent 24%),
    linear-gradient(180deg, #09090b 0%, #0b0b0d 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked,
html.is-locked {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 179, 71, 0.35);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transform: translateY(-180%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 179, 71, 0.09), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(95, 227, 161, 0.06), transparent 20%);
  z-index: 0;
}

#main,
.site-header,
.site-footer,
.drawer,
.modal,
.toast-stack {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(9, 9, 11, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__mark,
.brand__word {
  display: inline-flex;
  align-items: center;
}

.brand__mark {
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171717;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 179, 71, 0.24);
}

.brand__word {
  font-size: 1.02rem;
}

.brand--drawer .brand__word {
  color: var(--text);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.cart-pill,
.menu-chip,
.hero-dot,
.qty-row__btn,
.quantity-btn,
.payment-option,
.history-item,
.history-empty,
.btn {
  border: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.icon-btn:active {
  transform: translateY(0);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(255, 211, 106, 0.1));
  color: var(--text);
  border: 1px solid rgba(255, 179, 71, 0.24);
  box-shadow: 0 14px 30px rgba(255, 179, 71, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.cart-pill:hover,
.cart-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.45);
  box-shadow: 0 18px 34px rgba(255, 179, 71, 0.16);
}

.cart-pill__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cart-pill__label {
  font-weight: 700;
}

.cart-pill__count {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b1b1b;
  font-size: 0.8rem;
  font-weight: 900;
}

main {
  display: block;
}

.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 16px 0;
}

.hero__slider {
  position: relative;
  min-height: 72svh;
  border-radius: clamp(22px, 4vw, 34px);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  pointer-events: none;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.16), transparent 30%);
}

.hero__slide--active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: clamp(22px, 5vw, 56px);
  display: grid;
  gap: 12px;
}

.hero__eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero h1,
.hero h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
}

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

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: width var(--transition), background var(--transition), transform var(--transition);
}

.hero-dot--active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateY(-1px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  padding: 0 4px;
}

.section-head--compact {
  text-align: left;
  margin-bottom: 20px;
}

.section-head h2,
.modal__head h2,
.site-footer h2 {
  margin: 8px 0 10px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-size: clamp(1.7rem, 4.8vw, 3rem);
}

.section-head__text,
.modal__text,
.site-footer p {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.menu,
.contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 16px 0;
}

.menu-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 8px;
  margin: 0 -2px 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-filters::-webkit-scrollbar {
  display: none;
}

.menu-chip {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
}

.menu-chip:hover,
.menu-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.32);
}

.menu-chip--active {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.2), rgba(255, 211, 106, 0.13));
  border-color: rgba(255, 179, 71, 0.42);
  color: #fff;
}

.menu-flow {
  display: grid;
  gap: 18px;
}

.menu-item {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.menu-item:hover {
  border-color: rgba(255, 179, 71, 0.22);
  transform: translateY(-2px);
}

.menu-item.is-hidden {
  display: none !important;
}

.menu-item__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.menu-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.menu-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.menu-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-badge--new {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1a1a;
  border-color: transparent;
}

.menu-item__content {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.menu-item__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.menu-item__category {
  margin: 0 0 6px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-item h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.menu-item__price {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-align: right;
  white-space: nowrap;
}

.menu-item__price--stacked {
  display: grid;
  gap: 2px;
}

.price-old {
  color: var(--muted-2);
  font-size: 0.88rem;
}

.menu-item__text {
  margin: 0;
  color: var(--muted);
}

.menu-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-item__meta span,
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item--featured .menu-item__media {
  min-height: 280px;
}

.menu-item--split .menu-item__content {
  padding-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b1b1b;
  box-shadow: 0 16px 30px rgba(255, 179, 71, 0.18);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 18px 34px rgba(255, 179, 71, 0.25);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.btn--wide {
  width: 100%;
}

.contact__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.contact__chip {
  min-height: 60px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.contact__chip i {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

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

.contact__details > div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.contact__details strong {
  font-size: 0.98rem;
  line-height: 1.4;
}

.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 54px 16px 34px;
  display: grid;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  display: grid;
  gap: 12px;
  max-width: 46ch;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.site-footer__links a,
.site-footer__links button {
  background: transparent;
  color: var(--muted);
  padding: 0;
  border: 0;
  transition: color var(--transition), transform var(--transition);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__links button:hover,
.site-footer__links button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-footer__fineprint {
  color: var(--muted-2);
  font-size: 0.92rem;
}
.checkout-items-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-items-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.checkout-items-card__head h3 {
  margin: 0;
  font-size: 1.06rem;
}

.checkout-items-card__head span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.checkout-items-list {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-item__thumb {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
}

.checkout-item__info h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.checkout-item__info p,
.checkout-item__info span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-item__price {
  white-space: nowrap;
  font-weight: 900;
}

.checkout-item-empty {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
}
.drawer,
.modal {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.drawer.is-open,
.modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.drawer__backdrop,
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.drawer__panel,
.modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 520px);
  background:
    linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(14, 14, 17, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.drawer.is-open .drawer__panel,
.modal.is-open .modal__panel {
  transform: translateX(0);
}

.drawer__panel--product {
  width: min(100%, 760px);
}

.drawer__panel--cart {
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
}
.modal__panel {
  width: min(100%, 760px);
  height: min(100%, 100svh);
  border-radius: 28px 0 0 28px;
}

.modal__panel--checkout,
.modal__panel--history,
.modal__panel--success {
  padding: 22px 18px 24px;
}

.drawer__panel {
  padding: 22px 18px 24px;
}

.drawer__close,
.modal__close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  margin-left: auto;
  margin-bottom: 10px;
}

.drawer__head,
.modal__head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.product-drawer {
  display: grid;
  gap: 18px;
}

.product-drawer__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.product-drawer__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-drawer__content {
  display: grid;
  gap: 16px;
}

.product-drawer__content h2,
.modal__panel h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.02;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.product-drawer__content p {
  margin: 0;
  color: var(--muted);
}

.product-drawer__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chip {
  min-height: 38px;
  font-size: 0.93rem;
}

.product-chip i {
  color: var(--good);
}

.product-drawer__form {
  display: grid;
  gap: 16px;
}

.option-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  padding: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.option-group__list {
  display: grid;
  gap: 10px;
}

.option-pill {
  position: relative;
  display: block;
}

.option-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.option-pill__text {
  min-height: 56px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.option-pill:hover .option-pill__text,
.option-pill input:focus-visible + .option-pill__text {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.28);
  box-shadow: var(--shadow-soft);
}

.option-pill input:checked + .option-pill__text {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(255, 211, 106, 0.08));
  border-color: rgba(255, 179, 71, 0.34);
}

.option-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.option-price strong {
  color: var(--text);
}

.option-price del {
  color: var(--muted-2);
}

.drawer-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-note i {
  color: var(--good);
}

.qty-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qty-row__btn,
.quantity-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), opacity var(--transition);
}

.qty-row__btn:hover,
.qty-row__btn:focus-visible,
.quantity-btn:hover,
.quantity-btn:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.qty-row__btn:disabled,
.quantity-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

#productQtyValue {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
}

.cart-drawer {
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto;
}

.cart-drawer__items {
  display: grid;
  gap: 12px;
}

.empty-state,
.history-empty {
  width: 100%;
  min-height: 160px;
  padding: 22px 18px;
  display: grid;
  place-items: center;
  gap: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  text-align: center;
}

.empty-state i,
.history-empty i {
  font-size: 1.5rem;
  color: var(--accent-2);
}

.cart-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item__thumb {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
}

.cart-item__info {
  min-width: 0;
}

.cart-item__info h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.15;
}

.cart-item__info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item__controls {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.cart-item__qty {
  min-width: 24px;
  font-weight: 800;
  text-align: center;
}

.cart-item__price {
  grid-column: 1 / 2;
  font-size: 1rem;
}

.cart-item__remove {
  grid-column: 2 / 3;
  justify-self: end;
  width: 38px;
  height: 38px;
}

.cart-drawer__summary,
.checkout-summary,
.payment-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.summary-row--total {
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.04rem;
}

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

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 245, 247, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 179, 71, 0.36);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.12);
}

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

.payment-panel h3 {
  margin: 0;
  font-size: 1.08rem;
}

.payment-option {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.payment-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.2);
}

.payment-option input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.payment-option strong {
  display: block;
  margin-bottom: 2px;
}

.payment-option small {
  display: block;
  color: var(--muted);
}

.payment-option--disabled {
  opacity: 0.55;
}

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

.history-item {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.history-item:hover,
.history-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.history-item__main,
.history-item__meta {
  display: grid;
  gap: 2px;
}

.history-item__main span,
.history-item__meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.history-item__meta {
  text-align: right;
}

.success-head {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-bottom: 18px;
}

.success-head i {
  font-size: 2.6rem;
  color: var(--good);
}

.success-details {
  display: grid;
  gap: 16px;
}

.success-grid {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.success-grid p {
  margin: 0;
  color: var(--muted);
}

.success-grid strong {
  color: var(--text);
}

.success-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.14), rgba(255, 211, 106, 0.08));
  border: 1px solid rgba(255, 179, 71, 0.2);
}

.success-total span {
  color: var(--muted);
  font-weight: 700;
}

.success-total strong {
  font-size: 1.2rem;
}

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

.success-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.success-item span {
  color: var(--text);
}

.success-item small {
  color: var(--muted);
}

.success-item strong {
  white-space: nowrap;
}

.toast-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(16, 16, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  color: var(--text);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity var(--transition), transform var(--transition);
}

.toast--show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast__icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(95, 227, 161, 0.14);
  color: var(--good);
  flex: 0 0 auto;
}

.toast__text {
  color: rgba(255, 255, 255, 0.92);
}

.invoice,
.invoice * {
  box-sizing: border-box;
}

.invoice {
  width: 100%;
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.invoice__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.invoice__header h1,
.invoice__header h2,
.invoice__customer h2,
.invoice__items h2 {
  margin: 0 0 8px;
  line-height: 1.08;
}

.invoice__header p,
.invoice__customer p,
.invoice__totals p {
  margin: 0 0 6px;
}

.invoice__meta {
  text-align: right;
}

.invoice__customer,
.invoice__items,
.invoice__totals {
  margin-top: 18px;
}

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

.invoice__items th,
.invoice__items td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid #e9e9e9;
  vertical-align: top;
}

.invoice__totals {
  display: grid;
  gap: 8px;
  justify-content: end;
}

.invoice__totals p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-width: 260px;
}

.modal__panel--success {
  max-width: 760px;
}

.modal__panel--history {
  max-width: 720px;
}

.modal__panel--checkout {
  max-width: 760px;
}

.modal .field--full {
  margin-top: 4px;
}

.modal .payment-panel {
  margin-top: 4px;
}

.modal .checkout-summary {
  margin-top: 4px;
}

.modal .btn--wide {
  margin-top: 2px;
}

.drawer--cart .btn--wide {
  margin-top: 4px;
}

.modal__panel,
.drawer__panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.modal__panel::-webkit-scrollbar,
.drawer__panel::-webkit-scrollbar {
  width: 10px;
}

.modal__panel::-webkit-scrollbar-thumb,
.drawer__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.modal__panel::-webkit-scrollbar-track,
.drawer__panel::-webkit-scrollbar-track {
  background: transparent;
}

@media (min-width: 720px) {
  .menu-item {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .menu-item__media {
    min-height: 100%;
  }

  .menu-item__content {
    padding: 22px;
  }

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

  .product-drawer {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .product-drawer__media {
    position: sticky;
    top: 18px;
    min-height: 520px;
  }

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr) auto;
  }

  .cart-item__controls {
    grid-column: auto;
    justify-content: center;
    margin-left: auto;
  }

  .cart-item__price {
    grid-column: auto;
    justify-self: end;
    font-weight: 900;
  }

  .cart-item__remove {
    grid-column: auto;
  }

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

  .history-item {
    padding: 16px 18px;
  }
}

@media (min-width: 960px) {
  .hero {
    padding-top: 18px;
  }

  .hero__slider {
    min-height: 78svh;
  }

  .site-header__inner {
    padding-inline: 20px;
  }

  .menu,
  .contact,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-flow {
    gap: 20px;
  }

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

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

  .drawer__panel--product {
    width: min(100%, 900px);
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand__word {
    font-size: 0.98rem;
  }

  .cart-pill__label {
    display: none;
  }

  .cart-pill {
    padding-right: 10px;
    gap: 8px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__slider {
    min-height: 78svh;
  }

  .hero__content {
    padding: 20px 18px 56px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .menu,
  .contact {
    padding-top: 56px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-head {
    text-align: left;
    margin-bottom: 18px;
  }

  .menu-item__media {
    min-height: 210px;
  }

  .menu-item__content {
    padding: 16px;
  }

  .contact__grid,
  .contact__details,
  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .drawer__panel,
  .modal__panel {
    width: 100%;
    border-radius: 24px 24px 0 0;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    height: min(100%, 94svh);
    transform: translateY(102%);
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .drawer.is-open .drawer__panel,
  .modal.is-open .modal__panel {
    transform: translateY(0);
  }

  .drawer__panel--product {
    width: 100%;
  }

  .drawer__panel--cart {
    width: 100%;
  }

  .modal__panel--success,
  .modal__panel--history,
  .modal__panel--checkout {
    width: 100%;
  }

  .modal__panel--checkout,
  .modal__panel--history,
  .modal__panel--success,
  .drawer__panel {
    padding: 18px 14px 18px;
  }

  .toast-stack {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .icon-btn,
  .cart-pill {
    height: 42px;
  }

  .icon-btn {
    width: 42px;
  }

  .brand__mark {
    padding-inline: 10px;
  }

  .hero__slider {
    min-height: 80svh;
  }

  .hero__content {
    padding: 18px 16px 52px;
    gap: 10px;
  }

  .hero p,
  .section-head__text,
  .modal__text {
    font-size: 0.96rem;
  }

  .menu-item__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item__price {
    text-align: left;
  }

  .menu-badge {
    left: 12px;
    top: 12px;
    font-size: 0.8rem;
  }

  .menu-item__media {
    min-height: 190px;
  }

  .btn {
    min-height: 44px;
    padding-inline: 16px;
  }

  .option-pill__text,
  .payment-option,
  .success-grid,
  .cart-item,
  .contact__chip,
  .contact__details > div,
  .history-item,
  .cart-drawer__summary,
  .checkout-summary,
  .payment-panel {
    border-radius: 18px;
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .cart-item__thumb {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .cart-item__controls {
    gap: 8px;
  }

  .qty-row {
    gap: 12px;
  }

  .toast {
    padding: 13px 14px;
  }

  .invoice {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .site-header,
  .hero,
  .menu,
  .contact,
  .site-footer,
  .drawer,
  .modal,
  .toast-stack,
  .skip-link,
  .site-shell {
    display: none !important;
  }

  .invoice {
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 0;
  }
}
.nav-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 40;
}

.nav-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 340px);
  height: 100%;
  padding: 18px 16px 22px;
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(14, 14, 17, 0.98));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transform: translateX(-102%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.nav-drawer__panel a {
  display: block;
  padding: 14px 14px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.nav-drawer__panel a:hover,
.nav-drawer__panel a:focus-visible {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 179, 71, 0.24);
}

.nav-drawer__note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .nav-drawer__panel {
    width: min(100%, 86vw);
  }
}
.cart-drawer {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
  gap: 18px;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-drawer__summary {
  position: sticky;
  bottom: 0;
  z-index: 5;
  padding: 16px;
  border-radius: 22px;
  background: rgba(14, 14, 17, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
}
/* ===============================
   PREMIUM FOOD DRAWER UPGRADE
   =============================== */

.drawer__panel--product {
  width: min(100%, 920px);
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 211, 106, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.99), rgba(12, 12, 15, 0.99));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.45);
}

.product-drawer {
  gap: 22px;
}

.product-drawer__media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-drawer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at top, rgba(255, 179, 71, 0.12), transparent 30%);
  pointer-events: none;
}

.product-drawer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.product-drawer__badge {
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 0 14px;
  min-height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171717;
  border: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(255, 179, 71, 0.22);
}

.product-drawer__content {
  padding: 2px 2px 6px;
  display: grid;
  gap: 16px;
}

.product-drawer__content .eyebrow {
  color: var(--accent-2);
}

.product-drawer__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.product-drawer__content > p {
  color: rgba(245, 245, 247, 0.76);
  font-size: 1rem;
  max-width: 62ch;
}

.product-drawer__highlights {
  gap: 10px;
}

.product-chip {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-drawer__form {
  margin-top: 2px;
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.option-group {
  padding: 0;
}

.option-group legend {
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
}

.option-group__list {
  display: grid;
  gap: 12px;
}

.option-pill {
  position: relative;
  display: block;
}

.option-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.option-pill__text {
  position: relative;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.option-pill__text span:first-child {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.option-pill:hover .option-pill__text,
.option-pill input:focus-visible + .option-pill__text {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.28);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 179, 71, 0.08) inset;
}

.option-pill input:checked + .option-pill__text {
  background:
    linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(255, 211, 106, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 179, 71, 0.45);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 179, 71, 0.16) inset;
}

.option-pill input:checked + .option-pill__text::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.08), rgba(255, 211, 106, 0.05));
  pointer-events: none;
}

.option-pill input:checked + .option-pill__text::after {
  content: "SELECTED";
  position: absolute;
  top: -10px;
  right: 14px;
  height: 24px;
  padding: 0 10px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #161616;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  box-shadow: 0 10px 24px rgba(255, 179, 71, 0.24);
}

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

.option-price strong {
  font-size: 0.98rem;
}

.option-price del {
  opacity: 0.62;
}

.drawer-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.qty-row {
  margin-top: 4px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#productQtyValue {
  font-size: 1.02rem;
  font-weight: 900;
}

#addProductToCartBtn {
  min-height: 54px;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 18px 36px rgba(255, 179, 71, 0.18);
}

#addProductToCartBtn:hover,
#addProductToCartBtn:focus-visible {
  box-shadow: 0 20px 40px rgba(255, 179, 71, 0.24);
}

@media (min-width: 768px) {
  .drawer__panel--product {
    padding: 24px;
  }

  .product-drawer {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
    gap: 24px;
  }

  .product-drawer__media {
    position: sticky;
    top: 20px;
    min-height: 560px;
  }

  .product-drawer__form {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .drawer__panel--product {
    padding: 18px 14px 20px;
  }

  .product-drawer__media {
    min-height: 240px;
    border-radius: 22px;
  }

  .product-drawer__form {
    padding: 16px;
    border-radius: 22px;
  }

  .option-pill__text {
    min-height: 58px;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .option-pill input:checked + .option-pill__text::after {
    top: -9px;
    right: 10px;
    font-size: 0.64rem;
  }
}
/* ===============================
   UPGRADED PAYMENT CONFIRMATION MODAL
   =============================== */

.modal__panel--success {
  width: min(100%, 760px);
  max-height: 94svh;
  overflow-y: auto;
  padding: 24px 18px 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(95, 227, 161, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.99), rgba(12, 12, 15, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.success-head {
  position: relative;
  padding: 18px 18px 20px;
  margin-bottom: 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.success-head::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 71, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(95, 227, 161, 0.08), transparent 28%);
  pointer-events: none;
}

.success-head > * {
  position: relative;
  z-index: 1;
}

.success-head i {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171717;
  font-size: 2rem;
  box-shadow: 0 18px 34px rgba(255, 179, 71, 0.22);
  margin-bottom: 6px;
}

.success-head .eyebrow {
  color: var(--accent-2);
}

.success-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4.5vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.success-head p:last-child {
  margin: 0;
  color: rgba(245, 245, 247, 0.76);
  max-width: 58ch;
}

.success-details {
  display: grid;
  gap: 16px;
}

.success-grid {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.success-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.success-grid strong {
  color: var(--text);
}

.success-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.16), rgba(255, 211, 106, 0.08));
  border: 1px solid rgba(255, 179, 71, 0.22);
  box-shadow: 0 18px 38px rgba(255, 179, 71, 0.08);
}

.success-total span {
  color: var(--muted);
  font-weight: 700;
}

.success-total strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

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

.success-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.success-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.success-item span {
  color: var(--text);
  line-height: 1.35;
}

.success-item small {
  color: var(--muted);
}

.success-item strong {
  white-space: nowrap;
  font-weight: 900;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
  flex-wrap: wrap;
}

.success-actions .btn {
  min-width: 160px;
}

@media (max-width: 767px) {
  .modal__panel--success {
    padding: 18px 14px 16px;
  }

  .success-head {
    padding: 16px;
    border-radius: 22px;
  }

  .success-head i {
    width: 58px;
    height: 58px;
    font-size: 1.7rem;
  }

  .success-grid,
  .success-total,
  .success-item {
    border-radius: 18px;
  }

  .success-total {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .success-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
