/* =============================================================================
 * Linkorae Mobile Polish v1
 * -----------------------------------------------------------------------------
 * Silicon Valley-grade mobile UI overhaul. PURE visual/interaction polish.
 * No business logic, no markup, no copy changes.
 *
 * Design tokens
 *   - 8px grid (all spacing uses 8/16/24/32)
 *   - 12px radius (cards/inputs/buttons)
 *   - 48px min-touch target
 *   - Type ramp 22/18/16/13
 *   - Brand colors preserved: #0A1628 navy · #FF6B00 orange · white
 *   - Semantic state colors added (success/warning/info/error)
 *
 * Scope: @media (max-width: 640px) ONLY. PC untouched.
 * ============================================================================= */

/* ---------- Shared tokens (mobile-scoped) ---------- */
@media (max-width: 640px) {
  :root {
    --lk-navy:        #0A1628;
    --lk-navy-2:      #13213B;
    --lk-orange:      #FF6B00;
    --lk-orange-soft: #FFF4E1;
    --lk-bg:          #F8F9FA;
    --lk-surface:     #FFFFFF;
    --lk-border:      #E5E9F2;
    --lk-border-2:    #F0F2F7;
    --lk-text:        #0A1628;
    --lk-text-2:      #5A6A82;
    --lk-text-3:      #8A94A6;
    --lk-success:     #1E7F4F;
    --lk-success-bg:  #E6F4EC;
    --lk-warning:     #B25900;
    --lk-warning-bg:  #FFF4E6;
    --lk-info:        #1863B2;
    --lk-info-bg:     #E6F0FA;
    --lk-error:       #B23A48;
    --lk-error-bg:    #FDECEF;
    --lk-r-card:      12px;
    --lk-r-input:     12px;
    --lk-r-pill:      999px;
    --lk-shadow-card: 0 1px 2px rgba(10, 22, 40, 0.04), 0 2px 12px rgba(10, 22, 40, 0.06);
    --lk-shadow-cta:  0 6px 18px rgba(245, 166, 35, 0.28);
  }

  /* ---------- Global smoothing ---------- */
  html, body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: var(--lk-bg);
  }
  body { font-size: 16px; line-height: 1.5; color: var(--lk-text); }

  /* Kill any accidental horizontal scroll */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* ---------- Typography ramp ---------- */
  h1, .lk-h1, .hero-title { font-size: 22px; line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; }
  h2, .lk-h2              { font-size: 20px; line-height: 1.3;  font-weight: 700; letter-spacing: -0.005em; }
  h3, .lk-h3              { font-size: 18px; line-height: 1.35; font-weight: 600; }
  p,  .lk-p               { font-size: 16px; line-height: 1.5;  }
  small, .lk-hint         { font-size: 13px; line-height: 1.4; color: var(--lk-text-2); }
  /* Never below 13px */
  .text-xs, .xs { font-size: 13px !important; }

  /* ========================================================================
     1. HOME / MARKETING pages (.btn, .hero, .nav-*)
     ======================================================================== */

  /* Navigation bar: compact, sticky, safe-area aware */
  .navbar {
    height: 56px;
    padding: 0 16px;
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
  }
  .nav-inner { padding: 0; gap: 12px; }
  .nav-logo-text .brand-name { font-size: 15px; font-weight: 700; }
  .nav-logo-text .brand-tag  { font-size: 11px; }
  .nav-cta { display: none; }       /* CTA goes to bottom nav instead */
  .nav-toggle {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
  }

  /* Hero */
  .hero {
    padding: 88px 16px 32px;
    min-height: auto;
  }
  .hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.30) 0%, rgba(10,22,40,0.55) 100%);
    pointer-events: none;
  }
  .hero-content { padding: 0; max-width: 100%; }
  .hero-badge {
    display: inline-flex !important; align-items: center; gap: 6px;
    padding: 6px 12px !important; border-radius: var(--lk-r-pill) !important;
    font-size: 13px !important; line-height: 1.4 !important;
    font-weight: 600 !important;
    background: rgba(245, 166, 35, 0.18) !important;
    color: var(--lk-orange) !important;
    border: 1px solid rgba(245, 166, 35, 0.3);
  }
  .hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin: 16px 0 8px !important;
    max-width: 100%;
  }
  .hero-title br { display: none; }   /* let it wrap naturally */
  .hero-subtitle {
    font-size: 15px !important;
    line-height: 1.5 !important;
    max-width: 100%;
    color: rgba(255,255,255,0.82) !important;
    margin-bottom: 24px !important;
    /* clamp to 3 lines max */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hero CTA — full width, fixed height */
  .hero-actions {
    display: flex; flex-direction: column; gap: 12px;
    width: 100%;
  }
  .hero-actions .btn,
  .hero-actions .btn-lg {
    width: 100% !important;
    max-width: none !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: var(--lk-r-card) !important;
    display: inline-flex !important; align-items: center; justify-content: center; gap: 8px;
  }

  /* Sections */
  section { padding: 40px 0; }
  .section-header { padding: 0 16px; margin-bottom: 24px; text-align: center; }
  .section-title  { font-size: 22px !important; line-height: 1.25 !important; }
  .section-subtitle {
    font-size: 15px !important; line-height: 1.5 !important;
    color: var(--lk-text-2);
    max-width: 100%;
  }

  /* Service / feature grids: vertical 1-col */
  .services-grid, .features-grid, .stats-grid, .testimonials-grid, .cases-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }

  /* Service cards */
  .service-card, .feature-card, .case-card {
    width: 100%;
    border-radius: var(--lk-r-card);
    padding: 20px 16px;
    background: var(--lk-surface);
    border: 1px solid var(--lk-border);
    box-shadow: var(--lk-shadow-card);
  }
  .service-card h3, .feature-card h3 { font-size: 17px; margin: 12px 0 6px; }
  .service-card p, .feature-card p   { font-size: 14px; line-height: 1.5; color: var(--lk-text-2); }
  .service-icon, .feature-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--lk-orange-soft);
    border-radius: 10px;
    font-size: 22px;
  }
  /* Tag in top-left of service card */
  .service-tag, .card-tag, .service-card .tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px; font-size: 11px; font-weight: 700;
    background: var(--lk-navy); color: #fff; border-radius: 999px;
    letter-spacing: 0.4px; text-transform: uppercase;
  }

  /* Horizontal scrollers for cargo category strips */
  .cargo-icons, .category-strip {
    display: flex; gap: 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 8px 0 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .cargo-icons::-webkit-scrollbar,
  .category-strip::-webkit-scrollbar { display: none; }
  .cargo-icons > *, .category-strip > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 12px;
    background: var(--lk-bg);
    border-radius: var(--lk-r-pill);
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid var(--lk-border);
  }

  /* ---------- Bottom nav (new) ---------- */
  #lkBottomNav, .lk-bnav {
    position: fixed; left: 0; right: 0; bottom: 0;
    height: 56px;
    background: var(--lk-surface);
    border-top: 1px solid var(--lk-border);
    display: flex; align-items: stretch;
    z-index: 50;
    padding-bottom: env(safe-area-inset-bottom);
  }
  #lkBottomNav a, .lk-bnav a {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    font-size: 11px; font-weight: 600;
    color: var(--lk-text-3);
    text-decoration: none;
    padding: 6px 4px;
    min-height: 48px;
  }
  #lkBottomNav a .ic, .lk-bnav a .ic { font-size: 20px; line-height: 1; }
  #lkBottomNav a.active, .lk-bnav a.active { color: var(--lk-orange); }
  /* Give bottom padding so page content isn't hidden behind the nav */
  body.has-bnav { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

  /* ========================================================================
     2. QUOTE / CHECKOUT / MY-ORDERS pages (.lk-*, .mo-*)
     ======================================================================== */

  /* Topbar */
  .lk-topbar {
    height: 56px;
    padding: 0 8px;
    background: var(--lk-surface);
    border-bottom: 1px solid var(--lk-border);
    position: sticky; top: 0; z-index: 40;
  }
  .lk-topbar-back, .mo-logo {
    min-width: 48px; min-height: 48px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .lk-topbar-title { font-size: 16px; font-weight: 700; }
  .lk-topbar-sub   { font-size: 12px; color: var(--lk-text-2); }

  /* Hero (quote) */
  .lk-hero {
    padding: 24px 16px 32px !important;
    border-radius: 0 0 16px 16px;
  }
  .lk-hero h1 { font-size: 22px !important; line-height: 1.25 !important; margin-bottom: 8px !important; }
  .lk-hero p  { font-size: 14px !important; line-height: 1.5 !important;  }

  /* Container */
  .lk-container, .mo-container {
    padding: 16px !important;
    max-width: 100%;
  }

  /* Cards */
  .lk-card, .mo-order, .mo-card {
    border-radius: var(--lk-r-card) !important;
    padding: 20px 16px !important;
    margin-bottom: 16px !important;
    background: var(--lk-surface);
    border: 1px solid var(--lk-border);
    box-shadow: var(--lk-shadow-card);
  }
  .lk-card h2, .lk-card h3 { font-size: 18px; margin-bottom: 8px; }
  .lk-card .lk-p, .lk-card p { font-size: 14px; color: var(--lk-text-2); }

  /* Form labels + inputs (48px min height) */
  .lk-label, label, .lk-form-label {
    display: block;
    font-size: 14px; font-weight: 600; color: var(--lk-text);
    margin-bottom: 6px;
  }
  .lk-input, .lk-select, .lk-textarea,
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], input[type="password"], input[type="search"],
  select, textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 16px;                 /* prevent iOS zoom on focus */
    line-height: 1.4;
    background: var(--lk-surface);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-r-input);
    color: var(--lk-text);
    transition: border-color .15s ease, box-shadow .15s ease;
    -webkit-appearance: none; appearance: none;
    box-sizing: border-box;
  }
  textarea { min-height: 96px; padding: 12px 14px; resize: vertical; }
  .lk-input:focus, .lk-select:focus, .lk-textarea:focus,
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--lk-orange);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
  }
  .lk-input--error,
  input.lk-error, select.lk-error, textarea.lk-error { border-color: var(--lk-error); }
  .lk-field { margin-bottom: 12px; }
  .lk-hint, .lk-helper {
    display: block; margin-top: 6px;
    font-size: 13px; color: var(--lk-text-3); line-height: 1.4;
  }
  .lk-error-msg {
    display: block; margin-top: 6px;
    font-size: 13px; color: var(--lk-error); line-height: 1.4;
  }

  /* Select chevron */
  select, .lk-select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235A6A82'><path d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%235A6A82' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
  }

  /* Choice cards (cargo type / ship speed) */
  .lk-picker-3, .lk-choice-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .lk-choice, .lk-picker-card, .lk-choice-card {
    width: 100%;
    min-height: 64px;
    padding: 14px 16px !important;
    border: 1px solid var(--lk-border) !important;
    border-radius: var(--lk-r-card) !important;
    background: var(--lk-surface) !important;
    display: flex; align-items: center; gap: 12px;
    cursor: pointer;
    transition: all .15s ease;
  }
  .lk-choice .icon, .lk-picker-card .icon, .lk-choice-card .icon {
    font-size: 24px; line-height: 1; flex: 0 0 auto;
  }
  .lk-choice .title, .lk-picker-card .title, .lk-choice-card .title {
    font-size: 15px; font-weight: 700; color: var(--lk-text);
  }
  .lk-choice .desc, .lk-picker-card .desc, .lk-choice-card .desc {
    font-size: 13px; color: var(--lk-text-2); line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  }
  .lk-choice.is-active, .lk-choice.active,
  .lk-picker-card.is-active, .lk-picker-card.active,
  .lk-choice-card.is-active, .lk-choice-card.active {
    border-color: var(--lk-orange) !important;
    background: var(--lk-orange-soft) !important;
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
  }

  /* Buttons */
  .lk-btn, .btn {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 16px; font-weight: 700;
    border-radius: var(--lk-r-card);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: transform .06s ease, box-shadow .15s ease, background .15s ease;
  }
  .lk-btn:active, .btn:active { transform: scale(0.98); }
  .lk-btn-primary, .btn-primary,
  .lk-btn.lk-btn-primary, .btn.btn-primary {
    background: var(--lk-orange); color: #fff; border: 0;
    box-shadow: var(--lk-shadow-cta);
  }
  .lk-btn-secondary, .btn-secondary, .btn-outline,
  .lk-btn.lk-btn-secondary {
    background: var(--lk-surface); color: var(--lk-navy);
    border: 1px solid var(--lk-border);
  }

  /* Primary CTA — full width, 56px, fixed to bottom on quote/checkout */
  .lk-btn-primary-xl, .lk-btn-cta, .btn-cta-xl, .lk-btn.lk-btn-full {
    width: 100%;
    height: 56px;
    font-size: 16px; font-weight: 700;
  }

  /* Sticky bottom CTA bar (apply by adding .lk-sticky-cta around the primary button) */
  .lk-sticky-cta {
    position: sticky; bottom: 0;
    background: linear-gradient(180deg, rgba(248,249,250,0) 0%, var(--lk-bg) 30%);
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
    margin: 24px -16px -16px;
    z-index: 20;
  }

  /* Progress bar (for multi-step quote) */
  .lk-progress {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--lk-surface);
    border-bottom: 1px solid var(--lk-border);
    font-size: 13px; color: var(--lk-text-2);
  }
  .lk-progress__track {
    flex: 1; height: 4px; border-radius: 2px;
    background: var(--lk-border-2); overflow: hidden;
  }
  .lk-progress__fill {
    height: 100%; background: var(--lk-orange);
    transition: width .3s cubic-bezier(.4,0,.2,1);
  }
  .lk-progress__label { font-weight: 700; color: var(--lk-text); }

  /* ---------- QUOTE BREAKDOWN / RESULTS ---------- */
  .lk-quote-hero {
    background: linear-gradient(135deg, var(--lk-navy) 0%, var(--lk-navy-2) 100%);
    color: #fff;
    padding: 24px 16px;
    border-radius: var(--lk-r-card);
    margin-bottom: 16px;
  }
  .lk-quote-hero__label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.4px; text-transform: uppercase; }
  .lk-quote-hero__total { font-size: 36px; font-weight: 800; color: var(--lk-orange); letter-spacing: -0.02em; margin: 4px 0 8px; }
  .lk-quote-hero__meta  { font-size: 14px; color: rgba(255,255,255,0.8); }

  /* Line items */
  .lk-lineitem {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--lk-border-2);
    font-size: 14px;
  }
  .lk-lineitem:last-child { border-bottom: 0; }
  .lk-lineitem__lbl { color: var(--lk-text-2); }
  .lk-lineitem__val { font-weight: 600; color: var(--lk-text); }
  .lk-lineitem--total {
    padding: 16px;
    margin: 8px -16px -8px;
    background: var(--lk-orange-soft);
    border-top: 1px solid var(--lk-orange);
    border-bottom: 0;
    font-size: 16px;
  }
  .lk-lineitem--total .lk-lineitem__val { font-size: 22px; color: var(--lk-orange); font-weight: 800; }

  /* Collapsible surcharges */
  details.lk-collapse { border: 1px solid var(--lk-border); border-radius: var(--lk-r-card); padding: 0; overflow: hidden; }
  details.lk-collapse[open] { background: var(--lk-surface); }
  details.lk-collapse > summary {
    list-style: none;
    padding: 14px 16px;
    font-size: 14px; font-weight: 600; color: var(--lk-text);
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
  }
  details.lk-collapse > summary::-webkit-details-marker { display: none; }
  details.lk-collapse > summary::after {
    content: "▾"; color: var(--lk-text-3); transition: transform .15s ease;
  }
  details.lk-collapse[open] > summary::after { transform: rotate(180deg); }
  details.lk-collapse > *:not(summary) { padding: 0 16px 14px; }

  /* ---------- MY ORDERS ---------- */
  .mo-hero { padding: 20px 16px !important; }
  .mo-hero h1 { font-size: 22px !important; }
  .mo-hero p  { font-size: 14px !important; }

  .mo-toolbar, .mo-filters {
    position: sticky; top: 56px; z-index: 30;
    background: var(--lk-bg);
    padding: 12px 16px;
    display: flex; gap: 8px; align-items: center;
    flex-wrap: wrap;
  }
  .mo-search, .mo-toolbar input[type="search"] {
    flex: 1 1 100%;
    min-height: 44px;
    padding: 10px 14px 10px 40px;
    background: var(--lk-surface) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' stroke='%235A6A82' stroke-width='1.6' fill='none' stroke-linecap='round'><circle cx='9' cy='9' r='6'/><path d='M14 14l3 3'/></svg>") no-repeat 12px center;
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-r-pill);
    font-size: 15px;
  }
  .mo-order {
    padding: 16px !important;
  }
  .mo-order__id     { font-size: 13px; color: var(--lk-text-3); letter-spacing: 0.4px; font-family: ui-monospace, monospace; }
  .mo-order__title  { font-size: 16px; font-weight: 700; margin: 4px 0 8px; color: var(--lk-text); }
  .mo-order__row    {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 8px;
    font-size: 14px; color: var(--lk-text-2);
  }
  .mo-order__price  { font-size: 18px; font-weight: 700; color: var(--lk-navy); }

  /* Status chips */
  .lk-chip, .mo-status {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px;
    border-radius: var(--lk-r-pill);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.3px;
  }
  .lk-chip--success, .mo-status--delivered,
  .mo-status--success { background: var(--lk-success-bg); color: var(--lk-success); }
  .lk-chip--warning, .mo-status--pending,
  .mo-status--review { background: var(--lk-warning-bg); color: var(--lk-warning); }
  .lk-chip--info, .mo-status--in_transit,
  .mo-status--shipping, .mo-status--shipped { background: var(--lk-info-bg); color: var(--lk-info); }
  .lk-chip--error, .mo-status--cancelled,
  .mo-status--failed { background: var(--lk-error-bg); color: var(--lk-error); }
  .lk-chip--default { background: var(--lk-bg); color: var(--lk-text-2); }

  /* ---------- SUCCESS PAGE ---------- */
  .lk-success-card {
    text-align: center;
    padding: 40px 20px 32px;
    background: var(--lk-surface);
    border-radius: var(--lk-r-card);
    margin: 16px;
  }
  .lk-success-card__icon {
    width: 72px; height: 72px;
    margin: 0 auto 16px;
    background: var(--lk-success-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
  }
  .lk-success-card__title  { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
  .lk-success-card__order  { font-size: 13px; color: var(--lk-text-2); font-family: ui-monospace, monospace; }
  .lk-success-steps { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
  .lk-success-steps li {
    display: flex; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid var(--lk-border-2);
    font-size: 14px; line-height: 1.4;
  }
  .lk-success-steps li:last-child { border-bottom: 0; }
  .lk-success-steps .num {
    width: 24px; height: 24px; flex: 0 0 24px;
    border-radius: 50%;
    background: var(--lk-navy); color: #fff;
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }

  /* ---------- CUSTOMER SHELL (drawer) — polish only ---------- */
  .cs-topbar {
    height: 56px !important;
    padding: 0 12px !important;
    background: var(--lk-surface) !important;
    border-bottom: 1px solid var(--lk-border) !important;
  }
  .cs-topbar .cs-menu-btn {
    min-width: 48px; min-height: 48px;
    border-radius: 10px;
  }
  .cs-sidebar { border-right: 1px solid var(--lk-border); }
  .cs-sidebar a.cs-nav-link,
  .cs-sidebar button.cs-nav-link {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 15px; font-weight: 600;
    border-radius: 10px;
    margin: 4px 12px;
  }
  .cs-sidebar a.cs-nav-link.active,
  .cs-sidebar button.cs-nav-link.active {
    background: var(--lk-orange); color: #fff;
  }

  /* ---------- Generic utility: sticky CTA dock ---------- */
  .lk-dock-cta {
    position: sticky; bottom: 0;
    left: 0; right: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(248,249,250,0) 0%, var(--lk-bg) 40%);
    z-index: 30;
  }
  .lk-dock-cta .lk-btn, .lk-dock-cta .btn { width: 100%; height: 56px; }

  /* ---------- Kill low-contrast / tiny text globally ---------- */
  .muted, .text-muted, .lk-muted { color: var(--lk-text-2) !important; }
  .tiny, .text-tiny { font-size: 13px !important; line-height: 1.4 !important; }

  /* ---------- Tap feedback ---------- */
  button, a.lk-btn, a.btn { -webkit-tap-highlight-color: rgba(245,166,35,0.08); }
}

/* =============================================================================
 * 2. Very small phones (≤360px): tighten paddings further
 * ============================================================================= */
@media (max-width: 360px) {
  .lk-container, .mo-container { padding: 12px !important; }
  .lk-card, .mo-order { padding: 16px 12px !important; }
  .hero-title { font-size: 24px !important; }
  .section-title { font-size: 20px !important; }
}