:root {
  --color-primary: #ff7a00;
  --color-secondary: #ffe8c7;
  --color-dark: #111111;
  --color-white: #ffffff;
  --color-brown: #5a2f14;
  --shadow-soft: 0 24px 60px rgba(17, 17, 17, 0.12);
  --shadow-card: 0 14px 32px rgba(255, 122, 0, 0.12);
  --border-light: rgba(255, 255, 255, 0.55);
  --glass-bg: rgba(255, 255, 255, 0.58);
  --glass-dark: rgba(20, 12, 8, 0.66);
  --surface: rgba(255, 255, 255, 0.74);
  --surface-dark: rgba(20, 20, 20, 0.82);
  --text-soft: #5a6474;
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 183, 84, 0.22), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 122, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ee 50%, #fff2e3 100%);
  color: var(--color-dark);
}

body.dark-mode {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 22%),
    linear-gradient(180deg, #100c0a 0%, #17110c 50%, #0d0a08 100%);
  color: #fef6eb;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

.page-shell {
  position: relative;
}

.install-strip {
  position: relative;
  z-index: 41;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.8rem 0.7rem 0.95rem;
  border: 1px solid rgba(255, 214, 165, 0.7);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 196, 109, 0.35), transparent 34%),
    linear-gradient(115deg, #2a1408 0%, #51270f 56%, #9a4b12 100%);
  box-shadow: 0 16px 34px rgba(76, 33, 6, 0.26);
  color: #fff8ef;
  opacity: 0;
  transform: translateY(-0.6rem);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

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

.install-strip-brand,
.install-strip-actions,
.install-strip-install,
.install-strip-close {
  display: flex;
  align-items: center;
}

.install-strip-brand {
  min-width: 0;
  gap: 0.7rem;
}

.install-strip-brand img {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  border-radius: 0.9rem;
  object-fit: cover;
  border: 1px solid rgba(255, 239, 215, 0.28);
  background: #160b04;
}

.install-strip-brand p,
.install-strip-brand strong,
.install-strip-brand span {
  display: block;
  margin: 0;
}

.install-strip-brand p {
  color: #ffd39c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
}

.install-strip-brand strong {
  margin-top: 0.16rem;
  overflow: hidden;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.94rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.install-strip-brand span {
  margin-top: 0.16rem;
  color: rgba(255, 244, 231, 0.72);
  font-size: 0.68rem;
  line-height: 1.2;
}

.install-strip-actions {
  flex: 0 0 auto;
  gap: 0.45rem;
}

.install-strip-install {
  gap: 0.38rem;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #ff7a00, #ffad5d);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.install-strip-install:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 22px rgba(0, 0, 0, 0.26);
}

.install-strip-install svg {
  width: 1rem;
  height: 1rem;
}

.install-strip-close {
  width: 2.35rem;
  height: 2.35rem;
  justify-content: center;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.25s ease, transform 0.25s ease;
}

.install-strip-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(4deg);
}

.glass-panel,
.content-panel,
.metric-card,
.offer-card,
.feature-card,
.why-card,
.coupon-card,
.festival-card,
.timeline-offer,
.contact-list-item,
.contact-action-card,
.menu-card,
.cart-item-card,
.install-card,
.reward-hero,
.offer-hero,
.stamp-card,
.unlock-meter {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--glass-bg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.dark-mode .glass-panel,
body.dark-mode .content-panel,
body.dark-mode .metric-card,
body.dark-mode .offer-card,
body.dark-mode .feature-card,
body.dark-mode .why-card,
body.dark-mode .coupon-card,
body.dark-mode .festival-card,
body.dark-mode .timeline-offer,
body.dark-mode .contact-list-item,
body.dark-mode .contact-action-card,
body.dark-mode .menu-card,
body.dark-mode .cart-item-card,
body.dark-mode .install-card,
body.dark-mode .reward-hero,
body.dark-mode .offer-hero,
body.dark-mode .stamp-card,
body.dark-mode .unlock-meter {
  background: rgba(24, 17, 14, 0.74);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-card {
  min-height: 580px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.steam-cloud {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 38%, transparent 70%);
  filter: blur(18px);
  animation: steamFloat 9s ease-in-out infinite;
}

.steam-cloud-1 {
  left: 8%;
  bottom: 8%;
}

.steam-cloud-2 {
  right: 14%;
  bottom: 18%;
  animation-delay: 2s;
}

.steam-cloud-3 {
  left: 42%;
  top: 12%;
  animation-delay: 4s;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

body.dark-mode .glass-panel {
  background: rgba(20, 14, 11, 0.72);
}

.content-panel,
.metric-card,
.why-card,
.install-card,
.offer-card,
.coupon-card,
.festival-card,
.timeline-offer,
.contact-list-item,
.contact-action-card,
.stamp-card,
.unlock-meter {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-card i,
.why-card i,
.contact-list-item i,
.contact-action-card i {
  flex-shrink: 0;
  color: var(--color-primary);
}

.metric-card h3,
.why-card h3,
.contact-action-card h3,
.contact-list-item span {
  margin: 0 0 0.25rem;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.metric-card p,
.why-card p,
.contact-action-card p,
.contact-list-item small,
.offer-card p,
.coupon-card p,
.festival-card p,
.timeline-offer p,
.install-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.925rem;
}

body.dark-mode .metric-card p,
body.dark-mode .why-card p,
body.dark-mode .contact-action-card p,
body.dark-mode .contact-list-item small,
body.dark-mode .offer-card p,
body.dark-mode .coupon-card p,
body.dark-mode .festival-card p,
body.dark-mode .timeline-offer p,
body.dark-mode .install-card p {
  color: rgba(255, 246, 235, 0.74);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0.25rem 0 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 2rem);
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.section-link:hover {
  transform: translateX(4px);
}

.status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #2fb344;
  box-shadow: 0 0 0 8px rgba(47, 179, 68, 0.12);
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  color: var(--color-dark);
  transition: transform 0.3s ease, background 0.3s ease;
}

body.dark-mode .icon-button {
  background: rgba(255, 255, 255, 0.08);
  color: #fef6eb;
  border-color: rgba(255, 255, 255, 0.12);
}

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

.favorite-btn.is-favorite {
  background: rgba(255, 122, 0, 0.95);
  color: #fff;
}

.cart-count-badge {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  min-width: 1.2rem;
  min-height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 0.3rem;
}

.cta-primary,
.cta-secondary,
.mini-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.cta-primary,
.mini-add-btn {
  background: linear-gradient(135deg, #ff7a00 0%, #ff9a3d 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.3);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--color-dark);
}

body.dark-mode .cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fef6eb;
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-primary:hover,
.cta-secondary:hover,
.mini-add-btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.action-tile,
.contact-action-card,
.contact-list-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-tile:hover,
.contact-action-card:hover,
.contact-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

body.dark-mode .action-tile,
body.dark-mode .contact-action-card,
body.dark-mode .contact-list-item {
  background: rgba(255, 255, 255, 0.05);
}

.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.hero-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.hero-icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-icon-action:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.9;
}

.hero-icon-action .action-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(10px);
}

body.dark-mode .hero-icon-action .action-icon {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: 1.5rem;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.category-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 1rem;
}

.category-pill {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.68);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.category-pill:hover,
.category-pill.active {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.28);
}

.category-pill img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  border-radius: 1.8rem;
  overflow: hidden;
  padding: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(17, 17, 17, 0.16);
}

.menu-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(255, 232, 199, 0.82));
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.4rem;
}

