/* booking2.css - Khanabanao Premium Orange Tablet UI + Advance Payment & Price Breakdown */

:root {
  --primary-orange: #E0561B;
  --primary-orange-hover: #C84814;
  --primary-orange-light: #FFF2EB;
  --primary-orange-border: #FCDCCB;
  --bg-page: #FFF7EC;
  --bg-page-grad: #FFFAF3;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #FAF8F5;
  --text-dark: #1E2530;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border-color: #EAE6E1;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-family);
  min-height: 100vh;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 0% 0%, #FED7AA 0%, transparent 46%),
    radial-gradient(circle at 100% 0%, #FEE2E2 0%, transparent 52%),
    radial-gradient(circle at 0% 100%, #E0F2FE 0%, transparent 42%),
    linear-gradient(145deg, var(--bg-page-grad), var(--bg-page));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 18px 36px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  position: relative;
}

.shell::before {
  content: "";
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(circle at 20% 0, rgba(254,215,170,0.45) 0, transparent 55%),
    radial-gradient(circle at 100% 20%, rgba(191,219,254,0.35) 0, transparent 55%);
  pointer-events: none;
  opacity: 0.65;
  z-index: 0;
}

.col {
  position: relative;
  z-index: 1;
}

/* LEFT COLUMN: TABLET FRAME FOR FORM */
.col-form {
  flex: 0 0 460px;
  max-width: 460px;
  width: 100%;
}

.tablet-container {
  width: 100%;
  max-width: 460px;
  background: #FAF8F5;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
  overflow: hidden;
  position: relative;
  border: 10px solid #1C202C;
  display: flex;
  flex-direction: column;
  height: 700px;
  margin: 0 auto;
}

.tablet-notch {
  width: 90px;
  height: 10px;
  background-color: #1C202C;
  margin: 0 auto;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.app-viewport {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  overflow-y: auto;
  position: relative;
  background: #FAF8F5;
  padding: 18px 16px 80px 16px;
}

.app-viewport::-webkit-scrollbar {
  width: 4px;
}
.app-viewport::-webkit-scrollbar-thumb {
  background: #D4D4D8;
  border-radius: 999px;
}

/* HEADER BAR INSIDE TABLET */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  margin-bottom: 14px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-back-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 16px;
  transition: all 0.2s ease;
}

.btn-back-arrow:hover {
  background: #F3EFE9;
  transform: translateX(-2px);
}

.header-title-block h1 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.header-title-block span {
  font-size: 11px;
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-right .brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.btn-view-menu {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: #FFFFFF;
  border: 1px solid var(--primary-orange-border);
  color: var(--primary-orange);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-menu:hover {
  background: var(--primary-orange-light);
}

/* STEPPER PROGRESS BAR */
.stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 16px;
  padding: 0 4px;
}

.stepper-line-bg {
  position: absolute;
  top: 15px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: #E5E0D8;
  z-index: 1;
}

.stepper-line-progress {
  position: absolute;
  top: 15px;
  left: 22px;
  height: 2px;
  background: var(--primary-orange);
  z-index: 2;
  transition: width 0.3s ease;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid #D5D0C8;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.step-item.active .step-circle {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(224, 86, 27, 0.3);
}

.step-item.completed .step-circle {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
}

.step-label {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

.step-item.active .step-label {
  color: var(--primary-orange);
  font-weight: 700;
}

.step-item.completed .step-label {
  color: var(--text-dark);
  font-weight: 600;
}

/* CARDS COMMON STYLING */
.card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.card-title-text h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.card-title-text p {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

.badge-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
}

/* DATE DROPDOWNS ROW */
.date-dropdowns-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.field-group label {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF;
  border: 1px solid var(--primary-orange-border);
  border-radius: var(--radius-sm);
  padding: 8px 24px 8px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.custom-select-wrapper select:focus,
.custom-select-wrapper select:hover {
  border-color: var(--primary-orange);
}

.custom-select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-dark);
  pointer-events: none;
}

/* SELECT TRIGGER BOXES */
.select-trigger-box {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--primary-orange-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.select-trigger-box:hover {
  border-color: var(--primary-orange);
}

.trigger-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12.5px;
}

.trigger-left.has-value {
  color: var(--text-dark);
  font-weight: 600;
}

.trigger-chevron {
  color: var(--text-dark);
  font-size: 12px;
}

/* TWO COLUMN GRID */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ESTIMATED TOTAL BANNER CARD */
.banner-total-card {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF2EB 100%);
  border: 1px solid var(--primary-orange-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.banner-total-left {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.badge-rupee-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--primary-orange-border);
}

.banner-total-text h4 {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.banner-total-text .price-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 1px 0;
}

.banner-total-text p {
  font-size: 9.5px;
  color: var(--text-muted);
}

.banner-art-right {
  position: absolute;
  right: 4px;
  bottom: -4px;
  opacity: 0.85;
  pointer-events: none;
}

.banner-art-right svg {
  width: 85px;
  height: auto;
}

/* PRICE BREAKDOWN CARD */
.breakdown-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.breakdown-row.discount-line {
  color: #10B981;
  font-weight: 600;
}

.breakdown-row.total-line {
  border-top: 1px dashed var(--border-color);
  padding-top: 8px;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.breakdown-row.total-line .val {
  color: var(--primary-orange);
}

/* ENHANCE EXPERIENCE SECTION (STEP 2) */
.section-header-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 10px 0;
}

.section-header-row h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.section-header-row p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ADDONS SERVICE CARDS */
.addon-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.addon-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.addon-card-img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.addon-card-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.addon-meta-header {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.addon-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.addon-info h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.addon-info p {
  font-size: 9.5px;
  color: var(--text-muted);
}

.addon-price-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 4px 0;
}

/* COUNTER CONTROL */
.counter-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAF8F5;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
  margin-top: auto;
}

.counter-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.counter-btn:hover {
  background: var(--primary-orange-light);
  color: var(--primary-orange);
}

.counter-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

/* PAYMENT OPTION CARDS (ADVANCE VS FULL) */
.payment-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.payment-opt-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s ease;
  position: relative;
}

.payment-opt-card.is-selected {
  border-color: var(--primary-orange);
  background: var(--primary-orange-light);
  box-shadow: 0 4px 12px rgba(224, 86, 27, 0.12);
}

.payment-opt-card input[type="radio"] {
  accent-color: var(--primary-orange);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.payment-opt-info {
  flex: 1;
}

.payment-opt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.payment-opt-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.payment-opt-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--primary-orange);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.payment-opt-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}

