/* ═══════════════════════════════════════════════════════
   catering-menu.css — Padma Veg Restaurant Catering Page
   ═══════════════════════════════════════════════════════ */

/* ── BASE RESET & VARIABLES ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:    #ff6b00;
  --brand2:   #ff8c42;
  --gold:     #e6b15f;
  --dark:     #1a1a2e;
  --dark2:    #16213e;
  --text:     #333;
  --text-light:#666;
  --text-muted:#aaa;
  --border:   #e8ddd5;
  --shadow-sm: 0 2px 12px rgba(255,107,0,.08);
  --shadow-md: 0 8px 32px rgba(255,107,0,.12);
  --shadow-lg: 0 18px 48px rgba(255,107,0,.18);
  --radius:   18px;
  --radius-sm:10px;
}

/* ── INNER BANNER ── */
/*.inner-banner {*/
/*  position: relative;*/
/*  padding: 110px 20px 70px;*/
/*  text-align: center;*/
/*  background: linear-gradient(135deg, var(--dark) 0%, #2d1b00 100%);*/
/*  overflow: hidden;*/
/*}*/
/*.inner-banner::before {*/
/*  content: "";*/
/*  position: absolute; inset: 0;*/
/*  background: radial-gradient(ellipse at 60% 40%, rgba(255,107,0,.25) 0%, transparent 65%);*/
/*}*/
/*.inner-banner h1 { font-size: clamp(32px,6vw,60px); color: #fff; position: relative; z-index:1; margin-bottom:12px; }*/
/*.inner-banner p  { color: rgba(255,255,255,.7); font-size:16px; position:relative; z-index:1; }*/
/*.inner-banner p span { color: var(--gold); font-style:italic; }*/

