/* ============================================================
   DRAM — QR Menu page (mobile-first, tabbed layout)
   ※ 최소 폰트 12px 보장 + 잔/병 가격 분리 + SOLD OUT 표시
   ============================================================ */

.menu-page {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212, 175, 96, 0.12), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(168, 130, 47, 0.1), transparent 60%),
    var(--bg-0);
  min-height: 100vh;
}

/* ===== HEADER ===== */
.menu-header {
  text-align: center;
  padding: 48px 24px 22px;
}
.menu-eyebrow {
  font-family: var(--font-display);
  letter-spacing: .35em;
  font-size: 12px;
  color: var(--gold-2);
  margin: 0 0 14px;
}
.menu-brand {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.menu-brand .brand-d    { font-size: clamp(48px, 12vw, 88px); }
.menu-brand .brand-dram { font-size: clamp(48px, 12vw, 96px); transform: translateY(.12em); }

.menu-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 12px;
  font-family: var(--font-display);
  letter-spacing: .5em;
  color: var(--gold-2);
  font-size: 12px;
}
.menu-divider span {
  display: inline-block;
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}
.menu-tagline {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ===== STICKY TAB BAR ===== */
.menu-tabbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 6, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu-tabbar-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  padding: 10px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-3) transparent;
  -webkit-overflow-scrolling: touch;
}
.menu-tabbar-inner::-webkit-scrollbar { height: 4px; }
.menu-tabbar-inner::-webkit-scrollbar-thumb {
  background: var(--gold-3);
  border-radius: 2px;
}

.tab-btn {
  flex: 0 0 auto;
  padding: 10px 20px;
  font-family: var(--font-kr);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s;
  cursor: pointer;
}
.tab-btn:hover {
  color: var(--gold-1);
  border-color: var(--line-strong);
}
.tab-btn.active {
  color: #1a1209;
  background: var(--gold-grad);
  border-color: transparent;
  font-weight: 600;
}
.tab-btn .tab-count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  color: inherit;
  opacity: .85;
}
.tab-btn.active .tab-count {
  background: rgba(0,0,0,.2);
  opacity: 1;
}

/* ===== MAIN ===== */
.menu-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  min-height: 50vh;
}

.menu-cat { animation: catIn .35s ease both; }
@keyframes catIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cat-eyebrow {
  font-family: var(--font-display);
  letter-spacing: .35em;
  font-size: 12px;
  color: var(--gold-3);
  text-align: center;
  margin: 0 0 8px;
}
.cat-title {
  text-align: center;
  margin: 0;
  font-family: var(--font-kr);
  font-weight: 500;
  font-size: clamp(26px, 5vw, 34px);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 14px 0 18px;
}
.cat-divider::before,
.cat-divider::after {
  content: "";
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}
.cat-divider .diamond {
  color: var(--gold-2);
  font-size: 12px;
}

.cat-count {
  text-align: center;
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-mute);
}

/* ===== ITEMS ===== */
.menu-items { display: flex; flex-direction: column; }
.m-item {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  transition: opacity .25s;
}
.m-item:last-child { border-bottom: none; }

/* ===== Items WITH image → card with LEFT (image + identity) / RIGHT (text) ===== */
.m-item.has-image {
  display: grid;
  grid-template-columns: 1fr;     /* mobile: single column */
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(212,175,96,.04), transparent 30%),
    rgba(0,0,0,.22);
  overflow: hidden;
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.5);
  padding: 0;
}
.m-item.has-image:last-child { margin-bottom: 0; }