.menu-card-body {
  padding: 1.2rem;
}

.menu-card-body h3,
.offer-card h3,
.coupon-card h3,
.festival-card h3,
.timeline-offer h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge.veg {
  background: rgba(47, 179, 68, 0.12);
  color: #198754;
}

.badge.bestseller {
  background: rgba(255, 122, 0, 0.12);
  color: var(--color-primary);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.price-row strong,
.offer-price-row span,
.festival-card span {
  font-size: 1.2rem;
  font-weight: 700;
}

.offer-price-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.offer-price-row small {
  color: rgba(17, 17, 17, 0.45);
  font-weight: 600;
  text-decoration: line-through;
}

body.dark-mode .offer-price-row small {
  color: rgba(255, 246, 235, 0.54);
}

.offer-hero,
.reward-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(90, 47, 20, 0.85), rgba(255, 122, 0, 0.84));
  color: #fff;
}

.offer-hero h2,
.reward-hero h2 {
  margin: 0.3rem 0 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 1.5rem + 1vw, 3rem);
}

.offer-hero p,
.reward-hero p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-tag,
.coupon-label {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coupon-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.timeline-offer,
.festival-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.timeline-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  margin-top: 0.5rem;
}

.reward-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 1.25rem;
  background: rgba(255, 122, 0, 0.08);
  border: 1px dashed rgba(255, 122, 0, 0.32);
  color: var(--color-primary);
  transition: transform 0.35s ease, background 0.35s ease;
}

.stamp.active {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 217, 165, 0.55));
  border-style: solid;
  transform: translateY(-2px);
}

.progress-row {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-track {
  flex: 1;
  height: 0.95rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  transition: width 0.6s ease;
}

.unlock-meter {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.unlock-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--color-primary) 0deg, rgba(255, 122, 0, 0.1) 0deg);
  position: relative;
}

.unlock-ring::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.88);
}

body.dark-mode .unlock-ring::after {
  background: rgba(20, 12, 8, 0.96);
}

.unlock-number {
  position: relative;
  z-index: 1;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.glass-search {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

body.dark-mode .glass-search {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.glass-search input,
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  outline: none;
}

.filter-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.toggle-chip,
.coupon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 700;
  color: inherit;
  transition: all 0.3s ease;
}

.toggle-chip.is-active,
.coupon-pill:hover {
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
  color: #fff;
}

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

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.form-field input,
.form-field textarea {
  border-radius: 1.1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

body.dark-mode .form-field input,
body.dark-mode .form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.summary-row strong {
  font-size: 1.15rem;
}

.payment-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 122, 0, 0.17);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 84, 0.2), transparent 44%),
    rgba(255, 255, 255, 0.46);
}

