
:root {
  --orange: #f47c13;
  --green: #16796b;
  --text: #17191c;
  --muted: #6a727b;
  --line: #e4e7ea;
  --panel: #ffffff;
  --bg: #f2f4f1;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #dfe3e6;
  color: var(--text);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}
button, input { font: inherit; }
button, input, select, textarea { font-size: 16px; }
button { cursor: pointer; touch-action: manipulation; }
.ui-icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: -0.16em;
}
.customer-shell {
  width: min(100%, 584px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 90px;
  background: var(--panel);
}
.site-header {
  position: static;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(12px);
}
.brand-line { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; }
.eyebrow { margin: 0 0 3px; color: var(--orange); font-size: 14px; font-weight: 800; }
h1 { margin: 0; font-size: 24px; line-height: 1.2; }
.store-button, .secondary-button {
  min-height: 40px;
  border: 1px solid #f0c89c;
  border-radius: 12px;
  padding: 0 13px;
  background: #fffaf4;
  color: #8a4611;
  font-weight: 800;
}
.main-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg);
}
.tab-button {
  min-height: 44px;
  border: 1px solid #d9dedf;
  border-radius: 999px;
  background: white;
  color: #3a424a;
  font-weight: 800;
}
.tab-button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}
.tab-panel { display: none; padding: 16px; background: var(--bg); }
.tab-panel.is-active { display: block; }
.lookup-card {
  display: grid;
  gap: 12px;
  border: 1px solid #f2d8b8;
  border-radius: 18px;
  padding: 18px;
  background: white;
}
.lookup-card h2 { margin: 0; font-size: 22px; line-height: 1.3; word-break: keep-all; }
.pickup-form { display: grid; gap: 7px; }
.field-label { color: #48525c; font-size: 13px; font-weight: 800; }
.lookup-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.lookup-row input {
  min-width: 0;
  min-height: 46px;
  border: 1px solid #d7dde1;
  border-radius: 12px;
  padding: 0 13px;
}
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  text-decoration: none;
}
.primary-button:disabled { background: #b7bdc4; cursor: default; }
.helper-text { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.pickup-results { display: grid; gap: 12px; margin-top: 14px; }
.empty-state {
  margin: 0;
  border: 1px dashed #ccd5d7;
  border-radius: 14px;
  padding: 18px;
  background: white;
  color: #5f6973;
  text-align: center;
}
.pickup-card {
  overflow: hidden;
  border: 1px solid #d7e3dd;
  border-radius: 16px;
  background: white;
}
.pickup-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 15px;
  background: #f4fbf7;
}
.pickup-date { font-size: 18px; font-weight: 900; }
.pickup-status {
  align-self: flex-start;
  border-radius: 999px;
  padding: 5px 9px;
  background: #e6f5ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.pickup-status.pickup_ready { background: #e4f7ff; color: #0b62a3; }
.pickup-status.preparing { background: #fff2d6; color: #935408; }
.pickup-card ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.pickup-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 13px 15px;
}
.pickup-card strong { overflow-wrap: anywhere; }
.quantity { color: #0b65bd; font-weight: 900; }
.date-tabs {
  position: sticky;
  top: 54px;
  z-index: 18;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin: -2px -16px 14px;
  padding: 12px 16px 9px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px) saturate(150%);
  scrollbar-width: none;
}
.date-item {
  display: grid;
  flex: 0 0 auto;
  gap: 6px;
  justify-items: center;
}
.date-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid #d8dee1;
  border-radius: 13px;
  padding: 0 10px;
  background: white;
  color: #1f252b;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.date-tab.is-active { border-color: var(--orange); background: var(--orange); color: white; }
.date-count {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}
.date-item:has(.date-tab.is-active) .date-count {
  color: var(--orange-dark);
  font-weight: 600;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-grid > .empty-state {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 260px);
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  line-height: 1.35;
  white-space: nowrap;
}
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  background: white;
}
.product-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 75%), transparent),
    linear-gradient(150deg, #e7f3df, #f8f0d4 48%, #e6f4fa);
  color: #357457;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}
.product-image::after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  content: "i";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: rgb(245 130 32 / 92%);
  color: white;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image button {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
}
.product-main {
  display: block;
}
.product-meta {
  display: block;
  min-width: 0;
  padding: 10px 10px 0;
}
.meta-label {
  display: none;
}
.product-name {
  display: -webkit-box;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.price-line {
  display: flex;
  gap: 4px;
  align-items: baseline;
  margin-top: 5px;
  color: #6d747c;
  font-size: 12px;
}
.price-line::before {
  content: "가격";
}
.price-line > span {
  display: none;
}
.price-line strong {
  color: #15191d;
  font-size: 13px;
  font-weight: 800;
}
.detail-button {
  display: none;
}
.product-actions {
  display: block;
  padding: 10px;
}
.product-card.is-closed {
  background: white;
}
.product-card.is-closed .product-main,
.product-card.is-closed .product-actions {
  filter: grayscale(1);
  opacity: 0.5;
}
.product-card.is-closed::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  content: "예약마감";
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgb(17 24 39 / 78%);
  color: white;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.product-card.is-closed .product-actions {
  padding-top: 10px;
}
.closed-quantity-state {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid #d8dde1;
  border-radius: 10px;
  background: white;
  color: #8d4d11;
  font-size: 12px;
  font-weight: 800;
}
.stepper {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #d8dde1;
  border-radius: 10px;
}
.stepper button { border: 0; background: white; font-size: 21px; font-weight: 900; touch-action: manipulation; }
.stepper output { display: grid; place-items: center; font-weight: 900; }
.cart-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(100%, 584px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 12px;
  background: rgb(255 255 255 / 98%);
}
.cart-sheet[hidden], .modal-backdrop[hidden] { display: none; }
.cart-sheet [data-cart-summary] {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}
.cart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-clear-button {
  min-height: 46px;
  border: 1px solid #ffb8ad;
  border-radius: 12px;
  padding: 0 13px;
  background: #fff4f2;
  color: #d93025;
  font-weight: 900;
  white-space: nowrap;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgb(0 0 0 / 45%);
}
.modal {
  position: relative;
  width: min(100%, 420px);
  border-radius: 18px;
  padding: 24px;
  background: white;
}
.modal h2 { margin: 0 36px 14px 0; font-size: 22px; }
.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d9e0e1;
  border-radius: 10px;
  padding: 0;
  background: white;
  font-size: 22px;
  line-height: 1;
}
.modal-body { color: #39434d; line-height: 1.6; white-space: pre-wrap; }
.chat-link { width: 100%; margin-top: 16px; }
.modal-backdrop.is-order-copy-result .modal {
  width: min(100%, 380px);
  border-radius: 14px;
  padding: 24px 18px 20px;
  text-align: center;
}
.modal-backdrop.is-order-copy-result {
  padding: 10px;
}
.modal-backdrop.is-order-copy-result .modal h2 {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.35;
}
.modal-backdrop.is-order-copy-result .modal-close {
  display: none;
}
.modal-backdrop.is-order-copy-result .modal-body {
  display: grid;
  gap: 14px;
  color: #26313d;
  white-space: normal;
}
.modal-backdrop.is-order-copy-result .modal > .chat-link {
  display: none;
}
.order-copy-guide {
  margin: 8px 0 12px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.6;
}
.order-copy-guide strong {
  color: #f47c13;
  font-weight: 900;
}
.order-copy-guide .order-copy-arrow {
  color: #f47c13;
  font-weight: 900;
}
.order-copy-manual-guide {
  margin: 0;
  border: 1px solid #ffd08a;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff8e8;
  color: #6f3f00;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
}
.order-copy-manual-guide strong {
  color: #d93025;
  font-weight: 900;
}
.order-copy-text-label {
  margin: 0 0 -8px;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: left;
}
.order-copy-text {
  max-height: 168px;
  overflow: auto;
  margin: 0;
  border-radius: 8px;
  padding: 15px 13px;
  background: #f5f5f6;
  color: #1f2937;
  font: inherit;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  white-space: pre-wrap;
}
.order-copy-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 10px;
  margin-top: 4px;
}
.order-copy-actions .secondary-button,
.order-copy-actions .primary-button {
  min-height: 44px;
  border-radius: 8px;
  margin: 0;
  font-size: 14px;
}
.order-copy-chat {
  gap: 6px;
  background: #fee500;
  color: #201b00;
}
.order-copy-chat img {
  width: 20px;
  height: 20px;
  border-radius: 999px;
}
.order-copy-close {
  justify-self: center;
  min-height: 28px;
  border: 0;
  padding: 0 12px;
  background: transparent;
  color: #9aa3ad;
  font-size: 13px;
  font-weight: 500;
}
.modal-backdrop[data-detail-modal] {
  align-items: flex-end;
  padding: 6px 0 0;
}
.modal-backdrop[data-detail-modal] .modal {
  display: flex;
  flex-direction: column;
  width: min(100%, 584px);
  height: calc(100vh - 12px);
  max-height: calc(100vh - 12px);
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  padding: 0;
}
.modal-backdrop[data-detail-modal] .modal-header {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 12px 20px;
}
.modal-backdrop[data-detail-modal] .modal-header .modal-close {
  position: static;
  flex: 0 0 auto;
}
.detail-kicker {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.modal-backdrop[data-detail-modal] .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 20px 22px;
  white-space: normal;
}
.detail-hero {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #eef2f5;
}
.detail-gallery-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  touch-action: pan-y;
}
.detail-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.detail-gallery-track.is-animating {
  transition: transform 220ms ease;
}
.detail-gallery-slide {
  display: grid;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  place-items: center;
}
.detail-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f7f7;
}
.modal-backdrop[data-detail-modal] .modal-title {
  margin: 14px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}