/* LEFT column container */
.m-item.has-image .m-left {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Square image — always 1:1 */
.m-item.has-image .m-image {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto 14px;        /* centered horizontally */
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.m-item.has-image .m-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.m-item.has-image .m-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
.m-item.has-image:hover .m-image img { transform: scale(1.04); }
.m-item.has-image.sold-out .m-image { filter: grayscale(.6); }

/* LEFT — name/price + tags under the image */
.m-item.has-image .m-left .m-head {
  margin-bottom: 10px;
  align-items: flex-start;
}
.m-item.has-image .m-left .m-head .m-price-block {
  align-items: flex-end;
}
.m-item.has-image .m-left .m-tags { margin: 0; }

/* RIGHT column container — description + recipe */
.m-item.has-image .m-right {
  padding: 18px 18px 18px 0;
  display: flex;
  flex-direction: column;
}
.m-item.has-image .m-right .m-desc { margin: 0 0 12px; }
.m-item.has-image .m-right .m-recipe {
  flex: 1 1 auto;     /* 우측 컬럼의 남는 세로 공간을 모두 차지 */
  margin-top: 0;
}

/* ===== Desktop: side-by-side (>= 720px) ===== */
@media (min-width: 720px) {
  .m-item.has-image {
    grid-template-columns: 300px 1fr;
  }
  .m-item.has-image .m-left {
    border-right: 1px solid var(--line);
    padding: 20px 18px;
  }
  .m-item.has-image .m-right {
    padding: 20px 22px;
  }
  .m-item.has-image .m-image { max-width: none; }
}

/* ===== Mobile (< 720px): stack with image centered ===== */
@media (max-width: 719px) {
  .m-item.has-image .m-right {
    padding: 0 18px 18px;
    border-top: 1px dashed var(--line);
    padding-top: 16px;
  }
  .m-item.has-image .m-left {
    padding-bottom: 14px;
  }
}
@media (max-width: 540px) {
  .m-item.has-image .m-image  { max-width: 220px; }
  .m-item.has-image .m-left,
  .m-item.has-image .m-right  { padding-left: 14px; padding-right: 14px; }
}
.m-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}
.m-name-wrap {
  flex: 1;
  min-width: 0;
}
.m-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--gold-1);
  line-height: 1.35;
  display: inline;
}

/* ===== PRICE BLOCK (잔 / 병) ===== */
.m-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex: 0 0 auto;
  text-align: right;
}
.m-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold-2);
  font-weight: 600;
  white-space: nowrap;
}
.m-price .price-label {
  font-family: var(--font-kr);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--gold-3);
  opacity: .85;
}
.m-price-bottle {
  font-size: 15px;
  color: var(--gold-3);
}
.m-price-bottle .price-label { color: var(--text-mute); }

/* ===== DESC / TAGS ===== */
.m-desc {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
.m-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 4px; }
.m-tags .tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gold-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ===== SOLD OUT ===== */
.m-sold-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .25em;
  color: #ff8e7a;
  border: 1px solid #ff8e7a;
  border-radius: 999px;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 600;
}
.m-item.sold-out { opacity: .55; }
.m-item.sold-out .m-price-block { text-decoration: line-through; }
.m-item.sold-out .m-name { color: var(--text-mute); }

/* ===== RECIPE BLOCK (cocktails) ===== */
.m-recipe {
  margin-top: 12px;
  padding: 14px 16px;
  background:
    linear-gradient(180deg, rgba(212,175,96,.06), transparent 80%),
    rgba(0,0,0,.25);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.m-recipe-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-2);
}
.m-recipe-head::before,
.m-recipe-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}
.recipe-list {
  margin: 10px 0 16px;
  padding: 8px 10px;
  list-style: none;
  background: rgba(0, 0, 0, .12);
  border: 1px dashed var(--line);
  border-radius: 6px;
}
.recipe-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.recipe-list li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 10px;
  font-size: 8px;
  color: var(--gold-2);
}
.recipe-line {
  margin: 6px 0;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  white-space: pre-wrap;
}
.recipe-line.meta {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--gold-3);
}

/* ===== EMPTY STATE ===== */
.cat-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-mute);
  font-size: 14px;
}

/* ===== FOOTER ===== */
.menu-bottom {
  text-align: center;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--line);
}
.menu-updated {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--text-mute);
}
.menu-back { margin-bottom: 24px; }
.menu-copy {
  margin: 0;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: .1em;
}

