/*
 * Custom styles for the Danny's Wok clone.  The goal of this stylesheet is to
 * provide a clean, mobile‑first layout inspired by the requested design while
 * keeping Danny's Wok colour palette.  Layouts scale up gracefully to larger
 * screens without breaking the flow of the content.  All colours and
 * measurements have been chosen to be simple and friendly without
 * overwhelming the food photography.
 */

/* Danny's Wok colour palette */
:root {
  --dw-primary: #c0392b;
  --dw-primary-strong: #e74c3c;
  --dw-primary-dark: #922b21;
  --dw-accent: #f39c12;
  --dw-surface: #fff6e6;
  --dw-surface-strong: #ffe6c1;
  --dw-surface-contrast: #ffffff;
  --dw-text-dark: #2c1a0a;
  --dw-text-muted: #5a4636;
  --dw-border-soft: rgba(192, 57, 43, 0.18);
  --dw-enter-glow: rgba(231, 76, 60, 0.65);
}

/* Reset some default browser styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: var(--dw-text-dark);
  background-color: var(--dw-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.hidden {
  display: none !important;
}

.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

header {
  background-color: var(--dw-surface-contrast);
  border-bottom: 1px solid rgba(192, 57, 43, 0.08);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

header.menu-header {
  align-items: flex-start;
}

.menu-header__left,
.menu-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-header__left {
  flex: 1 1 auto;
  min-width: 260px;
}

.menu-header__locations {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(243, 156, 18, 0.08);
  color: var(--dw-text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-header__locations span {
  white-space: nowrap;
}

.menu-header__locations span + span::before {
  content: '•';
  margin: 0 0.4rem;
  color: rgba(243, 156, 18, 0.85);
}

.menu-header__right {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex: 0 1 auto;
}

.menu-header__right nav {
  margin-left: 0;
}

.menu-header__selected-store {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(192, 57, 43, 0.08);
  color: var(--dw-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-header__selected-store--empty {
  background: rgba(192, 57, 43, 0.04);
  color: var(--dw-text-muted);
}

.menu-header__selected-store:focus-visible {
  outline: 2px solid rgba(192, 57, 43, 0.5);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.15);
}

.menu-header__selected-store.is-animating {
  animation: fulfilmentTogglePulse 0.28s ease;
}

.menu-header__selected-store-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.menu-header__selected-store-label-text {
  display: inline-block;
}

.menu-header__fulfilment-icon {
  display: none;
  height: 1.1rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.menu-header__selected-store[data-fulfilment='delivery'] .menu-header__fulfilment-icon {
  display: block;
}

.menu-header__selected-store-value {
  font-size: 0.88rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.menu-header__selected-store.is-animating .menu-header__selected-store-label,
.menu-header__selected-store.is-animating .menu-header__selected-store-value {
  opacity: 0.7;
}

@keyframes fulfilmentTogglePulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-10px);
  animation: logoReveal 0.6s ease-out forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: inherit;
}

.site-logo__icon {
  height: 44px;
  width: auto;
}

.site-logo__wordmark {
  height: 30px;
  width: auto;
}

.site-logo:hover,
.site-logo:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  outline: none;
}

header nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
}

nav a {
  color: var(--dw-text-dark);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

nav a:hover {
  background-color: rgba(243, 156, 18, 0.12);
}

nav a:focus-visible {
  background-color: rgba(243, 156, 18, 0.16);
  outline: none;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.25);
}

.btn,
button {
  --button-border-color: var(--dw-primary);
  --button-border-color-hover: var(--dw-primary-strong);
  --button-border-color-active: var(--dw-primary-dark);
  --button-border-color-focus: var(--button-border-color-hover);
  --button-bg-color: var(--dw-primary);
  --button-bg-hover: var(--dw-primary-strong);
  --button-bg-active: var(--dw-primary-dark);
  --button-bg-focus: var(--button-bg-hover);
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.22), transparent);
  --button-bg-image-hover: var(--button-bg-image);
  --button-bg-image-active: var(--button-bg-image-hover);
  --button-bg-image-focus: var(--button-bg-image-hover);
  --button-text-color: #fff;
  --button-shadow-inset: inset 0 0 2px 1px rgba(255, 255, 255, 0.18);
  --button-shadow: 0 1px 6px rgba(192, 57, 43, 0.28);
  --button-shadow-hover: 0 2px 8px rgba(192, 57, 43, 0.34);
  --button-shadow-active: 0 1px 5px rgba(130, 34, 25, 0.26);
  --button-shadow-focus: var(--button-shadow-hover);
  --button-shadow-inset-hover: var(--button-shadow-inset);
  --button-shadow-inset-active: var(--button-shadow-inset-hover);
  --button-shadow-inset-focus: var(--button-shadow-inset-hover);
  --button-scale-hover: 1.04;
  --button-scale-active: 0.96;
  --button-scale-focus: var(--button-scale-hover);
  --button-focus-decoration: underline;
  --button-focus-text-thickness: 0.0625em;
  --button-focus-text-offset: 0.125em;
  appearance: none;
  background-color: var(--button-bg-color);
  background-image: var(--button-bg-image);
  border: 1px solid var(--button-border-color);
  border-radius: var(--button-radius, 8px);
  color: var(--button-text-color);
  cursor: pointer;
  text-decoration: none;
  transition-property: border-color, transform, background-color, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.55, 1, 0.15, 1);
  box-shadow: var(--button-shadow-inset), var(--button-shadow);
  transform: scale(1);
  will-change: transform;
}

.btn:hover,
button:hover {
  border-color: var(--button-border-color-hover);
  background-color: var(--button-bg-hover);
  background-image: var(--button-bg-image-hover);
  box-shadow: var(--button-shadow-inset-hover, var(--button-shadow-inset)),
    var(--button-shadow-hover, var(--button-shadow));
  transform: scale(var(--button-scale-hover, 1));
}

.btn:focus-visible,
button:focus-visible {
  outline: none;
  border-color: var(--button-border-color-focus, var(--button-border-color-hover));
  background-color: var(--button-bg-focus, var(--button-bg-hover));
  background-image: var(--button-bg-image-focus, var(--button-bg-image-hover));
  box-shadow: var(--button-shadow-inset-focus, var(--button-shadow-inset-hover, var(--button-shadow-inset))),
    var(--button-shadow-focus, var(--button-shadow-hover, var(--button-shadow)));
  transform: scale(var(--button-scale-focus, var(--button-scale-hover, 1)));
  text-decoration-line: var(--button-focus-decoration, underline);
  text-decoration-thickness: var(--button-focus-text-thickness, 0.0625em);
  text-underline-offset: var(--button-focus-text-offset, 0.125em);
}

.btn:active,
button:active {
  border-color: var(--button-border-color-active);
  background-color: var(--button-bg-active);
  background-image: var(--button-bg-image-active, var(--button-bg-image-hover));
  box-shadow: var(--button-shadow-inset-active, var(--button-shadow-inset-focus, var(--button-shadow-inset))),
    var(--button-shadow-active, var(--button-shadow-focus, var(--button-shadow)));
  transform: scale(var(--button-scale-active, 1));
}

.btn:disabled,
button:disabled {
  cursor: not-allowed;
}

.cart-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-link {
  position: relative;
  z-index: 1;
}

.cart-icon-button {
  --glow-strength: 0;
  --glow-alpha: 0;
  --shimmer-angle: 0deg;
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 calc(34px * var(--glow-strength))
      calc(6px * var(--glow-strength))
      rgba(255, 215, 128, var(--glow-alpha));
}

.cart-icon-button,
.cart-icon-button:hover,
.cart-icon-button:focus-visible {
  background-color: transparent;
}

.cart-icon-button:hover,
.cart-icon-button:focus-visible {
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.cart-icon-button:focus-visible {
  box-shadow: 0 0 calc(34px * var(--glow-strength))
      calc(6px * var(--glow-strength))
      rgba(255, 215, 128, var(--glow-alpha)),
    0 0 0 3px rgba(192, 57, 43, 0.35);
}

.cart-icon-button .shimmer-layer {
  inset: -6px;
  z-index: -1;
}

.cart-icon-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

@property --shimmer-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes shimmer-loop {
  from {
    --shimmer-angle: 0deg;
  }
  to {
    --shimmer-angle: 360deg;
  }
}

.shimmer-layer {
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  mask-image: conic-gradient(
    from var(--shimmer-angle),
    transparent 0%,
    transparent 18%,
    black 35%,
    rgba(0, 0, 0, 0.85) 48%,
    transparent 68%,
    transparent 100%
  );
  mix-blend-mode: plus-lighter;
  animation: shimmer-loop 1.4s linear infinite;
  background: radial-gradient(
      circle at center,
      rgba(255, 223, 128, 0.35) 0%,
      rgba(255, 196, 92, 0.15) 55%,
      transparent 72%
    ),
    conic-gradient(
      from calc(var(--shimmer-angle) - 30deg),
      rgba(255, 248, 224, 0.1),
      rgba(255, 215, 128, 0.55),
      rgba(255, 248, 224, 0.1)
    );
}

.cart-icon-button.is-glowing .shimmer-layer {
  opacity: calc(0.18 + 0.6 * var(--glow-strength));
}

@keyframes cartScorePop {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-6px) scale(1.12);
  }
  70% {
    transform: translateY(2px) scale(0.96);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.cart-icon-button.score-pop {
  animation: cartScorePop 0.48s ease-out;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem) 1.5rem;
  background: linear-gradient(135deg, rgba(255, 246, 230, 0.96) 0%, rgba(255, 232, 194, 0.9) 52%, rgba(255, 253, 248, 0.98) 100%);
  color: var(--dw-text-dark);
}

.hero-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.hero-heading h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 0.35rem;
  color: var(--dw-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-heading p {
  color: var(--dw-text-muted);
  font-size: 1rem;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.hero-carousel::before,
.hero-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(32px, 8vw, 110px);
  pointer-events: none;
  z-index: 2;
}

.hero-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 246, 230, 1), rgba(255, 246, 230, 0));
}

.hero-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hero-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  will-change: transform;
  animation: heroScroll var(--hero-duration, 60s) linear infinite;
}

.hero-track:hover {
  animation-play-state: paused;
}

.hero-track[data-mode='swipe'] {
  animation: none;
  width: max-content;
}

.hero-carousel.is-touch {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.hero-carousel.is-touch::-webkit-scrollbar {
  display: none;
}

.hero-track[data-mode='swipe'] .hero-card {
  scroll-snap-align: center;
}

.hero-card {
  flex: 0 0 auto;
  width: clamp(180px, 20vw, 240px);
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-card img {
  width: 100%;
  height: clamp(140px, 16vw, 190px);
  object-fit: cover;
}

.hero-card img.photo-press,
.single_menu img.photo-press {
  animation: photoPress 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes photoPress {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(0.92);
  }
  65% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-card-info {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
}

.hero-card-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dw-text-dark);
}

.hero-card-price {
  font-weight: 600;
  color: var(--dw-primary);
}

.hero-card:hover,
.hero-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  outline: none;
}

.hero-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.42), 0 18px 32px rgba(0, 0, 0, 0.12);
}

@keyframes heroScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  header.menu-header {
    align-items: stretch;
  }

  .menu-header__left,
  .menu-header__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 100%;
  }

  .menu-header__right {
    align-items: flex-start;
  }

  .menu-header__selected-store {
    align-self: stretch;
    width: 100%;
    justify-content: space-between;
  }

  .menu-header__locations {
    width: 100%;
    justify-content: space-between;
    gap: 0.25rem 0.5rem;
  }

  header nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 1.5rem 1rem 2rem;
  }

  .hero-heading {
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-logo {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-track {
    animation: none;
  }

  .shimmer-layer {
    animation: none;
  }

  .cart-icon-button.score-pop {
    animation: none;
    transform: scale(1.04);
    box-shadow: 0 0 calc(34px * var(--glow-strength))
        calc(6px * var(--glow-strength))
        rgba(255, 215, 128, var(--glow-alpha)),
      0 0 0 3px rgba(255, 215, 128, 0.45);
  }
}

main {
  padding: 1rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.col-lg-12,
.col-md-6 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
    padding: 0 1rem;
  }
}

.page_title {
  padding: 30px 0;
}

.page_title h1 {
  color: #c0392b;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
}

.page_title h1::before {
  background: #c0392b;
  width: 70px;
  height: 2px;
  position: absolute;
  content: '';
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page_title h1::after {
  position: absolute;
  content: '';
  background: #fbc531;
  width: 30px;
  height: 2px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu_tab {
  margin: 0 auto 2rem auto;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0 1rem;
}

.nav-item {
  display: inline-block;
  text-align: center;
}

.nav-tabs .nav-link {
  transition: 0.3s;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  background: #fff;
  color: #000;
  cursor: pointer;
}

.nav-tabs .nav-link.active {
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  border: 1px solid #c0392b;
  text-transform: capitalize;
}

.nav-tabs .nav-link:hover {
  background: #c0392b;
  color: #fff;
  border: 1px solid #c0392b;
}

.tab-content {
  width: 100%;
}

.tab-pane {
  display: none;
  width: 100%;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single_menu {
  position: relative;
  margin-bottom: 75px;
  transition: 0.3s;
  padding-left: 200px;
  min-height: 150px;
}

.single_menu img {
  width: 33%;
  position: absolute;
  height: 140px;
  object-fit: cover;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  transition: 0.3s;
  border: 1px solid #ddd;
  border-radius: 5px;
  left: 0;
  top: 0;
}

.single_menu:hover img {
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .hero-track[data-mode='swipe'] .hero-card {
    scroll-snap-align: start;
  }

  .hero-card {
    width: clamp(170px, 62vw, 220px);
  }

  .single_menu {
    padding-left: min(58vw, 260px);
    min-height: 190px;
    margin-bottom: 3rem;
  }

  .single_menu img {
    width: min(58vw, 260px);
    height: 190px;
    object-position: center 35%;
  }
}

@media (max-width: 520px) {
  .hero-card {
    width: clamp(180px, 78vw, 240px);
  }

  .single_menu {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    min-height: unset;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }

  .single_menu img {
    position: relative;
    width: 100%;
    max-height: 240px;
    height: auto;
    object-position: center 30%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 88%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 88%, 0% 100%);
  }

  .menu_content {
    padding-left: 0;
  }

  .single_menu:hover img,
  .single_menu:focus-within img {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.menu_content {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
}

.menu_content h4 {
  font-size: 1.25rem;
  font-weight: 300;
  border-bottom: 1px dashed #c0392b;
  line-height: 2;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_content h4 span {
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
  color: #c0392b;
}

.menu_content p {
  font-weight: 200;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #555;
}

.menu_content .add-btn {
  align-self: flex-start;
  --button-border-color: #c0392b;
  --button-border-color-hover: #d54335;
  --button-border-color-active: #922b21;
  --button-bg-color: #c0392b;
  --button-bg-hover: #d54335;
  --button-bg-active: #a93226;
  --button-text-color: #fff;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.22), transparent);
  --button-shadow: 0 1px 4px rgba(146, 43, 33, 0.22);
  --button-shadow-hover: 0 2px 6px rgba(146, 43, 33, 0.28);
  --button-shadow-active: 0 1px 4px rgba(146, 43, 33, 0.2);
  --button-radius: 3px;
  --button-focus-decoration: underline;
  --button-scale-hover: 1.04;
  --button-scale-active: 0.97;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu_btn.btn.btn-danger {
  margin: 0 auto;
  display: block;
  width: 140px;
}

.btn.btn-danger {
  --button-border-color: #c0392b;
  --button-border-color-hover: #d54335;
  --button-border-color-active: #922b21;
  --button-bg-color: #c0392b;
  --button-bg-hover: #d54335;
  --button-bg-active: #a93226;
  --button-text-color: #fff;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.18), transparent);
  --button-shadow: 0 1px 6px rgba(192, 57, 43, 0.28);
  --button-shadow-hover: 0 2px 8px rgba(192, 57, 43, 0.34);
  --button-shadow-active: 0 1px 5px rgba(130, 34, 25, 0.26);
  --button-radius: 0.5rem;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  font-weight: 700;
  overflow: hidden;
  padding: 15px 25px;
  text-align: center;
}

.btn.btn-danger::before {
  position: absolute;
  content: '';
  background: #e74c3c;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 100%;
  transition: 0.3s;
  z-index: -1;
}

.btn.btn-danger:hover::before {
  top: 0;
  left: 0;
}

.btn.btn-danger:hover,
.btn.btn-danger:focus-visible {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .menu_tab {
    gap: 0.35rem;
    padding: 0 0.5rem;
    margin: 0 auto 1rem auto;
  }

  .menu_tab .nav-item {
    flex: 0 1 auto;
  }

  .nav-tabs .nav-link {
    padding: 0.35rem 0.8rem;
    font-size: 0.95rem;
  }
}

/* Cart section */
.cart-link {
  position: relative;
}