.detail-price-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 16px;
  color: #6d747c;
  font-size: 13px;
}
.detail-price-row strong {
  color: #11161b;
  font-size: 15px;
}
.detail-copy {
  display: block;
  border: 1px solid #dcebf7;
  border-radius: 14px;
  padding: 14px;
  background: #f3f9ff;
  color: #26323d;
  font-size: 14px;
  line-height: 1.7;
}
.detail-copy-title {
  margin: 0 0 8px;
  color: #1576c9;
  font-size: 14px;
  font-weight: 800;
}
[data-detail-description] {
  display: block;
  margin: 0;
  text-align: left;
  white-space: pre-line;
}
.detail-gallery-detail {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgb(0 0 0 / 56%);
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.detail-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 22px;
  margin: 8px 0 2px;
}
.detail-gallery-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #d3d6da;
}
.detail-gallery-dot.is-active {
  background: #1a73e8;
}
.detail-gallery-detail[hidden],
.detail-gallery-dots[hidden] {
  display: none;
}
.modal-backdrop[data-detail-modal] .modal-footer {
  flex: 0 0 auto;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
}
.modal-backdrop[data-image-viewer-modal] {
  align-items: stretch;
  padding: 0;
  background: #ffffff;
}
.modal-backdrop[data-image-viewer-modal] .modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
}
.image-viewer-header {
  position: relative;
  flex: 0 0 auto;
  min-height: 58px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #eef1f4;
}
.image-viewer-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}
.image-viewer-body {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 14px 14px;
  background: #ffffff;
}
.image-viewer-stage {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}
.image-viewer-list {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
}
.image-viewer-item {
  display: grid;
  place-items: center;
  scroll-margin-top: 10px;
}
.image-viewer-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.image-viewer-thumbs {
  display: flex;
  gap: 8px;
  min-height: 48px;
  overflow-x: auto;
  padding: 4px 2px;
}
.image-viewer-thumb {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 1px;
  background: #ffffff;
}
.image-viewer-thumb.is-active {
  border-color: #4577ff;
}
.image-viewer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-title { margin: 0; padding-right: 14px; font-size: 19px; line-height: 1.25; text-align: left; }
.store-modal-body { padding-top: 14px; white-space: normal; }
.store-phone-action {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.store-phone-label {
  color: #1d242c;
  font-size: 14px;
  font-weight: 900;
}
.call-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  border: 1px solid #b9daf8;
  border-radius: 9px;
  padding: 0 11px;
  background: #f4faff;
  color: #1667ad;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.call-link::before {
  content: "☎";
  font-size: 15px;
}
.store-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.store-info dt {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #1d242c;
  font-size: 15px;
  font-weight: 800;
}
.store-info dd {
  margin: -2px 0 10px;
  padding-left: 8px;
  color: #1d242c;
  font-size: 15px;
  font-weight: 400;
}
.address-list {
  display: grid;
  gap: 5px;
}
.address-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.address-label {
  flex: 0 0 auto;
  border: 1px solid #d7dde4;
  border-radius: 3px;
  padding: 1px 5px;
  background: #f8fafc;
  color: #5c6670;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.address-text {
  flex: 1 1 auto;
  min-width: 0;
  color: #1d242c;
  font-size: 14px;
  font-weight: 400;
}
.copy-button {
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 32px;
  border: 1px solid #b9daf8;
  border-radius: 999px;
  padding: 0 11px;
  background: white;
  color: #1667ad;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.map-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d7dde4;
  border-radius: 10px;
  padding: 0 12px;
  background: #f8fafc;
  color: #26313a;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.map-link-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: contain;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}
.outline-action {
  min-height: 38px;
  border: 1px solid #d7dde4;
  border-radius: 10px;
  padding: 0 14px;
  background: #ffffff;
  color: #26313a;
  font-weight: 800;
}
.copy-toast {
  position: fixed;
  top: 56px;
  left: 50%;
  z-index: 140;
  width: max-content;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  border: 1px solid #ffd2a3;
  border-radius: 14px;
  padding: 14px 18px;
  background: #fff3e5;
  color: #6b3d14;
  box-shadow: 0 14px 34px rgb(51 38 20 / 18%);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
.copy-toast.is-success {
  border-color: #bbf7d0;
  background: #e8f8ef;
  color: #14532d;
}
.copy-toast.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}
.copy-toast[hidden] {
  display: none;
}

.app-frame {
  width: 100%;
  background: #f5f6fb;
}
.app-frame .site-header {
  min-height: 72px;
  border-bottom-color: #dfe4ee;
  padding: 12px 16px;
  background: #fffdfb;
}
.app-frame .brand-line {
  gap: 9px;
}
.app-frame .brand-mark {
  width: 36px;
  height: 36px;
}
.app-frame .eyebrow {
  margin-bottom: 1px;
  color: #f1661c;
  font-size: 14px;
  font-weight: 800;
}
.app-frame h1 {
  color: #151923;
  font-size: 22px;
  font-weight: 900;
}
.header-kakao-badge {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 4%);
}
.header-kakao-link {
  display: block;
  flex: 0 0 auto;
  border-radius: 999px;
  line-height: 0;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.app-frame .store-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 12px;
  border-color: #ffd2a3;
  border-radius: 10px;
  background: #fff3e5;
  color: #6b3d14;
  font-size: 14px;
  white-space: nowrap;
}
.app-frame .store-button svg {
  color: var(--orange);
}
.app-frame .main-tabs {
  position: sticky;
  top: 0;
  z-index: 19;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 8px 16px 8px;
  border: 1px solid #e1e6ef;
  border-radius: 999px;
  padding: 3px;
  background: #ffffff;
  isolation: isolate;
}
.app-frame .main-tabs::before {
  content: "";
  position: absolute;
  inset: -8px -16px;
  z-index: -1;
  border-bottom: 1px solid #dfe4ee;
  background: #f5f6fb;
  pointer-events: none;
}
.app-frame .tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #ffffff;
  color: #4d5567;
  font-size: 15px;
  font-weight: 900;
}
.app-frame .tab-button svg {
  width: 17px;
  height: 17px;
}
.app-frame .tab-button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 6px 12px rgb(244 124 19 / 24%);
}
.app-frame .tab-panel {
  padding: 0 16px 24px;
  background: #f5f6fb;
}
.pickup-lookup-card {
  margin-bottom: 20px;
  border: 0;
  border-radius: 22px;
  padding: 20px 18px 30px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(30 48 80 / 5%);
}
.pickup-lookup-card h2 {
  margin: 0 0 18px;
  color: #0d1a38;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.pickup-lookup-card .field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.pickup-lookup-card .lookup-row {
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 0;
  min-height: 44px;
  border: 2px solid #dfe5ef;
  border-radius: 13px;
  background: #f8fbff;
  box-shadow: inset 0 1px 2px rgb(26 48 74 / 4%);
}
.pickup-lookup-card .lookup-row input {
  min-height: 40px;
  padding-left: 58px;
  border: 0;
  background: transparent;
  color: #071229;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}
.search-icon-button {
  display: inline-flex;
  width: 52px;
  height: 30px;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  border: 1px solid #f26b16;
  border-radius: 9px;
  background: #f58220;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 0;
  box-shadow: 0 2px 6px rgb(245 130 32 / 22%);
}
.pickup-customer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #102044;
  font-size: 18px;
  font-weight: 900;
}
.pickup-section {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.pickup-section-title {
  margin: 0 10px;
  color: #102044;
  font-size: 17px;
  font-weight: 900;
}
.pickup-section + .pickup-section {
  margin-top: 18px;
}
.customer-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #fff3e5;
  color: var(--orange);
}
.customer-avatar svg {
  width: 20px;
  height: 20px;
}
.pickup-date-card {
  margin: 0 10px 10px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgb(24 39 75 / 4%);
}
.pickup-date-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 42px;
  padding: 9px 16px;
  background: #fff3e5;
  color: #111827;
  font-size: 14px;
  white-space: nowrap;
}
.pickup-date-card.pickup-card > .pickup-date-card-head {
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 16px;
  background: #fff3e5;
  color: #111827;
}
.pickup-date-card-head strong {
  font-weight: 800;
}
.pickup-calendar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
}
.pickup-calendar-icon svg {
  width: 14px;
  height: 14px;
}
.pickup-ready-text {
  --pickup-status-pulse-rgb: 249 115 22;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 4px;
  border-radius: 999px;
  padding: 0 8px;
  background: #f97316;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  animation: pickupStatusPulse 1.7s ease-in-out infinite;
}
.pickup-preparing-text {
  --pickup-status-pulse-rgb: 71 85 105;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 4px;
  border-radius: 999px;
  padding: 0 8px;
  background: #475569;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  animation: pickupStatusPulse 1.7s ease-in-out infinite;
}
@keyframes pickupStatusPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(var(--pickup-status-pulse-rgb) / 0.34);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 6px rgb(var(--pickup-status-pulse-rgb) / 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pickup-ready-text,
  .pickup-preparing-text {
    animation: none;
  }
}
.pickup-date-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pickup-date-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border-top: 1px solid #edf0f5;
  padding: 0 20px;
}
.pickup-date-card li:first-child {
  border-top: 0;
}
.pickup-date-card li strong {
  color: #08152f;
  font-size: 14px;
  font-weight: 900;
}
.pickup-date-card .quantity {
  min-width: 38px;
  border-radius: 9px;
  padding: 7px 9px;
  background: #f2f5fb;
  color: #0e1830;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