/* ── STEPS BAND ── */
.steps-band { background: var(--dark); padding:18px 20px; display:flex; justify-content:center; gap:0; overflow-x:auto; }
.step-item  { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.5); font-size:13px; font-weight:600; white-space:nowrap; padding:0 16px; }
.step-item.active { color: var(--gold); }
.step-num   { width:26px; height:26px; border-radius:50%; display:grid; place-items:center; font-size:11px; font-weight:800; flex-shrink:0; }
.step-item.active .step-num { background: var(--gold); border-color: var(--gold); color:#fff; }
.step-arrow { color:rgba(255,255,255,.2); padding:0 4px; }

/* ── SECTION WRAPPERS ── */
.page-section { padding:60px 20px; max-width:1200px; margin:0 auto; }
.section-label { display:inline-block; background:linear-gradient(135deg,var(--brand),var(--brand2)); color:#fff; font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; padding:5px 18px; border-radius:30px; margin-bottom:14px; }
.section-title { font-size: clamp(26px,4vw,38px); font-weight:900; margin-bottom:8px; }
.section-desc  { font-size:15px; max-width:520px; }
.section-head  { margin-bottom:36px; }

/* ═══════════════════════════════════════════════════════
   STEP 1 — TERMS
═══════════════════════════════════════════════════════ */
.terms-section   { padding:70px 20px; }
.terms-inner     { max-width:1000px; margin:0 auto; }
.terms-section .section-title { color:#fff; }
.terms-section .section-desc  { color:rgba(255,255,255,.65); }
.terms-section .section-head  { text-align:center; }
.terms-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; }
.terms-card { background:rgba(255,255,255,.07); border:1.5px solid rgba(255,140,66,.25); border-radius:var(--radius-sm); padding:20px 22px; display:flex; align-items:flex-start; gap:14px; transition:border-color .2s,background .2s; }
.terms-card:hover { border-color:var(--brand2); background:rgba(255,107,0,.08); }
.terms-icon { font-size:26px; flex-shrink:0; margin-top:2px; }
.terms-text { font-size:14px; line-height:1.6; }
.terms-text strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   STEP 2 — BUILD YOUR MENU  (select-based)
═══════════════════════════════════════════════════════ */
.build-section { background: var(--bg-warm); }

/* Category card */
.lc_category_block {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: box-shadow .25s;
}
.lc_category_block:hover { box-shadow: var(--shadow-md); }

/* Header banner */
.lc_category_header { position:relative; height:100px; overflow:hidden; }
.lc_category_header img { width:100%; height:100%; object-fit:cover; display:block; }
.lc_category_overlay {
  position:absolute; inset:0;
  background: linear-gradient(to right, rgba(10,60,40,.95) 0%, rgba(10,60,40,.7) 55%, rgba(10,60,40,.15) 100%);
}
.lc_category_info { position:absolute; left:20px; right:20px; top:50%; transform:translateY(-50%); display:flex; align-items:center; justify-content:space-between; }
.lc_category_title { font-size:22px; font-weight:800; color:#fff; letter-spacing:.4px; }
.lc_item_counter {
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(6px); color:#fff; font-size:12px; font-weight:600;
  padding:4px 12px; border-radius:30px; letter-spacing:.3px;
}
.lc_item_counter.full { background:rgba(76,175,80,.25); border-color:rgba(76,175,80,.6); }

/* Selects wrapper */
.lc_selects_wrap { padding:16px 18px; display:flex; flex-direction:column; gap:12px; }

/* Individual select row */
.lc_select_row { display:flex; flex-direction:column; gap:6px; transition:opacity .25s; }
.lc_select_row.lc_select_locked { opacity:.45; pointer-events:none; }

.lc_select_label {
  display:flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

/* Option badge */
.lc_opt_badge {
  background:linear-gradient(135deg, rgba(255,107,0,.3), rgba(255,140,66,.2));
  border:1px solid rgba(255,140,66,.4);
  color:var(--gold);
  font-size:10px; font-weight:800; letter-spacing:1px; text-transform:uppercase;
  padding:3px 10px; border-radius:20px;
}

/* Lock hint */
.lc_lock_hint { font-size:10px; color:rgba(255,255,255,.35); font-style:italic; }

/* Select wrapper (positions arrow + clear) */
.lc_select_wrap { position:relative; display:flex; align-items:center; }

/* The <select> element */
.lc_select {
  width:100%;
  appearance:none; -webkit-appearance:none;
  background:rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.15);
  border-radius:10px;
  color:#fff;
  font-size:13px; font-weight:500;
  padding:10px 70px 10px 14px;
  outline:none;
  cursor:pointer;
  transition:border-color .2s, background .2s;
}
.lc_select:hover:not(:disabled) { border-color:rgba(255,140,66,.5); background:rgba(255,255,255,.09); }
.lc_select:focus:not(:disabled) { border-color:var(--brand2); background:rgba(255,255,255,.1); box-shadow:0 0 0 3px rgba(255,107,0,.12); }
.lc_select:disabled { opacity:.45; cursor:not-allowed; }

/* Dropdown arrow */
.lc_select_arrow {
  position:absolute; right:38px;
  color:rgba(255,255,255,.4); font-size:12px; pointer-events:none;
}

/* Item image preview (shown below select on selection) */
.lc_item_img_preview {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,140,66,.3);
  border-radius: 10px;
  animation: previewPop .22s cubic-bezier(.34,1.56,.64,1);
}
.lc_item_img_preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 9px;
  border: 2px solid rgba(255,140,66,.45);
  flex-shrink: 0;
}
.lc_img_name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Clear button */
.lc_clear_btn {
  position:absolute; right:8px;
  width:22px; height:22px;
  background:rgba(255,107,0,.25);
  border:1px solid rgba(255,107,0,.4);
  border-radius:50%;
  color:var(--brand2); font-size:10px; font-weight:800;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.lc_clear_btn:hover { background:rgba(255,107,0,.45); color:#fff; }

/* Selected state highlight on the select */
.lc_select:not([value=""]):not(:disabled) { border-color:rgba(76,175,80,.5); }
.lc_select option { background:#1e2a1e; color:#fff; }
.lc_select option:disabled { color:rgba(255,255,255,.3); }
.lc_select option[hidden] { display:none; }

/* ═══════════════════════════════════════════════════════
   CHECKBOX GRID CATEGORY  (e.g. Breakfast)
═══════════════════════════════════════════════════════ */

/* Grid wrapper inside card */
.lc_cb_wrap {
  padding: 14px 16px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

/* Each checkbox item */
.lc_cb_item { position: relative; }

/* Hide native checkbox */
.lc_cb_item_input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* The visible card label */
.lc_cb_item_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 10px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
  position: relative;
  text-align: center;
  min-height: 120px;
}
.lc_cb_item_label:hover {
  border-color: rgba(255,140,66,.5);
  background: rgba(255,107,0,.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,107,0,.15);
}

/* Checked state */
.lc_cb_item_input:checked + .lc_cb_item_label {
  border-color: var(--gold);
  background: rgba(230,177,95,.14);
  box-shadow: 0 0 0 3px rgba(230,177,95,.2), 0 6px 20px rgba(255,107,0,.18);
  transform: translateY(-2px);
}

/* Image container */
.lc_cb_img_wrap {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.12);
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.lc_cb_item_input:checked + .lc_cb_item_label .lc_cb_img_wrap {
  border-color: var(--gold);
}
.lc_cb_img_wrap--noimg {
  background: rgba(255,107,0,.1);
}
.lc_cb_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s;
}
.lc_cb_item_label:hover .lc_cb_img {
  transform: scale(1.06);
}
.lc_cb_img_placeholder {
  font-size: 24px;
  line-height: 1;
}

/* Item info */
.lc_cb_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.lc_cb_name {
  font-size: 12px;
  font-weight: 700;
  color: #e8f5e9;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
}
.lc_cb_item_input:checked + .lc_cb_item_label .lc_cb_name {
  color: var(--gold);
}

/* Option label badge on each checkbox card */
.lc_cb_opt-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
}
.lc_cb_item_input:checked + .lc_cb_item_label .lc_cb_opt-badge {
  color: rgba(230,177,95,.7);
  background: rgba(230,177,95,.12);
  border-color: rgba(230,177,95,.3);
}

/* Checkmark badge (top-right of card) */
.lc_cb_check {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.lc_cb_check_icon {
  font-size: 10px;
  color: transparent;
  font-weight: 900;
  line-height: 1;
  transition: color .15s;
}
.lc_cb_item_input:checked + .lc_cb_item_label .lc_cb_check {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(230,177,95,.4);
}
.lc_cb_item_input:checked + .lc_cb_item_label .lc_cb_check_icon {
  color: #fff;
}

/* Footer — selected tags + clear all */
.lc_cb_footer {
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px 14px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.lc_cb_selected_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.lc_cb_selected_tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,177,95,.18);
  border: 1px solid rgba(230,177,95,.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px 3px 10px;
  border-radius: 14px;
  animation: previewPop .18s ease;
}
.lc_cb_tag_remove {
  background: none;
  border: none;
  color: rgba(230,177,95,.6);
  font-size: 10px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.lc_cb_tag_remove:hover { color: #fff; }

/* Clear all button */
.lc_cb_clear_all {
  flex-shrink: 0;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.3);
  color: var(--brand2);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.lc_cb_clear_all:hover {
  background: rgba(255,107,0,.3);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   STEP 3 — ADD ONS
═══════════════════════════════════════════════════════ */
.lc_addons_section { background:rgba(255,255,255,.05); backdrop-filter:blur(10px); border-radius:var(--radius); box-shadow:0 6px 18px rgba(0,0,0,.2); padding:32px; border:1px solid rgba(255,255,255,.08); }
.lc_addons_title   { font-size:22px; font-weight:900; color:#e8f5e9; margin-bottom:24px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.1); }
.lc_addons_grid    { display:flex; flex-wrap:wrap; gap:10px; }
.lc_addon_item     { position:relative; }
.lc_checkbox_addon { display:none; }
.lc_addon_label    { display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border:1px solid rgba(255,255,255,.2); border-radius:30px; color:#c8e6c9; font-size:13px; font-weight:600; cursor:pointer; user-select:none; transition:all .2s ease; }
.lc_addon_label:hover { border-color:var(--gold); color:#fff; background:rgba(102,187,106,.15); }
.lc_checkbox_addon:checked + .lc_addon_label { background:linear-gradient(135deg,rgba(255,243,224,1),rgba(255,224,178,1)); border-color:var(--gold); color:#7a4500; box-shadow:0 8px 20px rgba(255,107,0,.15); }
.addon-price { font-size:11px; opacity:.7; }

/* ═══════════════════════════════════════════════════════
   STEP 4 — SPECIAL PACKAGES
═══════════════════════════════════════════════════════ */
.special-section .section-title { color:#fff; }
.special-section .section-desc  { color:rgba(255,255,255,.65); max-width:100%; }
.special-section .section-head  { text-align:center; }

.special-cards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.special-card { background:rgba(255,255,255,.06); border:2px solid rgba(255,140,66,.25); border-radius:var(--radius); overflow:hidden; cursor:pointer; transition:all .3s; position:relative; display:flex; flex-direction:column; user-select:none; }
.special-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(255,140,66,.5); }
.special-card.selected { border-color:var(--gold); background:rgba(230,177,95,.12); box-shadow:0 0 0 3px rgba(230,177,95,.2),var(--shadow-lg); }

.special-card-check { position:absolute; top:14px; right:14px; width:28px; height:28px; border-radius:50%; border:2px solid rgba(255,255,255,.3); background:rgba(255,255,255,.1); display:grid; place-items:center; transition:all .2s; font-size:13px; color:transparent; }
.special-card.selected .special-card-check { background:var(--gold); border-color:var(--gold); color:#fff; }

.special-card-header { padding:22px 24px 18px; background:linear-gradient(135deg,rgba(230,177,95,.3),rgba(255,107,0,.2)); }
.special-card-name   { font-size:18px; font-weight:900; color:#fff; margin:0 36px 4px 0; line-height:1.3; }
.special-card-subtitle { font-size:12px; color:rgba(255,255,255,.55); font-style:italic; margin:0; }
.special-card-price-badge { display:inline-flex; align-items:center; gap:4px; background:var(--gold); color:var(--dark); font-size:13px; font-weight:800; padding:4px 14px; border-radius:20px; margin-top:10px; }
.special-card-body  { padding:18px 24px 22px; flex:1; }
.special-items-list { list-style:none; }
.special-items-list li { padding:6px 0; border-bottom:1px dashed rgba(255,255,255,.1); font-size:13px; display:flex; align-items:center; gap:8px; }
.special-items-list li:last-child { border-bottom:none; }
.special-items-list li::before { content:"✦"; color:var(--gold); font-size:9px; flex-shrink:0; }

.special-selected-band { background:rgba(230,177,95,.15); border:1.5px solid rgba(230,177,95,.3); border-radius:var(--radius-sm); padding:14px 20px; margin-top:24px; display:none; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.special-selected-band.visible { display:flex; }
.special-selected-band .label { font-size:13px; color:rgba(255,255,255,.65); font-weight:600; }
.special-selected-band .val   { font-size:20px; font-weight:900; color:var(--gold); }
.special-selected-tags { display:flex; flex-wrap:wrap; gap:6px; flex:1; min-width:0; }
.special-tag { background:rgba(230,177,95,.25); border:1px solid rgba(230,177,95,.4); color:var(--gold); font-size:12px; font-weight:700; padding:3px 12px; border-radius:14px; animation:previewPop .2s ease; }

/* ═══════════════════════════════════════════════════════
   STEP 5 — PLACE YOUR ORDER
═══════════════════════════════════════════════════════ */
.order-section .section-head { text-align:center; }
.order-section .section-desc { margin:0 auto; }

.order-card { background:var(--bg-card); border-radius:var(--radius); box-shadow:var(--shadow-md); padding:36px; border:1px solid rgba(230,177,95,.2); max-width:860px; margin:0 auto; }

.price-summary-bar { background:linear-gradient(135deg,var(--dark),var(--dark2)); border-radius:14px; padding:20px 24px; margin-bottom:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.psb-item     { display:flex; flex-direction:column; gap:4px; }
.psb-label    { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:1px; }
.psb-value    { font-size:20px; font-weight:900; color:var(--gold); }
.psb-item:last-child .psb-value { color:#fff; font-size:26px; }

.order-summary-box { background:#fff9f4; border:1.5px solid rgba(255,107,0,.12); border-radius:var(--radius-sm); padding:18px 20px; margin-bottom:24px; }
.osb-title  { font-size:11px; font-weight:800; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:12px; }
.osb-tags   { display:flex; flex-wrap:wrap; gap:6px; }
.osb-tag    { background:#fff; border:1px solid rgba(255,107,0,.25); color:var(--brand); font-size:12px; font-weight:600; padding:3px 11px; border-radius:14px; }
.osb-empty  { font-size:13px; color:var(--text-muted); font-style:italic; }

.field-group  { margin-bottom:22px; }
.field-grid   { display:grid; gap:14px; }
.field-grid.cols2 { grid-template-columns:1fr 1fr; }
.field-grid.cols3 { grid-template-columns:1fr 1fr 1fr; }
.field        { display:flex; flex-direction:column; gap:5px; }
.field label  { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; }
.field input  { padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--radius-sm); font-size:14px; color:var(--text); background:#fff; outline:none; transition:border-color .2s,box-shadow .2s; width:100%; }
.field input:focus { border-color:var(--brand); box-shadow:0 0 0 3px rgba(255,107,0,.1); }
.field input[readonly] { background:#f9f4ef; color:var(--brand); font-weight:700; cursor:default; }
.field.full   { grid-column:1 / -1; }

.pax-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }

.total-display { background:linear-gradient(135deg,var(--dark),var(--dark2)); border-radius:14px; padding:16px 22px; display:flex; justify-content:space-between; align-items:center; margin:16px 0 24px; }
.total-display .lbl { font-size:13px; color:rgba(255,255,255,.55); font-weight:600; }
.total-display .val { font-size:28px; font-weight:900; color:var(--brand); }

.divider       { border:none; border-top:2px solid #f5ede4; margin:22px 0; }
.customer-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }

.submit-btn { width:100%; padding:16px; background:linear-gradient(135deg,var(--brand),var(--brand2)); color:#fff; border:none; border-radius:14px; font-size:16px; font-weight:800; cursor:pointer; letter-spacing:.5px; display:flex; align-items:center; justify-content:center; gap:10px; transition:opacity .2s,transform .2s; box-shadow:0 6px 22px rgba(255,107,0,.3); }
.submit-btn:hover    { opacity:.92; transform:translateY(-2px); }
.submit-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; }

/* ── utility modifiers ── */
.section-head--center  { text-align:center; }
.section-title--light  { color:#fff; }
.section-desc--light   { color:rgba(255,255,255,.65); max-width:100%; }
.section-desc--center  { margin:0 auto; }
.psb-item--highlight .psb-value { color:#fff; font-size:26px; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes previewPop    { from { opacity:0; transform:scale(.6); } to { opacity:1; transform:scale(1); } }
@keyframes fadeInOverlay { from { opacity:0; } to { opacity:1; } }
@keyframes slideUpCard   { from { transform:translateY(40px); opacity:0; } to { transform:translateY(0); opacity:1; } }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .field-grid.cols3 { grid-template-columns:1fr 1fr; }
  .price-summary-bar { grid-template-columns:1fr 1fr; }
  .lc_cb_wrap { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

@media (max-width: 600px) {
  .field-grid.cols2,.field-grid.cols3,.pax-row,.customer-grid { grid-template-columns:1fr; }
  .field.full     { grid-column:1; }
  .order-card     { padding:22px 16px; }
  .lc_addons_section { padding:22px 16px; }
  .steps-band     { gap:0; padding:14px 10px; }
  .step-item      { padding:0 8px; font-size:11px; }
  .price-summary-bar { grid-template-columns:1fr 1fr; }
  .special-cards-grid { grid-template-columns:1fr; }
  .lc_selects_wrap { padding:12px 12px; }
  .lc_cb_wrap { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px; }
  .lc_cb_item_label { min-height: 100px; padding: 10px 8px 8px; }
  .lc_cb_img_wrap { width: 48px; height: 48px; }
}