.cart-count {
  background-color: #c0392b;
  color: #fff;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  margin-left: 0.25rem;
  min-width: 1.5rem;
  text-align: center;
  display: inline-block;
}

#cart {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cart-empty {
  color: #777;
  font-size: 0.95rem;
}

.place-order-btn {
  --button-border-color: #c0392b;
  --button-border-color-hover: #d54335;
  --button-border-color-active: #922b21;
  --button-bg-color: #c0392b;
  --button-bg-hover: #d54335;
  --button-bg-active: #a93226;
  --button-text-color: #fff;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.2), transparent);
  --button-shadow: 0 1px 6px rgba(192, 57, 43, 0.26);
  --button-shadow-hover: 0 2px 8px rgba(192, 57, 43, 0.32);
  --button-shadow-active: 0 1px 5px rgba(146, 43, 33, 0.22);
  --button-radius: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.place-order-btn:disabled {
  --button-border-color: #cccccc;
  --button-border-color-hover: #cccccc;
  --button-border-color-active: #cccccc;
  --button-bg-color: #cccccc;
  --button-bg-hover: #cccccc;
  --button-bg-active: #cccccc;
  --button-text-color: #666666;
  --button-shadow: none;
  --button-shadow-hover: none;
  --button-shadow-active: none;
  --button-bg-image: none;
  --button-scale-hover: 1;
  --button-scale-active: 1;
  --button-scale-focus: 1;
  --button-focus-decoration: none;
}

.place-order-btn .button-text {
  font-size: 0.95rem;
}

.close-checkout {
  --button-border-color: rgba(192, 57, 43, 0.25);
  --button-border-color-hover: rgba(192, 57, 43, 0.4);
  --button-border-color-active: rgba(192, 57, 43, 0.5);
  --button-bg-color: #ffffff;
  --button-bg-hover: #ffe8e4;
  --button-bg-active: #ffd4cc;
  --button-text-color: #c0392b;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.85), transparent);
  --button-shadow: 0 1px 4px rgba(192, 57, 43, 0.2);
  --button-shadow-hover: 0 2px 6px rgba(192, 57, 43, 0.24);
  --button-shadow-active: 0 1px 3px rgba(192, 57, 43, 0.18);
  --button-focus-decoration: none;
  --button-radius: 999px;
  --button-scale-hover: 1.02;
  --button-scale-active: 0.98;
  padding: 0.35rem 0.75rem;
  font-size: 1.2rem;
  line-height: 1;
}

.checkout-panel {
  border-radius: 0.75rem;
  border: 1px solid #f0f0f0;
  padding: 1.5rem;
  background-color: #fafafa;
  box-shadow: inset 0 0 0 1px #fff;
}

.checkout-panel.hidden {
  display: none;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fulfilment-options {
  border: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fulfilment-options legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.delivery-fields {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.fulfilment-time-wrapper {
  margin-bottom: 1.5rem;
}

.fulfilment-time-wrapper.hidden {
  display: none;
}

.delivery-fields .field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.delivery-fields .field label {
  font-weight: 600;
}

.delivery-fields .field input {
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

.delivery-fields .field.half {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.delivery-map-container {
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(192, 57, 43, 0.08);
  display: flex;
  flex-direction: column;
}

.delivery-map {
  width: 100%;
  height: 220px;
}

@media (max-width: 600px) {
  .delivery-map {
    height: 180px;
  }
}

.delivery-distance-summary {
  margin: 0;
  padding: 0.6rem 0.85rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #5a4636;
}

.delivery-distance-summary.is-success {
  color: #1a7f4d;
}

.delivery-distance-summary.is-warning {
  color: #b57f1d;
}

.delivery-distance-summary.is-error {
  color: #b2371a;
}

.delivery-map__store-pin,
.delivery-map__user-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.delivery-map__store-pin-inner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 6px rgba(192, 57, 43, 0.25);
}

.delivery-map__user-pin-inner {
  width: 24px;
  height: 24px;
  background: #f39c12;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.25);
  position: relative;
}

.delivery-map__user-pin-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.dropoff-options,
.delivery-time-options,
.pickup-time-options {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.dropoff-options legend,
.delivery-time-options legend,
.pickup-time-options legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dropoff-options label,
.delivery-time-options label,
.pickup-time-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.dropoff-instructions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1.6rem;
}

.dropoff-instructions textarea {
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  resize: vertical;
  font-size: 0.95rem;
}

.schedule-container {
  margin-top: 0.75rem;
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 239, 213, 0.7), rgba(255, 228, 196, 0.4));
}

.schedule-helper {
  margin-top: 0;
  font-size: 0.9rem;
  color: #8a4d0f;
}

.schedule-controls {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.schedule-controls label {
  font-weight: 600;
}

.schedule-controls input[type="time"] {
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.95rem;
}

.schedule-save {
  --button-border-color: #c0392b;
  --button-border-color-hover: #d54335;
  --button-border-color-active: #922b21;
  --button-bg-color: #c0392b;
  --button-bg-hover: #d54335;
  --button-bg-active: #a93226;
  --button-text-color: #fff;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.2), transparent);
  --button-shadow: 0 1px 6px rgba(192, 57, 43, 0.26);
  --button-shadow-hover: 0 2px 8px rgba(192, 57, 43, 0.32);
  --button-shadow-active: 0 1px 5px rgba(146, 43, 33, 0.22);
  --button-radius: 999px;
  padding: 0.5rem 1rem;
}

.schedule-summary {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #8a4d0f;
}

.schedule-summary.is-confirmed {
  color: #27ae60;
  font-weight: 600;
}

.schedule-summary.is-warning {
  color: #c0392b;
  font-weight: 600;
}

.checkout-items {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: #fff;
  border: 1px solid #f0f0f0;
}

.checkout-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.checkout-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-item-details h4 {
  font-size: 1rem;
  color: #333;
}

.checkout-item-details span {
  font-size: 0.9rem;
  color: #777;
}

.checkout-quantity {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.quantity-controls button {
  width: 28px;
  height: 28px;
  --button-border-color: #c0392b;
  --button-border-color-hover: #d54335;
  --button-border-color-active: #922b21;
  --button-bg-color: #ffffff;
  --button-bg-hover: #ffe8e4;
  --button-bg-active: #ffd2c5;
  --button-text-color: #c0392b;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.75), transparent);
  --button-shadow: 0 1px 3px rgba(192, 57, 43, 0.2);
  --button-shadow-hover: 0 2px 5px rgba(192, 57, 43, 0.26);
  --button-shadow-active: 0 1px 3px rgba(192, 57, 43, 0.18);
  --button-scale-hover: 1.05;
  --button-scale-active: 0.95;
  --button-focus-decoration: none;
  --button-radius: 999px;
  font-weight: bold;
}

.quantity-controls input {
  width: 48px;
  text-align: center;
  padding: 0.25rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
}

.checkout-item-total {
  font-weight: 600;
  color: #333;
}

.instructions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.instructions-label {
  font-weight: 600;
  color: #2c3e50;
}

.instructions-note {
  font-size: 0.8rem;
  color: #7f8c8d;
  line-height: 1.4;
  margin: 0;
}

.instructions-textarea {
  width: 100%;
  min-height: 80px;
  padding: 0.6rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  resize: vertical;
}

.instructions-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.instructions-save {
  padding: 0.4rem 0.9rem;
  background-color: #c0392b;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.instructions-save:hover:not(:disabled) {
  background-color: #a93226;
  transform: translateY(-1px);
}

.instructions-save:disabled {
  background-color: #e5e5e5;
  color: #888;
  cursor: not-allowed;
  transform: none;
}

.instructions-status {
  font-size: 0.85rem;
  color: #7f8c8d;
}

.instructions-status.is-pending {
  color: #c0392b;
}

.instructions-status.is-saved {
  color: #27ae60;
}

.tip-section {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 248, 232, 0.9), rgba(255, 241, 214, 0.7));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-section h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #b03a2e;
}

.tip-note {
  margin: 0;
  font-size: 0.9rem;
  color: #8a4d0f;
}

.tip-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tip-button {
  flex: 1 1 90px;
  --button-border-color: #c0392b;
  --button-border-color-hover: #d54335;
  --button-border-color-active: #922b21;
  --button-bg-color: #ffffff;
  --button-bg-hover: #ffe8e4;
  --button-bg-active: #ffd2c5;
  --button-text-color: #c0392b;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.75), transparent);
  --button-shadow: 0 1px 4px rgba(192, 57, 43, 0.18);
  --button-shadow-hover: 0 2px 6px rgba(192, 57, 43, 0.24);
  --button-shadow-active: 0 1px 4px rgba(192, 57, 43, 0.18);
  --button-radius: 999px;
  --button-scale-hover: 1.05;
  --button-scale-active: 0.96;
  --button-focus-decoration: none;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
}

.tip-button.is-active {
  --button-border-color: #c0392b;
  --button-border-color-hover: #c0392b;
  --button-border-color-active: #922b21;
  --button-bg-color: #c0392b;
  --button-bg-hover: #d54335;
  --button-bg-active: #a93226;
  --button-bg-image: radial-gradient(75% 25% at 50% 95%, rgba(255, 255, 255, 0.18), transparent);
  --button-text-color: #ffffff;
  --button-shadow: 0 1px 6px rgba(192, 57, 43, 0.3);
  --button-shadow-hover: 0 2px 8px rgba(192, 57, 43, 0.36);
  --button-shadow-active: 0 1px 5px rgba(146, 43, 33, 0.24);
}

.custom-tip-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.custom-tip-container.hidden {
  display: none;
}

.custom-tip-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #8a4d0f;
}

.custom-tip-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background-color: #fffaf0;
  max-width: 220px;
}

.currency-symbol {
  font-weight: 600;
  color: #c0392b;
}

#custom-tip-input {
  border: none;
  flex: 1 1 auto;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  padding: 0;
}

