* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.kiosk {
  height: 100vh;
  overflow: hidden;
  background: var(--kiosk-bg);
  font-family: var(--font-family);
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.kiosk.theme-modern {
  --kiosk-bg: #f5f5f5;
  --sidebar-bg: #ffffff;
  --sidebar-border: rgba(37, 99, 235, 0.3);
  --sidebar-text: #334155;
  --cat-bg: #f1f5f9;
  --cat-active-bg: #2563eb;
  --cat-active-text: #fff;
  --cat-hover: #dbeafe;
  --header-color: #2563eb;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --price-color: #dc2626;
  --card-bg: #fff;
  --card-radius: 0.75vw;
  --order-bg: #f8fafc;
  --btn-primary-bg: #2563eb;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #60a5fa;
  --btn-secondary-text: #fff;
  --btn-tertiary-bg: #e2e8f0;
  --btn-tertiary-text: #334155;
  --border-color: #e2e8f0;
  --badge-bg: rgba(0, 0, 0, 0.75);
  --total-border: #cbd5e1;
  --action-btn-bg: #2563eb;
  --font-family: 'Inter', 'Segoe UI', sans-serif;
}
.kiosk.theme-classic {
  --kiosk-bg: #f5f0ea;
  --sidebar-bg: #2c1810;
  --sidebar-border: rgba(139, 105, 20, 0.5);
  --sidebar-text: #d4c5a9;
  --cat-bg: rgba(255, 255, 255, 0.08);
  --cat-active-bg: #8b6914;
  --cat-active-text: #fff;
  --cat-hover: rgba(212, 168, 83, 0.2);
  --header-color: #8b6914;
  --text-primary: #2c1810;
  --text-secondary: #6b5b4e;
  --price-color: #8b0000;
  --card-bg: #fff8f0;
  --card-radius: 0.5vw;
  --order-bg: #ede5d8;
  --btn-primary-bg: #8b6914;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #d4a853;
  --btn-secondary-text: #2c1810;
  --btn-tertiary-bg: #c9bda8;
  --btn-tertiary-text: #3e2723;
  --border-color: #d4c5a9;
  --badge-bg: rgba(44, 24, 16, 0.85);
  --total-border: #c9bda8;
  --action-btn-bg: #8b6914;
  --font-family: Georgia, 'Noto Serif KR', serif;
}
.kiosk.theme-cozy {
  --kiosk-bg: #f5ebe0;
  --sidebar-bg: #5c3d2e;
  --sidebar-border: rgba(160, 82, 45, 0.4);
  --sidebar-text: #e8d5c4;
  --cat-bg: rgba(255, 255, 255, 0.1);
  --cat-active-bg: #a0522d;
  --cat-active-text: #fff;
  --cat-hover: rgba(222, 184, 135, 0.3);
  --header-color: #8b4513;
  --text-primary: #3e2723;
  --text-secondary: #795548;
  --price-color: #d2691e;
  --card-bg: #fff8f0;
  --card-radius: 1.2vw;
  --order-bg: #efe0d0;
  --btn-primary-bg: #a0522d;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #deb887;
  --btn-secondary-text: #3e2723;
  --btn-tertiary-bg: #d7c4a8;
  --btn-tertiary-text: #4e342e;
  --border-color: #deb887;
  --badge-bg: rgba(92, 61, 46, 0.85);
  --total-border: #c9b18c;
  --action-btn-bg: #a0522d;
  --font-family: 'Nunito', 'Segoe UI', sans-serif;
}
.kiosk.theme-vivid {
  --kiosk-bg: #fff8e1;
  --sidebar-bg: #ff5722;
  --sidebar-border: transparent;
  --sidebar-text: #fff;
  --cat-bg: rgba(255, 255, 255, 0.15);
  --cat-active-bg: #ffc107;
  --cat-active-text: #212121;
  --cat-hover: rgba(255, 255, 255, 0.25);
  --header-color: #ff5722;
  --text-primary: #212121;
  --text-secondary: #616161;
  --price-color: #e91e63;
  --card-bg: #fff;
  --card-radius: 1vw;
  --order-bg: #fff3e0;
  --btn-primary-bg: #ff5722;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #ffc107;
  --btn-secondary-text: #212121;
  --btn-tertiary-bg: #e0e0e0;
  --btn-tertiary-text: #424242;
  --border-color: #ffcc80;
  --badge-bg: rgba(255, 87, 34, 0.85);
  --total-border: #ffab91;
  --action-btn-bg: #ff5722;
  --font-family: 'Poppins', 'Segoe UI', sans-serif;
}
.kiosk.theme-dark {
  --kiosk-bg: #1a1a2e;
  --sidebar-bg: #16213e;
  --sidebar-border: rgba(233, 69, 96, 0.4);
  --sidebar-text: #c5c5dc;
  --cat-bg: rgba(255, 255, 255, 0.05);
  --cat-active-bg: #e94560;
  --cat-active-text: #fff;
  --cat-hover: rgba(233, 69, 96, 0.2);
  --header-color: #e94560;
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0b8;
  --price-color: #e94560;
  --card-bg: #0f3460;
  --card-radius: 1vw;
  --order-bg: #16213e;
  --btn-primary-bg: #e94560;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #533483;
  --btn-secondary-text: #e0d0ff;
  --btn-tertiary-bg: #2a2a4a;
  --btn-tertiary-text: #c5c5dc;
  --border-color: rgba(255, 255, 255, 0.1);
  --badge-bg: rgba(233, 69, 96, 0.85);
  --total-border: rgba(255, 255, 255, 0.15);
  --action-btn-bg: #e94560;
  --font-family: 'Inter', 'Segoe UI', sans-serif;
}
.kiosk.theme-fresh {
  --kiosk-bg: #f0fdf4;
  --sidebar-bg: #ffffff;
  --sidebar-border: rgba(22, 163, 74, 0.3);
  --sidebar-text: #166534;
  --cat-bg: #f0fdf4;
  --cat-active-bg: #16a34a;
  --cat-active-text: #fff;
  --cat-hover: #dcfce7;
  --header-color: #16a34a;
  --text-primary: #14532d;
  --text-secondary: #166534;
  --price-color: #059669;
  --card-bg: #fff;
  --card-radius: 1vw;
  --order-bg: #ecfdf5;
  --btn-primary-bg: #16a34a;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #86efac;
  --btn-secondary-text: #14532d;
  --btn-tertiary-bg: #d1fae5;
  --btn-tertiary-text: #065f46;
  --border-color: #bbf7d0;
  --badge-bg: rgba(22, 163, 74, 0.85);
  --total-border: #a7f3d0;
  --action-btn-bg: #16a34a;
  --font-family: 'Nunito Sans', 'Segoe UI', sans-serif;
}
.kiosk.theme-oriental {
  --kiosk-bg: #f5f1eb;
  --sidebar-bg: #2d2622;
  --sidebar-border: rgba(139, 69, 19, 0.4);
  --sidebar-text: #c4a882;
  --cat-bg: rgba(255, 255, 255, 0.06);
  --cat-active-bg: #8b4513;
  --cat-active-text: #f5f1eb;
  --cat-hover: rgba(196, 163, 90, 0.2);
  --header-color: #8b4513;
  --text-primary: #2d2622;
  --text-secondary: #6b5b50;
  --price-color: #b22222;
  --card-bg: #faf6f0;
  --card-radius: 0.3vw;
  --order-bg: #ede7dc;
  --btn-primary-bg: #8b4513;
  --btn-primary-text: #f5f1eb;
  --btn-secondary-bg: #c4a35a;
  --btn-secondary-text: #2d2622;
  --btn-tertiary-bg: #d5c8b5;
  --btn-tertiary-text: #3d3530;
  --border-color: #d5c8b5;
  --badge-bg: rgba(45, 38, 34, 0.85);
  --total-border: #c4b69a;
  --action-btn-bg: #8b4513;
  --font-family: Georgia, 'Noto Serif KR', serif;
}
.kiosk.theme-pastel {
  --kiosk-bg: #fef6ff;
  --sidebar-bg: #fff0f5;
  --sidebar-border: rgba(244, 114, 182, 0.3);
  --sidebar-text: #9d4b8c;
  --cat-bg: #fdf2f8;
  --cat-active-bg: #f472b6;
  --cat-active-text: #fff;
  --cat-hover: #fce7f3;
  --header-color: #be185d;
  --text-primary: #4a1942;
  --text-secondary: #9d4b8c;
  --price-color: #ec4899;
  --card-bg: #fff;
  --card-radius: 1.2vw;
  --order-bg: #fdf2f8;
  --btn-primary-bg: #f472b6;
  --btn-primary-text: #fff;
  --btn-secondary-bg: #c084fc;
  --btn-secondary-text: #fff;
  --btn-tertiary-bg: #e9d5ff;
  --btn-tertiary-text: #6b21a8;
  --border-color: #f5d0fe;
  --badge-bg: rgba(244, 114, 182, 0.85);
  --total-border: #e9d5ff;
  --action-btn-bg: #f472b6;
  --font-family: 'Quicksand', 'Segoe UI', sans-serif;
}

.kiosk-layout {
  display: grid;
  grid-template-columns: 18% 1fr 26%;
  height: 100%;
}

.sidebar {
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  border-right: 0.3vw solid var(--sidebar-border);
  color: var(--sidebar-text);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sidebar__logo {
  padding: 3vh 1.5vw;
  text-align: center;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-color);
}
.sidebar__logo img {
  max-width: 80%;
  max-height: 6vh;
  object-fit: contain;
}

.category-list {
  list-style: none;
  padding: 1.5vw;
  overflow-y: auto;
  flex: 1;
}
.category-list .category-item {
  width: 100%;
  padding: 1vh 1.5vw;
  margin-bottom: 0.5vh;
  background: var(--cat-bg);
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.3vw;
  color: inherit;
  font-family: inherit;
  transition: all 0.2s ease;
  border-radius: calc(var(--card-radius) * 0.5);
  text-align: left;
}
.category-list .category-item.active, .category-list .category-item:hover {
  background: var(--cat-active-bg);
  color: var(--cat-active-text);
}

.menu-panel {
  padding: 3vh 3vw;
  overflow-y: auto;
}

.menu-header {
  margin-bottom: 2vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-header__title {
  font-size: 3.3vw;
  color: var(--header-color);
  letter-spacing: -0.02em;
  margin-bottom: 0.5vh;
}

.menu-header__subtitle {
  color: var(--text-secondary);
  font-size: 1.5vw;
}

.menu-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 0.1vw 0.3vw rgba(0, 0, 0, 0.04);
}
.menu-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 0.8vw 2.5vw rgba(0, 0, 0, 0.1);
}