.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 540px) {
  .menu-header { padding: 32px 20px 18px; }
  .menu-main   { padding: 24px 16px 50px; }
  .tab-btn     { padding: 9px 16px; font-size: 13px; }
  .m-recipe    { padding: 12px 14px; }
  .m-name      { font-size: 17px; }
  .m-price     { font-size: 14px; }
  .m-price-bottle { font-size: 12px; }
}

/* ============================================================
   Phase B — 로그인바 + 카트
   ============================================================ */

/* 로그인 상태바 */
.menu-loginbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, .35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 35;
  backdrop-filter: blur(10px);
}
.login-status {
  font-size: 13px;
  color: var(--text-mute);
  flex: 1;
}
.login-status.logged {
  color: var(--gold-1);
}
.login-status.logged.admin { color: #6cd97b; }
.login-status.logged.member { color: var(--gold-1); }
.login-status strong { color: var(--gold-1); }

/* 로그인 모달 */
.login-modal {
  max-width: 420px;
  position: relative;
}
.login-modal h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  text-align: center;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal-close-x {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
}
.modal-close-x:hover {
  border-color: var(--gold-2);
  background: rgba(212, 175, 96, .1);
}
.login-tabs {
  display: flex;
  gap: 0;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--line);
}
.login-tab {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--text-mute);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.login-tab.active {
  color: var(--gold-1);
  border-bottom-color: var(--gold-2);
}
.login-pane[hidden] { display: none; }
.login-error {
  margin: -4px 0 12px;
  color: #ff8e7a;
  font-size: 13px;
  text-align: center;
}

/* 메뉴 항목 주문 버튼 */
.m-order-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;   /* 우측 정렬 */
}
.m-order-btn {
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: .05em;
  background: rgba(212, 175, 96, .12);
  color: var(--gold-1);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.m-order-btn:hover {
  background: var(--gold-grad);
  color: #1a1209;
  border-color: transparent;
}

/* 카트 FAB (떠다니는 버튼) */
.cart-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 14px 22px;
  background: var(--gold-grad);
  color: #1a1209;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  box-shadow: 0 14px 35px -10px rgba(212, 175, 96, .5);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s;
}
.cart-fab:hover { transform: scale(1.05); }
.cart-fab #cartCount {
  display: inline-block;
  min-width: 22px;
  padding: 2px 8px;
  background: rgba(0,0,0,.3);
  border-radius: 999px;
  font-size: 13px;
}

/* 카트 패널 */
.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
}
.cart-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}
.cart-sheet {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-2);
  border-left: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  animation: cartIn .25s ease;
}
@keyframes cartIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  margin: 0;
  font-family: var(--font-display);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-mute);
  font-size: 14px;
}
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.cart-row-name {
  font-family: var(--font-display);
  color: var(--gold-1);
  font-size: 14px;
}
.cart-row-meta {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
}
.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-row-qty button {
  width: 26px; height: 26px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--gold-1);
  font-size: 14px;
  cursor: pointer;
}
.cart-row-qty span {
  min-width: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--gold-1);
}
.cart-row-sub {
  font-family: var(--font-display);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.cart-row-del {
  background: none;
  border: none;
  color: #ff8e7a;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

.cart-summary {
  padding: 16px 20px;
  background: rgba(0,0,0,.3);
  border-top: 1px solid var(--line);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  color: var(--text-dim);
}
.cart-line.discount { color: #6cd97b; }
.cart-line.total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-1);
  font-weight: 700;
}

.cart-actions {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.cart-actions .btn { flex: 1; }
.cart-actions .btn-gold { flex: 2; }

/* ── menu.html 의 "주문하기 / 내 주문 이력" 링크 바 ── */
.menu-orderbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, .35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.order-link {
  font-weight: 600;
  letter-spacing: .1em;
}

/* ============================================================
   orders.html — 멤버 주문 이력 페이지
   ============================================================ */
.my-need-login {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .25);
  margin: 20px 0;
}
.my-need-login p {
  margin: 0 0 16px;
  color: var(--text-dim);
}

.my-summary {
  margin: 0 0 24px;
}
.my-summary-card {
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(212, 175, 96, .08), transparent 80%),
    var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.my-summary-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.my-summary-name strong { color: var(--gold-1); }
.mem-tier-badge {
  padding: 3px 10px;
  background: rgba(212, 175, 96, .15);
  color: var(--gold-1);
  border: 1px solid var(--gold-3);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .1em;
}
.my-summary-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-dim);
}
.my-summary-stats strong {
  color: var(--gold-1);
  font-family: var(--font-display);
}