#custom-tip-input::-webkit-outer-spin-button,
#custom-tip-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#custom-tip-input[type='number'] {
  -moz-appearance: textfield;
}

.custom-tip-help {
  margin: 0;
  font-size: 0.85rem;
  color: #a9711b;
}

.tip-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #8a4d0f;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.checkout-total-row.grand-total {
  border-top: 1px dashed rgba(192, 57, 43, 0.3);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.checkout-total-row span {
  font-weight: 500;
}

.checkout-total-row strong {
  font-weight: 700;
}

.place-order-btn {
  width: 100%;
  font-size: 1rem;
}

.place-order-btn:disabled {
  background-color: #ccc;
  background-image: none;
  cursor: not-allowed;
  color: #666;
}

.flying-cart-image {
  position: fixed;
  z-index: 1200;
  border-radius: 18px;
  pointer-events: none;
  object-fit: cover;
  will-change: transform, opacity;
  transform-origin: center;
}

#calendar {
  position: relative;
}

#calendar .calendar {
  font-family: 'Roboto', sans-serif;
  background-color: #fff8ec;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(192, 57, 43, 0.18);
  overflow: hidden;
}

#calendar .calendar--nav {
  background: linear-gradient(120deg, #b03a2e, #d35400);
  color: #fff3cd;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#calendar .calendar--nav a {
  position: absolute;
  top: 16px;
  font-size: 32px;
  color: rgba(255, 243, 205, 0.7);
  cursor: pointer;
  user-select: none;
}