body.dark-mode .payment-card {
  border-color: rgba(255, 178, 94, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.payment-card-head,
.payment-id-row,
.payment-status,
.payment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.payment-card-head h3,
.payment-card-head p,
.payment-card > p {
  margin: 0;
}

.payment-card-head p {
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-card-head h3 {
  margin-top: 0.22rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
}

.payment-amount {
  flex: 0 0 auto;
  padding: 0.52rem 0.72rem;
  border-radius: 0.85rem;
  background: rgba(255, 122, 0, 0.12);
  color: var(--color-primary);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

.payment-helper {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.payment-id-row {
  padding: 0.72rem 0.78rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

body.dark-mode .payment-id-row {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.payment-id-row span {
  display: block;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-id-row code {
  display: block;
  margin-top: 0.18rem;
  overflow: hidden;
  color: inherit;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-copy-btn {
  flex: 0 0 auto;
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
  background: rgba(255, 122, 0, 0.1);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 800;
}

.payment-status {
  justify-content: flex-start;
  padding: 0.78rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 183, 84, 0.13);
  color: #84520c;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.payment-status.is-confirmed {
  background: rgba(34, 197, 94, 0.13);
  color: #16743a;
}

body.dark-mode .payment-status {
  color: #ffd28e;
}

body.dark-mode .payment-status.is-confirmed {
  color: #8ff0b1;
}

.payment-status svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.payment-actions {
  align-items: stretch;
}

.payment-actions .cta-primary,
.payment-actions .cta-secondary {
  flex: 1;
  justify-content: center;
  padding: 0.78rem 0.9rem;
  font-size: 0.78rem;
}

.payment-receipt-note {
  color: var(--text-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.payment-locked {
  opacity: 0.52;
  cursor: not-allowed;
  filter: grayscale(0.35);
  pointer-events: none;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cart-item-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 1.25rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 999px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.72);
}

body.dark-mode .qty-control {
  background: rgba(255, 255, 255, 0.05);
}

.qty-control button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--color-primary);
  font-weight: 700;
}

.empty-state {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1.8rem;
  border: 1px dashed rgba(255, 122, 0, 0.3);
  background: rgba(255, 255, 255, 0.32);
}

.empty-state i {
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
}

.floating-cart-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.75rem);
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(24, 18, 15, 0.95);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.search-suggestions a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-suggestions a:last-child {
  border-bottom: none;
}

.search-suggestions a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.discount-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.75rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(90, 47, 20, 0.92), rgba(255, 122, 0, 0.86));
  color: #fff;
}

.review-card {
  border-radius: 1.45rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

body.dark-mode .review-card {
  background: rgba(255, 255, 255, 0.04);
}

.map-card {
  border-radius: 1.8rem;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.map-card.large {
  min-height:280px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  width: min(calc(100% - 1.5rem), 700px);
  padding: 0.75rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.7rem;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  transition: all 0.35s ease;
  font-size: 0.78rem;
}

.nav-item.active {
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
  color: #fff;
}

.toast,
.offline-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.toast {
  bottom: 6.4rem;
}

.offline-banner {
  top: 1rem;
}

.hidden {
  display: none !important;
}

.step-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.step-item span {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.15);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.coupon-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.opening-hours {
  display: grid;
  gap: 1rem;
}

.opening-hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body.dark-mode .opening-hours div {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.opening-hours div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qr-code {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.qr-cell {
  aspect-ratio: 1;
  border-radius: 0.35rem;
  background: rgba(90, 47, 20, 0.08);
}

.qr-cell.filled {
  background: #111111;
}

body.dark-mode .qr-cell.filled {
  background: #ffffff;
}

.skeleton-card {
  border-radius: 1.8rem;
  min-height: 320px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32) 25%, rgba(255, 255, 255, 0.66) 50%, rgba(255, 255, 255, 0.32) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}

.loading-bar {
  width: 45%;
  animation: loader 2.4s ease-in-out infinite;
}

.offline-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

@keyframes steamFloat {
  0%, 100% {
    transform: translateY(18px) scale(0.96);
    opacity: 0.22;
  }
  50% {
    transform: translateY(-20px) scale(1.08);
    opacity: 0.42;
  }
}

.developer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.35rem 0 0.15rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.developer-credit-logo {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  border-radius: 0;
}

.developer-credit-label,
.developer-credit-name {
  margin: 0;
  line-height: 1.2;
}

.developer-credit-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #7d7f8f;
}

.developer-credit-name {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2d2f39;
}

body.dark-mode .developer-credit-name {
  color: #f4f4f7;
}

body.dark-mode .developer-credit-label {
  color: rgba(255, 255, 255, 0.6);
}