.my-orders-list { display: grid; gap: 14px; }
.my-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-mute);
}
.my-empty p { margin: 0 0 14px; }

.my-order-card {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-3);
  border-radius: 8px;
}
.my-order-card.status-pending    { border-left-color: #f0c060; }
.my-order-card.status-preparing  { border-left-color: #6ad8e8; }
.my-order-card.status-served     { border-left-color: #6cd97b; }
.my-order-card.status-paid       { border-left-color: var(--gold-2); }
.my-order-card.status-cancelled  { border-left-color: #ff8e7a; opacity: .65; }

.my-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.my-order-head strong { font-family: var(--font-display); color: var(--gold-1); }
.my-order-status {
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .05em;
  font-weight: 600;
}
.my-order-status.status-pending    { background: rgba(240,192,96,.2);  color: #f0c060; border: 1px solid #f0c060; }
.my-order-status.status-preparing  { background: rgba(106,216,232,.2); color: #6ad8e8; border: 1px solid #6ad8e8; }
.my-order-status.status-served     { background: rgba(108,217,123,.2); color: #6cd97b; border: 1px solid #6cd97b; }
.my-order-status.status-paid       { background: rgba(212,175,96,.2);  color: var(--gold-1); border: 1px solid var(--gold-2); }
.my-order-status.status-cancelled  { background: rgba(255,142,122,.2); color: #ff8e7a; border: 1px solid #ff8e7a; }

.my-order-items {
  background: rgba(0,0,0,.25);
  padding: 8px 12px;
  border-radius: 6px;
  margin: 6px 0;
}
.my-order-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  padding: 4px 0;
  font-size: 14px;
  color: var(--text-dim);
}
.my-order-item-row .m-name { color: var(--text); }
.my-order-item-row .m-sub  { font-family: var(--font-display); color: var(--gold-2); }

.my-order-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.my-order-total {
  margin-left: auto;
  font-family: var(--font-display);
  color: var(--gold-1);
  font-size: 15px;
}

.my-error {
  text-align: center;
  padding: 30px;
  color: #ff8e7a;
}

/* ============================================================
   초성 단축 필터 (전체 / ㄱㄴㄷㄹ / ㅁㅂㅅㅇ / ㅈㅊㅋㅌㅍㅎ)
   ============================================================ */
.shortcut-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 26px;
  padding: 0 8px;
}
.shortcut-tab {
  padding: 8px 14px;
  font-family: var(--font-kr);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shortcut-tab:hover:not(:disabled) {
  color: var(--gold-1);
  border-color: var(--line-strong);
  background: rgba(212, 175, 96, .05);
}
.shortcut-tab.active {
  color: #1a1209;
  background: var(--gold-grad);
  border-color: transparent;
  font-weight: 600;
}
.shortcut-tab:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.shortcut-tab .sc-count {
  display: inline-block;
  min-width: 22px;
  padding: 1px 7px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  color: inherit;
  font-weight: 600;
  opacity: .85;
}
.shortcut-tab.active .sc-count {
  background: rgba(0, 0, 0, .2);
  opacity: 1;
}
.shortcut-tab:disabled .sc-count {
  background: rgba(0, 0, 0, .15);
}

@media (max-width: 480px) {
  .shortcut-tab { padding: 7px 11px; font-size: 12px; }
}

/* 영업시간 외 안내 (붉은 톤) */
.login-status.closed-hours {
  color: #ff8e7a;
}
.login-status.closed-hours strong {
  color: #ff6b50;
}