#calendar .calendar--nav a:hover {
  color: #fff;
}

#calendar .calendar--nav a:first-child {
  left: 10px;
}

#calendar .calendar--nav a:last-child {
  right: 10px;
}

#calendar .calendar--nav h1 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}

#calendar .calendar--nav small {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
}

#calendar .calendar--days {
  padding: 0.75rem 1rem 1rem;
}

#calendar .calendar--days span {
  width: 14.2857%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 6px 0;
  line-height: 34px;
  font-size: 0.95rem;
  position: relative;
  cursor: pointer;
  user-select: none;
}

#calendar .calendar--days span.label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.35);
  cursor: default;
}

#calendar .calendar--days span.muted {
  color: rgba(0, 0, 0, 0.3);
}

#calendar .calendar--days span.today {
  font-weight: 700;
  color: #b03a2e;
}

#calendar .calendar--days span.selected {
  color: #fff;
  font-weight: 700;
}

#calendar .calendar--days span.selected::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  background-image: url('images/chinese-food-boxes2.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

#calendar .calendar--days span:hover:not(.label) {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .checkout-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .checkout-item img {
    width: 100%;
    height: 160px;
  }

  .checkout-quantity {
    align-items: flex-start;
  }

  .tip-buttons {
    flex-direction: column;
  }

  .schedule-controls {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .hero .hero-text {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .single_menu {
    padding-left: 0;
    padding-top: 160px;
  }

  .single_menu img {
    width: 100%;
  }

  .menu_content {
    padding-left: 0;
  }
}

/* --------------------------------------------------------------
 * Landing page styles
 * -------------------------------------------------------------- */
body.landing-page {
  background: linear-gradient(135deg, rgba(255, 246, 230, 0.96) 0%, rgba(255, 226, 188, 0.92) 54%, rgba(255, 255, 255, 0.96) 100%);
  color: var(--dw-text-dark);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 0;
}

.landing-main {
  flex: 1;
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.store-selector__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.store-selector__intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--dw-primary);
}