.payment-opt-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-orange);
}

/* SUMMARY BOX 2COL (STEP 2) */
.summary-box-2col {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF2EB 100%);
  border: 1px solid var(--primary-orange-border);
  border-radius: var(--radius-md);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.summary-col {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-col-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--primary-orange-border);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.summary-col-info h5 {
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.summary-col-info .val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.summary-col-info p {
  font-size: 8.5px;
  color: var(--text-muted);
}

/* FORM FIELD ELEMENTS */
.form-input, .form-textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--primary-orange-border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  font-size: 12.5px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
}

.form-textarea {
  min-height: 75px;
  resize: vertical;
}

/* OTP PHONE SECTION */
.phone-row {
  display: flex;
  gap: 8px;
}

.phone-row .form-input {
  flex: 1;
}

.btn-send-otp {
  padding: 0 14px;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 11.5px;
  cursor: pointer;
  white-space: nowrap;
}

.otp-box-wrapper {
  margin-top: 10px;
  background: #FAF8F5;
  border: 1px dashed var(--primary-orange-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: none;
}

.otp-inputs-grid {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.otp-digit-input {
  width: 36px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--primary-orange-border);
  border-radius: 6px;
  background: #FFFFFF;
  outline: none;
}

.otp-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
}

.status-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E5E7EB;
  margin-right: 4px;
}

.status-indicator.verified {
  background: #10B981;
}

/* STICKY BOTTOM FOOTER */
.bottom-footer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 90;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.footer-secure-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.footer-secure-tag svg {
  color: var(--primary-orange);
}

.btn-primary-cta {
  background: var(--primary-orange);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(224, 86, 27, 0.35);
  font-family: inherit;
}

.btn-primary-cta:hover {
  background: var(--primary-orange-hover);
}

/* RIGHT COLUMN: HERO BRANDING SECTION */
.col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary-orange);
  box-shadow: 0 8px 24px rgba(248, 180, 84, 0.25);
  width: fit-content;
}

.eyebrow-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #FACC15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #FFFFFF;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.01em;
}

.hero-title span {
  background: linear-gradient(120deg, #F97316, #FB7185, #A855F7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.5;
  max-width: 460px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #374151;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.15);
}

.pill span.icon {
  font-size: 13px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.btn-main {
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, #F97316, #FBBF24);
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  color: #1F2937;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(248, 148, 39, 0.45);
  transition: transform 0.2s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
}

.hero-note {
  font-size: 11px;
  color: #6B7280;
  max-width: 300px;
  line-height: 1.4;
}

.quote-card {
  margin-top: 8px;
  padding: 16px 18px 14px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid #FEE2C5;
  box-shadow: 0 14px 40px rgba(248, 180, 84, 0.22);
  position: relative;
}

.quote-main {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #111827;
  line-height: 1.35;
}

.quote-meta {
  font-size: 11px;
  color: #6B7280;
}

/* IN-TABLET MODAL OVERLAYS & SHEETS */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.45);
  backdrop-filter: blur(2px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  border-radius: 22px;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sheet-container {
  width: 100%;
  background: #FFFFFF;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 18px 16px 16px 16px;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.15);
}

.modal-overlay.is-open .sheet-container {
  transform: translateY(0);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 12px;
}

.sheet-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.sheet-header p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.sheet-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.sheet-body {
  overflow-y: auto;
  flex: 1;
  padding-bottom: 10px;
}

.sheet-footer {
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

/* 4-COLUMN TIME SLOTS GRID INSIDE TABLET MODAL */
.time-grid-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-slot-btn {
  padding: 9px 4px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.time-slot-btn:hover {
  border-color: var(--primary-orange-border);
  background: var(--primary-orange-light);
}

.time-slot-btn.is-selected {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: 0 4px 10px rgba(224, 86, 27, 0.3);
}

.people-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 6px;
}

.people-pill-btn {
  padding: 8px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: center;
}

.people-pill-btn:hover, .people-pill-btn.is-selected {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
}

.dishes-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F3EFE9;
}

.dishes-item-info h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.dishes-item-info p {
  font-size: 10px;
  color: var(--text-muted);
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 992px) {
  .page {
    padding: 18px 12px;
  }
  .shell {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .col-form {
    flex: 1 1 100%;
    max-width: 460px;
  }
  .col-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-tags {
    justify-content: center;
  }
  .hero-cta-row {
    justify-content: center;
  }
}