.menu-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.menu-card__image:hover img {
  transform: scale(1.05);
}

.menu-card .badge-option {
  position: absolute;
  top: 1vw;
  left: 1vw;
  background: var(--badge-bg);
  color: #fff;
  padding: 0.4vw 1vw;
  border-radius: 0.5vw;
  font-size: 1.1vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.menu-card__info {
  padding: 1.5vw 1.8vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.menu-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1vw;
}
.menu-card__top h3 {
  cursor: pointer;
  font-size: 1.6vw;
  line-height: 1.3;
  flex: 1;
}

.menu-card .price {
  color: var(--price-color);
  font-weight: 800;
  font-size: 1.7vw;
  white-space: nowrap;
}

.menu-list.narrow-cards .menu-card__top {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3vw;
}

.menu-list.narrow-cards .menu-card__top h3 {
  font-size: 1.4vw;
}

.menu-list.narrow-cards .menu-card .price {
  font-size: 1.4vw;
}

.menu-card__desc {
  color: var(--text-secondary);
  font-size: 1.3vw;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-panel {
  background: var(--order-bg);
  display: flex;
  flex-direction: column;
  padding: 1.5vw;
  border-left: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5vh;
  padding-bottom: 1vh;
  border-bottom: 0.2vw solid var(--border-color);
  font-weight: 700;
  font-size: 1.5vw;
}

.cart-list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  padding: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.2vw;
  font-size: 1.3vw;
}
.cart-item__info span {
  font-weight: 500;
}
.cart-item__info small {
  color: var(--text-secondary);
  font-size: 1.2vw;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 0.3vw;
}
.cart-item__actions button {
  background: var(--action-btn-bg);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.4vw;
  height: 2.4vw;
  cursor: pointer;
  font-size: 1.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cart-item__actions button:hover {
  opacity: 0.75;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.7vw;
  font-weight: 700;
  border-top: 0.2vw solid var(--total-border);
  padding: 1.5vh 0;
  margin-top: 0.5vh;
}
.order-total strong {
  color: var(--price-color);
  font-size: 2.1vw;
}

.order-actions {
  margin-top: 0.5vh;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.order-actions .btn {
  width: 100%;
  padding: 1.2vh 0;
  border-radius: 0.8vw;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.3vw;
  transition: all 0.2s;
  text-align: center;
}
.order-actions .btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.order-actions .btn:active {
  transform: translateY(0);
}
.order-actions .btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: 1.5vw;
  padding: 1.5vh 0;
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.15);
}
.order-actions .btn-theme {
  background: var(--btn-tertiary-bg);
  color: var(--btn-tertiary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.order-actions .btn-theme i {
  font-size: 1.5vw;
}

.theme-dots {
  display: flex;
  gap: 0.8vw;
  align-items: center;
  justify-content: center;
  padding: 1vh 0;
}

.theme-dot {
  width: 2.2vw;
  height: 2.2vw;
  border-radius: 50%;
  cursor: pointer;
  border: 0.3vw solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.theme-dot.active {
  border-color: var(--text-primary);
  transform: scale(1.2);
}
.theme-dot:hover {
  transform: scale(1.25);
  opacity: 0.9;
}

.col-switcher-wrap {
  position: relative;
  flex-shrink: 0;
}

.col-switcher {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 0.3vw;
  background: var(--card-bg);
  padding: 0.3vw;
  border-radius: 0.5vw;
  box-shadow: 0 0.1vw 0.4vw rgba(0, 0, 0, 0.08);
}

.col-btn {
  display: flex;
  gap: 0.2vw;
  align-items: center;
  justify-content: center;
  padding: 0.5vw 0.6vw;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.3vw;
  transition: all 0.2s;
}
.col-btn.active {
  background: var(--cat-active-bg);
}
.col-btn.active .col-bar {
  background: var(--cat-active-text);
}
.col-btn:hover {
  background: var(--cat-hover);
}

.col-bar {
  width: 0.3vw;
  height: 1.4vw;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: background 0.2s;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kiosk-popup {
  width: 94%;
  max-height: 92vh;
  background: var(--card-bg, #fff);
  border-radius: 0.6vw;
  overflow: hidden;
}

.kiosk-popup__layout {
  display: grid;
  grid-template-columns: 44% 28% 28%;
  height: 85vh;
}

.popup-product {
  display: grid;
  grid-template-rows: 55% 45%;
  padding: 1.5vw;
  overflow: hidden;
}

.popup-product__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-product__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.6vw;
  object-fit: cover;
}

.popup-product__info {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding-top: 1vh;
}

.popup-product__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1vw;
}

.popup-product__title {
  font-size: 2.7vw;
  font-weight: 600;
  color: var(--text-primary, #333);
}

.popup-product__price {
  font-size: 2.2vw;
  font-weight: 700;
  font-family: tahoma, sans-serif;
  color: var(--price-color, tomato);
  white-space: nowrap;
}

.popup-product__description {
  font-size: 1.7vw;
  color: var(--text-secondary, #8e8e8e);
  line-height: 1.6;
}

.popup-options {
  background: var(--order-bg, #f7f7f7);
  overflow-y: auto;
  padding: 1.5vw;
}

.option-group-list {
  list-style: none;
  padding: 0;
}

.option-group {
  margin-bottom: 2vh;
  list-style: none;
}

.option-group__title {
  background: var(--cat-bg, #eaeaea);
  padding: 0.8vh 1.5vw;
  font-weight: 600;
  border-radius: 0.3vw;
}

.option-item-list {
  margin-top: 1vh;
  list-style: none;
  padding: 0;
}

.option-item {
  margin-bottom: 0.3vh;
}

.option-item__label {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  cursor: pointer;
  padding: 0.8vh 1.5vw;
  border-radius: 0.3vw;
  transition: background 0.15s;
}

.option-item__label:hover {
  background: var(--cat-hover, #eee);
}

.option-item__name {
  flex: 1;
}

.option-item__price {
  color: var(--text-secondary, #999);
  font-size: 1.3vw;
}

.popup-summary {
  display: flex;
  flex-direction: column;
  padding: 1.5vw;
  background: var(--card-bg, #fff);
}

.popup-summary__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8vw;
  font-weight: 600;
  margin-bottom: 1.5vh;
}

.popup-summary__close {
  cursor: pointer;
  font-size: 1.8vw;
  color: var(--text-secondary, #777);
}

.popup-summary__close:hover {
  color: var(--text-primary, #333);
}

.popup-summary__selected {
  flex: 1;
  overflow-y: auto;
  font-size: 1.4vw;
  color: var(--text-secondary, #999);
}

.popup-summary__selected ul {
  list-style: none;
  padding: 0 2.5vw 0.8vh 0;
  margin-bottom: 0.8vh;
  border-bottom: 1px dashed var(--border-color, #ddd);
  position: relative;
}

.popup-summary__selected li.qty {
  position: absolute;
  right: 2.5vw;
  top: 0;
}

.popup-summary__selected li.delta_price {
  color: var(--price-color, tomato);
}

.popup-summary__selected i {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  color: #999;
  font-size: 1.3vw;
}

.popup-summary__selected i:hover {
  color: #e74c3c;
}

.popup-summary__controls {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5vh;
}

.quantity-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5vw;
}

.quantity-control button {
  width: 4.5vw;
  height: 3.5vh;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 0.3vw;
  background: var(--card-bg, #fff);
  cursor: pointer;
  font-size: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control button:hover {
  background: var(--cat-hover, #f4f4f4);
}

.quantity-control > span {
  font-size: 2vw;
  font-weight: 600;
  min-width: 3vw;
  text-align: center;
}

.popup-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 2vw;
}

.popup-summary__total strong {
  color: var(--price-color, tomato);
  font-weight: 700;
  font-family: tahoma, sans-serif;
}

.btn-add-cart {
  height: 5vh;
  background: var(--btn-primary-bg, #ff5733);
  border: none;
  border-radius: 0.5vw;
  color: var(--btn-primary-text, #fff);
  font-weight: 600;
  font-size: 1.8vw;
  cursor: pointer;
  font-family: inherit;
}

.btn-add-cart:hover {
  opacity: 0.9;
}

.kiosk-payment {
  width: 94%;
  max-height: 92vh;
  background: var(--card-bg, #fff);
  border-radius: 0.6vw;
  overflow: hidden;
}

.kiosk-payment__layout {
  display: grid;
  grid-template-columns: 70% 30%;
  height: 85vh;
}

.payment-order {
  display: flex;
  flex-direction: column;
  padding: 3vw;
}

.payment-order__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3vh;
}

.payment-order__status {
  font-size: 2.7vw;
  font-weight: 600;
  color: var(--text-primary, #333);
}

.payment-order__table {
  font-size: 1.8vw;
}

.payment-order__table-label {
  margin-right: 0.5vw;
  color: var(--text-secondary, #777);
}

.payment-order__table-id {
  font-weight: 600;
}

.payment-order__body {
  flex: 1;
  overflow-y: auto;
}

.payment-order__footer {
  margin-top: 3vh;
}

.order-list__head {
  display: grid;
  grid-template-columns: 50% 20% 30%;
  font-weight: 600;
  padding-bottom: 0.8vh;
  border-bottom: 0.2vw solid var(--border-color, #eee);
}

.order-list__items {
  margin-top: 1.5vh;
  list-style: none;
  padding: 0;
}

.order-item {
  display: grid;
  grid-template-columns: 50% 20% 30%;
  padding: 1vh 0;
  border-bottom: 1px dashed var(--border-color, #ddd);
  align-items: center;
}

.order-item__name {
  display: flex;
  flex-direction: column;
}

.order-item__name small {
  font-size: 1.3vw;
  color: var(--text-secondary, #999);
}

.order-item__qty {
  text-align: center;
  font-weight: 500;
}

.order-item__price {
  text-align: right;
  font-family: tahoma, sans-serif;
  font-weight: 600;
}

.payment-total {
  display: flex;
  justify-content: space-between;
  font-size: 2.1vw;
  margin-bottom: 2vh;
}

.payment-total__amount {
  font-family: tahoma, sans-serif;
  font-weight: 700;
  color: var(--price-color, tomato);
}

.btn-return-menu {
  width: 100%;
  height: 5vh;
  background: var(--btn-tertiary-bg, #444);
  color: var(--btn-tertiary-text, #fff);
  border: none;
  border-radius: 0.5vw;
  font-size: 1.8vw;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-return-menu:hover {
  opacity: 0.85;
}

.payment-banner {
  background: var(--order-bg, #fafafa);
  padding: 1.5vw;
  display: flex;
  align-items: center;
}

.payment-banner__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  width: 100%;
}

.payment-banner__wrap img {
  width: 100%;
  border-radius: 0.5vw;
  object-fit: cover;
}