.store-selector__intro p {
  margin: 0;
  opacity: 0.9;
  color: var(--dw-text-muted);
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.store-list {
  display: grid;
  gap: 1rem;
}

.store-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--dw-border-soft);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  color: var(--dw-text-dark);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(192, 57, 43, 0.12);
}

.store-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.16), rgba(243, 156, 18, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.store-card:hover,
.store-card:focus-visible {
  border-color: rgba(231, 76, 60, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(231, 76, 60, 0.22);
}

.store-card:hover::after,
.store-card:focus-visible::after {
  opacity: 1;
}

.store-card.is-selected {
  border-color: var(--dw-primary);
  box-shadow: 0 20px 38px rgba(192, 57, 43, 0.28), 0 6px 22px rgba(0, 0, 0, 0.18);
}

.store-card h2 {
  font-size: 1.1rem;
  line-height: 1.45;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.store-card__tag {
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem;
  color: var(--dw-primary);
}

.store-card__phone {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--dw-text-muted);
}

.store-card__phone span {
  font-weight: 600;
  color: var(--dw-primary-dark);
}

.store-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dw-primary-strong);
}

.store-card__cta::after {
  content: '';
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.store-map-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(192, 57, 43, 0.18), 0 18px 36px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, rgba(255, 246, 230, 0.92), rgba(255, 226, 188, 0.85));
  border: 1px solid rgba(192, 57, 43, 0.15);
}

