/* 모바일 전용 샌드박스 */
body {
  max-width: 480px;
  margin: 0 auto;
  background-color: hsl(210, 20%, 95%);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.view-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  padding-bottom: calc(90px + env(safe-area-inset-bottom));
  min-height: 100vh;
}

/* 고정 헤더 */
.menu-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 16px 8px 16px;
  border-bottom: 1px solid var(--border);
}

.header-top-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.brand-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.brand-main {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--text);
  letter-spacing: -0.3px;
  text-align: center;
}
.brand-main span {
  color: var(--primary);
}

/* 다국어 언어 버튼 로우 (항시 노출형) */
.lang-selector-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  width: 100%;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-title);
  cursor: pointer;
  transition: var(--transition-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.lang-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.18);
}

.lang-btn .flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-btn .flag img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lang-btn .lang-code {
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* 카테고리 가로 스크롤 */
.category-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 87, 34, 0.4) transparent;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}
.category-slider::-webkit-scrollbar {
  display: block;
  height: 4px;
}
.category-slider::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.category-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 87, 34, 0.4);
  border-radius: 10px;
}
.category-slider::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 87, 34, 0.6);
}

.cat-tab {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.cat-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.2);
}

/* 메뉴 리스트 본문 */
.menu-body {
  padding: 16px;
  flex: 1;
}
.menu-banner {
  margin-bottom: 20px;
}
.menu-banner h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.menu-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 메뉴 카드 */
.menu-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.menu-card-img {
  width: 90px;
  height: 90px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--bg);
}

.menu-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.menu-card-top h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  word-break: keep-all;
}
.menu-card-top p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.menu-price-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--primary);
}

/* 포스 번호 고대비 표시 배지 */
.pos-code-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--text);
  color: var(--bg);
  padding: 2px 4px;
  border-radius: 4px;
  font-family: var(--font-title);
}

/* 하단 버튼 2개 병렬 배치 */
.card-action-btns {
  display: flex;
  gap: 6px;
}

.btn-detail {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 12px;
  font-weight: 700;
  background: var(--border);
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.btn-detail:hover {
  background: var(--text-muted);
  color: #fff;
}

.btn-add {
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 12px;
  font-weight: 700;
}

/* 품절 오버레이 */
.menu-card.sold-out {
  filter: grayscale(1) opacity(0.6);
  pointer-events: none;
}
.sold-out-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
}

/* 하단 장바구니 요약바 */
.cart-sticky-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  min-height: 80px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.cart-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
}

.cart-count-badge {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.cart-price-box {
  display: flex;
  flex-direction: column;
}
.cart-price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.cart-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--text);
}

/* 모달 오버레이 공통 */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* 상세보기 모달 팝업 */
.detail-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  z-index: 2501;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 -16px 40px rgba(0,0,0,0.15);
}
.detail-modal.open {
  transform: translateY(0);
}

.btn-close-modal {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.detail-image-wrapper {
  width: 100%;
  height: 220px;
  position: relative;
  background-color: var(--border);
}
.detail-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-body {
  padding: 20px 16px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.detail-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-title-row h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  word-break: keep-all;
}

.detail-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.detail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}
.detail-price-row span:first-child {
  color: var(--text-muted);
}
.detail-item-price {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.detail-footer {
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom)) 16px;
  border-top: 1px solid var(--border);
}

/* 장바구니 서랍 (Drawer) */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  z-index: 1001;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -16px 40px rgba(0,0,0,0.15);
}
.cart-drawer.open {
  transform: translateY(0);
}

.drawer-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  text-align: center;
}
.drawer-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 8px auto;
}
.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.btn-close-drawer {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 1.8rem;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.drawer-body {
  padding: 20px 16px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.drawer-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.drawer-item-info {
  flex: 1;
  padding-right: 12px;
}
.drawer-item-name {
  font-size: 0.95rem;
  font-weight: 700;
}
.drawer-item-code {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.drawer-item-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-item-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 60px;
  text-align: right;
}

/* 수량조절 */
.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.qty-value {
  width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-weight: 700;
}
.drawer-total-row span:first-child {
  color: var(--text-muted);
}
.drawer-total-val {
  font-size: 1.3rem;
  font-family: var(--font-title);
  color: var(--primary);
}

.drawer-footer {
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom)) 16px;
  border-top: 1px solid var(--border);
}

.btn-block {
  width: 100%;
}

/* ==========================================
     캐셔 제시용 특대 주문 영수증 모달
     ========================================== */
.presentation-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff; /* 캐셔 식별 극대화를 위해 순백색 배경 강제 */
  z-index: 3000;
  display: none; /* 기본 숨김 */
  overflow-y: auto;
  padding: 24px 16px;
}
.presentation-overlay.open {
  display: block;
}