.store-map {
  width: 100%;
  min-height: clamp(360px, 50vw, 520px);
}

.store-photo-card-wrapper {
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-photo-card {
  --photo-card-size: clamp(88px, 13vw, 116px);
  appearance: none;
  border: none;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
  border-radius: 999px;
  width: var(--photo-card-size);
  height: var(--photo-card-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.store-photo-card::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(231, 76, 60, 0.38), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.store-photo-card__preview {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.55);
}

.store-photo-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-photo-card__hint {
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(44, 26, 10, 0.82);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.store-photo-card__status {
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fefefe;
  pointer-events: none;
  white-space: normal;
  line-height: 1.2;
  max-width: 10rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.store-photo-card__status--open {
  color: #3dff9f;
  text-shadow: 0 0 6px rgba(61, 255, 159, 0.85), 0 0 14px rgba(61, 255, 159, 0.65);
}

.store-photo-card__status--closed {
  color: #ffd27f;
  text-shadow: 0 0 6px rgba(255, 133, 27, 0.7), 0 0 14px rgba(255, 133, 27, 0.5);
}

.store-photo-card:hover,
.store-photo-card:focus-visible {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  filter: brightness(1.05);
}

.store-photo-card:hover::after,
.store-photo-card:focus-visible::after {
  opacity: 1;
}

.store-photo-card:focus-visible {
  outline: none;
}

.store-photo-card:active {
  transform: translateY(0) scale(0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  filter: brightness(1.02);
}

.store-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
  background: rgba(18, 9, 5, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1200;
}

.store-photo-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.store-photo-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(231, 76, 60, 0.35), transparent 65%),
    linear-gradient(135deg, rgba(18, 9, 5, 0.9), rgba(18, 9, 5, 0.6));
}

.store-photo-overlay__content {
  position: relative;
  width: min(94vw, 720px);
  max-height: min(86vh, 720px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.55), 0 0 0 12px rgba(231, 76, 60, 0.18);
  isolation: isolate;
  z-index: 1;
}

.store-photo-overlay__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: min(86vh, 720px);
}

.store-photo-overlay__controls {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  pointer-events: none;
  z-index: 2;
}

.store-photo-overlay__close {
  pointer-events: auto;
  width: clamp(2.75rem, 6vw, 3.25rem);
  height: clamp(2.75rem, 6vw, 3.25rem);
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.store-photo-overlay__close:hover,
.store-photo-overlay__close:focus-visible {
  outline: none;
  transform: scale(1.08);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
}

.store-photo-overlay__cta {
  pointer-events: auto;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: clamp(0.65rem, 2.4vw, 0.9rem) clamp(1.4rem, 5vw, 2.25rem);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dw-surface-contrast);
  background: linear-gradient(135deg, var(--dw-accent), var(--dw-primary-strong));
  box-shadow: 0 22px 44px rgba(231, 76, 60, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.store-photo-overlay__cta:hover,
.store-photo-overlay__cta:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 28px 56px rgba(231, 76, 60, 0.55);
  filter: brightness(1.05);
}

.store-photo-overlay__cta:active {
  transform: scale(0.97);
  box-shadow: 0 16px 36px rgba(231, 76, 60, 0.4);
}

@media (max-width: 640px) {
  .store-photo-overlay__content {
    width: min(96vw, 540px);
    border-radius: 22px;
  }

  .store-photo-overlay__controls {
    left: clamp(0.6rem, 5vw, 1.25rem);
    bottom: auto;
    flex-direction: row;
    align-items: center;
  }

  .store-photo-overlay__cta {
    margin-top: 0;
  }
}

body.landing-page .leaflet-control-container {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.landing-page.is-map-ready .leaflet-control-container {
  opacity: 1;
  pointer-events: auto;
}

.store-map .leaflet-control-attribution,
.store-map .leaflet-control-attribution a {
  display: none !important;
}

.enter-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0;
  padding: 0.85rem 2.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dw-text-dark);
  background: linear-gradient(135deg, var(--dw-accent), var(--dw-primary-strong));
  box-shadow: 0 18px 32px rgba(231, 76, 60, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.enter-menu-link:hover,
.enter-menu-link:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 44px rgba(231, 76, 60, 0.4);
  filter: brightness(1.05);
}

.enter-menu-link.is-disabled {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(0.35);
  box-shadow: none;
}

.menu-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--dw-surface);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-loading-screen--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-loading-screen__logo {
  width: clamp(180px, 36vw, 260px);
  height: auto;
}

.noodle-loader {
  position: relative;
  width: 150px;
  height: 170px;
  margin: 0 auto;
}

.noodle-loader .steam {
  --steam-height: -160px;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.1em;
  height: 1.1em;
  border-radius: 45%;
  background-color: hsla(0, 0%, 100%, 0.85);
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
}

.noodle-loader #cloudOne {
  animation: steamUp 6s ease-out infinite;
}

.noodle-loader #cloudTwo {
  animation: steamLeft 6s ease-out 0.5s infinite;
}

.noodle-loader #cloudThree {
  animation: steamRight 6s ease-out 1s infinite;
}

.noodle-loader #cloudFour {
  animation: steamLeft 6s ease-out 1.5s infinite;
}

.noodle-loader #noodleBallOne,
.noodle-loader #noodleBallTwo {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border: 2px solid rgb(82, 46, 6);
  background-color: rgb(248, 211, 48);
  transform: translateX(-50%);
  animation: noodleDropIn 1.9s ease-out 1;
  z-index: 3;
  animation-fill-mode: forwards;
}

.noodle-loader #noodleBallOne {
  left: 47%;
}

.noodle-loader #noodleBallOne::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 1px;
  width: 3.7em;
  height: 4em;
  border-radius: 50%;
  border: 2px solid rgb(82, 46, 6);
  z-index: 3;
}

.noodle-loader #noodleBallOne::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 6px;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: 2px solid rgb(82, 46, 6);
  z-index: 3;
}

.noodle-loader #noodleBallTwo::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 15px;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 2px solid rgb(82, 46, 6);
  z-index: 3;
}

.noodle-loader #noodleBallTwo::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 7px;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: 2px solid rgb(82, 46, 6);
  z-index: 3;
}

.noodle-loader #chopstickOne,
.noodle-loader #chopstickTwo {
  position: absolute;
  top: -64px;
  left: 50%;
  width: 6px;
  height: 100px;
  border: 2px solid rgb(27, 26, 97);
  border-radius: 10px 10px 80px 80px;
  background-color: rgb(247, 223, 196);
  transform: rotate(335deg);
  transform-origin: top center;
  z-index: 2;
  animation: chopstickDropIn 0.9s linear 1;
  animation-fill-mode: forwards;
}

.noodle-loader #chopstickOne .insideStick,
.noodle-loader #chopstickTwo .insideStick {
  width: 6px;
  height: 16px;
  border-bottom: 2px solid black;
  border-radius: 10px 10px 0 0;
  background-color: rgb(243, 233, 239);
}

.noodle-loader #chopstickTwo {
  left: 40%;
  animation-duration: 1s;
}