.pres-container {
  max-width: 440px;
  margin: 0 auto;
  border: 4px solid #000000; /* 클래식 굵은 라인 */
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  background: #ffffff;
  color: #000000;
}

.pres-header {
  text-align: center;
  border-bottom: 4px dashed #000000; /* 절취선 감성 */
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.pres-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.pres-header h2 {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.pres-header p {
  font-size: 0.8rem;
  color: #444;
  font-weight: 700;
  margin-top: 4px;
}

.pres-body {
  margin-bottom: 24px;
}

.pres-code-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

/* 캐셔 전달 전용 고대비 아이템 행 */
.pres-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px dashed #cccccc;
}

.pres-item-left {
  display: flex;
  align-items: center;
}

/* 포스 코드 강조 */
.pres-item-code {
  font-family: var(--font-title);
  background: #000000;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 6px;
  margin-right: 12px;
  display: inline-block;
  min-width: 55px;
  text-align: center;
}

/* 한글 메뉴명 노출 */
.pres-item-name-box {
  display: flex;
  flex-direction: column;
}
.pres-item-name-ko {
  font-size: 1.1rem;
  font-weight: 900;
  color: #000000;
}
.pres-item-name-lang {
  font-size: 0.75rem;
  color: #555555;
  font-weight: 500;
}

.pres-item-qty {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
}

/* 합계 금액 대형 표시 */
.pres-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 4px dashed #000000;
  padding-top: 16px;
  margin-top: 20px;
  font-weight: 900;
  font-size: 1.15rem;
}
.pres-total-val {
  font-size: 1.7rem;
  font-family: var(--font-title);
  color: var(--primary);
}

.pres-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================
     커스텀 비차단 컨펌 모달 (Confirm Modal)
     ========================================== */
.confirm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 320px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 4001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.confirm-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

#confirm-overlay {
  z-index: 4000;
}

.confirm-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.confirm-icon {
  font-size: 2rem;
}
#confirm-message {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.confirm-footer {
  display: flex;
  gap: 10px;
}
.confirm-footer button {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: 12px;
}

/* ==========================================
     3단계 옵션 선택기 스타일 (Dough / Topping / Sauce)
     ========================================== */
.step-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 24px 0;
  padding: 0 10px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 2;
  opacity: 0.4;
  transition: var(--transition);
}

.step-indicator.active {
  opacity: 1;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.step-indicator.active .step-dot {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.25);
}

.step-indicator.completed .step-dot {
  background: #10b981; /* 초록색 체크 */
  color: #fff;
}

.step-text {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
}

.step-indicator.active .step-text {
  color: var(--primary);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  transform: translateY(-9px);
  transition: var(--transition);
}

.step-line.completed {
  background: #10b981;
}

/* 스텝 섹션 슬라이더 */
.steps-wrapper {
  position: relative;
  min-height: 190px;
  margin-bottom: 24px;
}

.step-section {
  display: none;
  animation: slideFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-section.active-section {
  display: block;
}

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

.step-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 8px;
}

/* 옵션 선택 카드 그리드 */
.option-choices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.option-choices-grid.grid-5 {
  grid-template-columns: repeat(2, 1fr); /* 5종 소스는 2열 또는 3열이 적합 */
  gap: 8px;
}

.opt-choice-card {
  padding: 14px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  font-family: inherit;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  user-select: none;
  -webkit-user-select: none;
}

.opt-choice-card:hover {
  background: var(--bg);
}

.opt-choice-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
  transform: scale(0.97);
}

.opt-card-name {
  font-size: 0.82rem;
  line-height: 1.3;
  font-weight: 700;
}


/* ==========================================
   추천 식음료 팝업창 스타일 (Recommendation Modal)
   ========================================== */
.recommend-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  z-index: 2601;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 -16px 40px rgba(0,0,0,0.15);
}
.recommend-modal.open {
  transform: translateY(0);
}
.recommend-header {
  padding: 24px 20px 12px 20px;
  text-align: center;
}
.recommend-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}
.recommend-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.recommend-body {
  padding: 12px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recommend-drink-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card-sub, rgba(0,0,0,0.03));
  border-radius: var(--radius);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
}
.recommend-drink-img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
}
.recommend-drink-info {
  flex: 1;
}
.recommend-drink-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.recommend-drink-price {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}
.recommend-footer {
  padding: 16px 20px 24px 20px;
}
.btn-add-recommend {
  background: var(--primary);
  color: #fff;
  border: none;
  transition: var(--transition-fast);
}
.btn-add-recommend:hover {
  filter: brightness(0.9);
}