.noodle-loader .bowl {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6.7rem;
  height: 3rem;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 5px 5px 50px 50px;
  background: linear-gradient(0deg, #b93021, #c0392b 45%, #e45a49 100%);
  transform: translateX(-50%);
  z-index: 3;
}

@keyframes chopstickDropIn {
  0% {
    transform: translateY(-360px) rotate(330deg);
  }
  70% {
    transform: translate(-6px, -360px) rotate(330deg);
  }
  90% {
    transform: translate(-22px, 84px) rotate(333deg);
  }
  100% {
    transform: translate(-32px, 104px) rotate(333deg);
  }
}

@keyframes noodleDropIn {
  0% {
    transform: translate(-50%, -300px) scale(0.5, 2);
  }
  10% {
    transform: translate(-50%, 104px) scale(0.5, 1);
  }
  20% {
    transform: translate(-50%, 104px) scale(1.1, 0.3);
  }
  25% {
    transform: translate(-50%, 104px) scale(1.1, 0.7);
  }
  30% {
    transform: translate(-50%, 100px) scale(0.8, 1.1);
  }
  50% {
    transform: translate(-50%, 106px) scale(1.1, 0.9);
  }
  75% {
    transform: translate(-50%, 102px) scale(0.95, 1.05);
  }
  100% {
    transform: translate(-50%, 104px) scale(1, 1);
  }
}

@keyframes steamUp {
  0% {
    transform: translate(-50%, 5px) scale(0.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, var(--steam-height)) scale(3);
    opacity: 0;
  }
}

@keyframes steamLeft {
  0% {
    transform: translate(calc(-50% + 10px), 5px) scale(0.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(calc(-50% - 10px), var(--steam-height)) scale(3);
    opacity: 0;
  }
}

@keyframes steamRight {
  0% {
    transform: translate(calc(-50% + 10px), 5px) scale(0.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(calc(-50% + 10px), var(--steam-height)) scale(3);
    opacity: 0;
  }
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: clamp(140px, 30vw, 220px);
  animation: loadingPulse 1.8s ease-in-out infinite;
}

@keyframes loadingPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

.store-marker-wrapper {
  pointer-events: auto !important;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s ease;
}

.store-marker-wrapper.is-active {
  transform: translateY(-4px) scale(1.03);
}

.store-marker-wrapper.is-active.is-repositioned {
  transform: translate3d(-88px, -8px, 0) scale(1.03);
}

@media (max-width: 720px) {
  .store-marker-wrapper.is-active.is-repositioned {
    transform: translate3d(-8px, -108px, 0) scale(1.03);
  }
}

.store-marker-wrapper:focus-visible {
  box-shadow: none;
}

.store-marker {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-12px);
  pointer-events: none;
}

.store-marker__badge {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.6), 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-marker__badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.store-marker-wrapper.is-active .store-marker__badge {
  box-shadow: 0 0 0 4px rgba(255, 211, 78, 0.85), 0 16px 32px rgba(0, 0, 0, 0.45);
  transform: scale(1.05);
}

.store-marker-wrapper:focus-visible .store-marker__badge {
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.8), 0 0 0 8px rgba(255, 255, 255, 0.9),
    0 18px 36px rgba(0, 0, 0, 0.45);
}

.store-marker__pulse {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid rgba(231, 76, 60, 0.55);
  animation: storePing 2.2s ease-out infinite;
  pointer-events: none;
}

.store-marker__pulse--delay {
  animation-delay: 1.1s;
}

@keyframes storePing {
  0% {
    transform: scale(0.45);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .store-layout {
    grid-template-columns: 1fr;
  }

  .store-map-wrapper {
    order: -1;
  }

.store-selector__intro {
  margin-bottom: 2rem;
}
}

@media (max-width: 600px) {
  .landing-main {
    width: min(100%, 100% - 1.5rem);
    padding: 1.5rem 0 3rem;
  }

  .store-card {
    padding: 1.25rem;
  }

  .enter-menu-link {
    width: 100%;
  }
}

body.modal-open {
  overflow: hidden;
}

.payment-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  z-index: 1000;
  padding: 24px;
}

.payment-modal.hidden {
  display: none;
}

.payment-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.payment-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #555;
}

.payment-modal__close:hover,
.payment-modal__close:focus {
  color: #000;
}

.payment-modal__amount {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #444;
}

.payment-order-summary {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  background: #fafafa;
}

.payment-order-summary__title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
}

.payment-order-summary__items {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.payment-order-summary__items li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.payment-order-summary__items li:last-child {
  margin-bottom: 0;
}

.payment-order-summary__totals {
  margin: 0;
}

.payment-order-summary__totals div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.payment-order-summary__grand {
  font-weight: 700;
  font-size: 1.05rem;
}

.payment-order-summary__fulfilment {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: #666;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-form__field input {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
}

.payment-form__field input:focus {
  outline: none;
  border-color: #ff4f4f;
  box-shadow: 0 0 0 2px rgba(255, 79, 79, 0.15);
}

.payment-request-button-wrapper {
  margin-top: 4px;
}

.payment-request-button-wrapper.hidden {
  display: none;
}

.apple-pay-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.apple-pay-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.apple-pay-checkout-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.35);
}

.apple-pay-checkout-btn:disabled,
.apple-pay-checkout-btn.is-loading {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.apple-pay-checkout-btn__logo {
  font-size: 1.4rem;
  line-height: 1;
  font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.apple-pay-checkout-btn__text {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.wallet-hint {
  margin: 0;
  font-size: 0.85rem;
  color: #5b5b5b;
}

.wallet-hint.hidden {
  display: none;
}

.stripe-card-element {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.confirm-payment-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #ff2e63);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.confirm-payment-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 79, 79, 0.3);
}

.confirm-payment-btn:disabled,
.confirm-payment-btn.is-loading {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.payment-status {
  min-height: 1.25rem;
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.payment-status--error {
  color: #d62828;
}

.payment-status--success {
  color: #2a9d8f;
}
