/* ============================================
   CRUNCH ROLL — Brand Stylesheet
   Palette (sampled from logo):
   Yellow #FFCB08 | Red #E73127 | Ink #221F1F | White #FFFFFF
   Ratio guide: ~70% white/soft-grey surfaces, black text,
   ~20% yellow accents, ~10% red accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&display=swap');

:root{
  --yellow: #FFCB08;
  --yellow-dark: #E6B300;
  --red: #E73127;
  --red-dark: #C4241B;
  --ink: #221F1F;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --grey-50: #F5F4F1;
  --grey-100: #ECEBE7;
  --grey-300: #D8D6D0;
  --grey-500: #8B8880;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 8px 30px rgba(34,31,31,0.08);
  --shadow-pop: 0 14px 40px rgba(231,49,39,0.18);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family:'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5{
  font-family:'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:800;
  letter-spacing:-0.01em;
  line-height:1.15;
  margin:0 0 .5em;
  color: var(--ink);
}
h1{ font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem); }
h2{ font-size: clamp(1.7rem, 2.6vw + 1rem, 2.6rem); }
h3{ font-size: 1.3rem; }
p{ margin:0 0 1em; color:#3d3a3a; }
a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
.section{ padding: 76px 0; }
.section-tight{ padding: 48px 0; }
.section-alt{ background: var(--grey-50); }
.section-ink{ background: var(--ink); color: var(--white); }
.section-ink p{ color:#d9d6d0; }
.section-ink h2, .section-ink h3{ color: var(--white); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color: var(--red-dark);
  background: rgba(231,49,39,0.09);
  border:1px solid rgba(231,49,39,0.25);
  padding:6px 14px; border-radius:99px; margin-bottom:16px;
}
.eyebrow.yellow{
  color:#7a5c00; background: rgba(255,203,8,0.18); border-color: rgba(255,203,8,0.5);
}

.lede{ font-size:1.1rem; max-width:640px; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:10px; font-weight:700; font-size:.98rem;
  border:2px solid transparent; transition:.18s transform ease,.18s box-shadow ease,.18s background ease,.18s color ease,.18s border-color ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 10px 22px rgba(34,31,31,0.16); }
.btn:active{ transform: translateY(0); box-shadow:none; }
.btn-primary{ background: var(--red); color:var(--white); }
.btn-primary:hover{ background: var(--red-dark); }
.btn-secondary{ background: var(--yellow); color: var(--ink); }
.btn-secondary:hover{ background: var(--yellow-dark); }
.btn-outline{ background:transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color:var(--white); }
.btn-outline-light{ background:transparent; border-color: rgba(255,255,255,0.6); color:var(--white); }
.btn-outline-light:hover{ background: var(--white); color:var(--ink); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:.85rem; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-bottom:1px solid var(--grey-100);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 24px; max-width: var(--container); margin:0 auto; gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.05rem; }
.brand img{ height:52px; width:auto; }
.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav a{
  padding:10px 14px; border-radius:99px; font-weight:600; font-size:.94rem; color:#413d3d;
  position:relative; transition:.18s ease;
}
.main-nav a:hover{ background: var(--grey-50); color:var(--red-dark); transform:translateY(-1px); }
.main-nav a.active{ background: var(--ink); color:var(--white); }
.header-actions{ display:flex; align-items:center; gap:10px; }
.lang-pill{
  display:flex; align-items:center; gap:0; border:1px solid var(--grey-300); border-radius:99px; overflow:hidden; font-size:.78rem; font-weight:700;
}
.lang-pill span{ padding:7px 11px; color:var(--grey-500); }
.lang-pill span.on{ background: var(--yellow); color: var(--ink); }
.nav-toggle{ display:none; background:none; border:none; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:3px; background:var(--ink); margin:5px 0; border-radius:2px; }

@media (max-width: 960px){
  /* Remove backdrop-filter on header — it creates a containing block that traps position:fixed children */
  .site-header{ backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.98); }
  .main-nav{
    position:fixed; inset:77px 0 0 0; background:var(--white); flex-direction:column; align-items:stretch;
    padding:24px 20px 40px; gap:4px; transform:translateX(100%); transition:.28s cubic-bezier(.4,0,.2,1); overflow-y:auto;
    z-index:200; box-shadow:-4px 0 24px rgba(34,31,31,.12);
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{ text-align:left; padding:14px 16px; font-size:1.05rem; border-radius:10px; display:block; }
  .main-nav a:hover{ background:var(--grey-50); }
  .main-nav a.active{ background:var(--ink); color:var(--white); }
  .nav-toggle{ display:block; position:relative; z-index:201; }
  .nav-toggle span{ transition:.22s ease; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }
  .nav-backdrop{ display:none; position:fixed; inset:0; background:rgba(34,31,31,.45); z-index:199; }
  .nav-backdrop.show{ display:block; }
  .header-actions .btn{ display:none; }
}

/* Hero */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(255,203,8,0.35), transparent 60%),
    radial-gradient(700px 400px at -5% 110%, rgba(231,49,39,0.14), transparent 60%),
    var(--off-white);
  padding: 64px 0 20px;
}
.hero-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap:48px; align-items:center; }
.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.badge{
  display:flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--grey-100);
  padding:10px 16px; border-radius:99px; font-weight:700; font-size:.85rem; box-shadow:var(--shadow-soft);
}
.badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--red); }
.hero-art{ position:relative; }
.hero-art img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
@media (max-width: 900px){ .hero-grid{ grid-template-columns:1fr; } }

/* Stats bar */
.stats-bar{
  display:grid; grid-template-columns:repeat(4,1fr); background:var(--ink); color:var(--white);
  border-radius: var(--radius-lg); overflow:hidden; margin-top:56px;
}
.stats-bar .stat{ padding:28px 20px; text-align:center; border-right:1px solid rgba(255,255,255,0.1); }
.stats-bar .stat:last-child{ border-right:none; }
.stats-bar .stat b{ display:block; font-family:'Be Vietnam Pro'; font-weight:900; font-size:2rem; color:var(--yellow); }
.stats-bar .stat span{ font-size:.85rem; color:#cfccc6; }
@media (max-width:720px){ .stats-bar{ grid-template-columns:repeat(2,1fr); } .stats-bar .stat:nth-child(2){ border-right:none; } }

/* Cards / grids */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:960px){ .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-3,.grid-4,.grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--white); border:1px solid var(--grey-100); border-radius: var(--radius-md);
  overflow:hidden; transition:.2s transform ease, .2s box-shadow ease;
}
.card:hover{ transform:translateY(-4px); box-shadow: var(--shadow-soft); }
.card-body{ padding:20px; }
.card .tag{
  display:inline-block; font-size:.72rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  background: var(--yellow); color:var(--ink); padding:4px 10px; border-radius:6px; margin-bottom:10px;
}
.card .tag.spicy{ background:var(--red); color:var(--white); }
.price{ font-weight:800; color:var(--red-dark); font-size:1.05rem; }
.avail-note{ font-size:.8rem; color:var(--grey-500); font-style:italic; margin-top:8px; }

.section-head{ max-width:700px; margin:0 auto 44px; text-align:center; }
.section-head.left{ margin:0 0 40px; text-align:left; }

/* Values / icon list */
.value-card{ text-align:center; padding:26px 18px; }
.value-icon{
  width:56px; height:56px; border-radius:16px; background:var(--yellow); display:flex; align-items:center;
  justify-content:center; font-size:1.5rem; margin:0 auto 14px;
}

/* Location cards */
.loc-card{ padding:0; }
.loc-map{
  height:245px; background:linear-gradient(135deg, rgba(255,203,8,.4), rgba(231,49,39,.25)), var(--grey-100);
  display:flex; align-items:center; justify-content:center; font-size:2rem;
}
.loc-body{ padding:22px; }
.loc-body h3{ margin-bottom:6px; }
.loc-meta{ display:flex; gap:10px; align-items:flex-start; font-size:.92rem; color:#4c4848; margin-bottom:8px; }

/* Timeline (about) */
.timeline{ border-left:3px solid var(--yellow); padding-left:26px; display:flex; flex-direction:column; gap:28px; }
.timeline-item{ position:relative; }
.timeline-item::before{
  content:''; position:absolute; left:-32px; top:4px; width:14px; height:14px; border-radius:50%;
  background:var(--red); border:3px solid var(--off-white);
}
.timeline-item b{ display:block; color:var(--red-dark); font-family:'Be Vietnam Pro'; font-weight:800; }

/* FAQ */
.faq-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; }
.faq-tab{
  padding:10px 20px; border-radius:99px; border:2px solid var(--grey-100); background:var(--white); font-weight:700; font-size:.9rem;
}
.faq-tab.active{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.faq-item{ background:var(--white); border:1px solid var(--grey-100); border-radius:var(--radius-md); margin-bottom:12px; overflow:hidden; }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; padding:18px 22px; font-weight:700; gap:16px;
}
.faq-q .icon{ width:26px; height:26px; border-radius:50%; background:var(--yellow); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:900; transition:.2s transform ease; }
.faq-item.open .faq-q .icon{ transform:rotate(45deg); background:var(--red); color:var(--white); }
.faq-a{ max-height:0; overflow:hidden; transition:.25s ease; padding:0 22px; }
.faq-item.open .faq-a{ max-height:400px; padding:0 22px 20px; }
.faq-group{ display:none; }
.faq-group.active{ display:block; }

/* Forms */
.form-card{ background:var(--white); border:1px solid var(--grey-100); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-soft); }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:700; font-size:.88rem; margin-bottom:6px; }
.field .hint{ font-weight:400; color:var(--grey-500); font-size:.8rem; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; border-radius:var(--radius-sm); border:1.5px solid var(--grey-300);
  font-family:inherit; font-size:.95rem; background:var(--off-white);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--red); background:var(--white); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:640px){ .field-row{ grid-template-columns:1fr; } }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color:#4c4848; }
.form-msg{
  margin-top:16px; padding:14px 16px; border-radius:var(--radius-sm); font-size:.9rem; font-weight:600; display:none;
}
.form-msg.show{ display:block; }
.form-msg.success{ background:rgba(255,203,8,.2); border:1px solid var(--yellow-dark); color:#5c4700; }

/* Footer */
.site-footer{ background: var(--ink); color:var(--white); padding:60px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-grid h4{ color:var(--yellow); font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:16px; font-family:'Be Vietnam Pro'; font-weight:700; }
.footer-grid a, .footer-grid p{ color:#d3d0ca; font-size:.92rem; }
.footer-grid li{ margin-bottom:10px; }
.footer-grid a:hover{ color:var(--white); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ height:50px; }
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center;
}
.social-row a{ transition:.18s ease; }
.social-row a:hover{ background:var(--red); transform:translateY(-2px) scale(1.08); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:.82rem; color:#9a9691; flex-wrap:wrap; gap:10px; }

/* Utility */
.mt-0{margin-top:0;} .mb-0{margin-bottom:0;}
.flex{ display:flex; } .items-center{align-items:center;} .gap-8{gap:8px;} .gap-12{gap:12px;} .gap-16{gap:16px;}
.pill{ display:inline-block; padding:4px 12px; border-radius:99px; font-size:.75rem; font-weight:700; }
.pill-yellow{ background:var(--yellow); color:var(--ink); }
.pill-red{ background:var(--red); color:var(--white); }
.pill-outline{ background:transparent; border:1.5px solid var(--grey-300); color:#4c4848; }
.divider{ height:1px; background:var(--grey-100); margin:40px 0; }
.vi-note{
  background:var(--grey-50); border:1px dashed var(--grey-300); border-radius:var(--radius-md);
  padding:18px 20px; font-size:.92rem; color:#4c4848;
}
.vi-note b{ color:var(--red-dark); }

/* Placeholder art blocks (used until real photography is supplied) */
.ph{
  display:flex; align-items:center; justify-content:center; color:#8a6d00; font-weight:700; text-align:center;
  background: repeating-linear-gradient(135deg, rgba(255,203,8,.35) 0 18px, rgba(255,255,255,.5) 18px 36px);
  border-radius: var(--radius-md);
}
.ph.red{ background: repeating-linear-gradient(135deg, rgba(231,49,39,.22) 0 18px, rgba(255,255,255,.5) 18px 36px); color:#8a2018; }
.ph span{ background:rgba(255,255,255,.75); padding:6px 12px; border-radius:8px; font-size:.78rem; }
.ph.menu-board-img{ display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft); }

/* Breadcrumb / page header */
.page-hero{ padding:44px 0 34px; border-bottom:1px solid var(--grey-100); background:var(--white); }
.page-hero .eyebrow{ margin-bottom:10px; }

/* Wholesale portal */
.portal-shell{ min-height:60vh; display:flex; align-items:center; justify-content:center; padding:60px 20px; }
.portal-card{ width:100%; max-width:420px; background:var(--white); border:1px solid var(--grey-100); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-soft); }
.portal-header{ display:flex; flex-direction:column; align-items:center; text-align:center; margin-bottom:22px; }
.portal-header img{ height:48px; margin-bottom:14px; }
.dash-topbar{ display:flex; justify-content:space-between; align-items:center; padding:18px 0; border-bottom:1px solid var(--grey-100); margin-bottom:28px; }
.dash-layout{ display:grid; grid-template-columns:2fr 1fr; gap:28px; align-items:start; }
@media (max-width:900px){ .dash-layout{ grid-template-columns:1fr; } }
.product-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px; border:1px solid var(--grey-100); border-radius:var(--radius-sm); background:var(--white); margin-bottom:10px; }
.qty-input{ width:70px; text-align:center; padding:9px; border-radius:8px; border:1.5px solid var(--grey-300); }
.summary-card{ background:var(--white); border:1px solid var(--grey-100); border-radius:var(--radius-md); padding:22px; position:sticky; top:96px; }
.summary-row{ display:flex; justify-content:space-between; padding:8px 0; font-size:.92rem; border-bottom:1px dashed var(--grey-100); }
.summary-row.total{ font-weight:800; font-size:1.05rem; border-bottom:none; padding-top:14px; }
.step-indicator{ display:flex; gap:8px; margin-bottom:30px; }
.step-indicator .step{ flex:1; height:6px; border-radius:99px; background:var(--grey-100); }
.step-indicator .step.done{ background:var(--yellow); }
.step-indicator .step.current{ background:var(--red); }

.reveal{ opacity:0; transform:translateY(16px); transition:.6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* Real photography helpers */
.menu-board-img{ width:100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); display:block; }
.photo-card{ border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-soft); }
.photo-card img{ width:100%; height:100%; object-fit:cover; display:block; transition:.35s transform ease; }
.photo-card:hover img{ transform:scale(1.05); }

/* Quick nav pills */
.quicknav{ position:sticky; top:76px; z-index:40; background:rgba(250,250,247,0.92); backdrop-filter:blur(6px); padding:14px 0; border-bottom:1px solid var(--grey-100); margin-bottom:8px; }
.quicknav-inner{ display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; }
.quicknav-inner::-webkit-scrollbar{ display:none; }
.quicknav a{ flex-shrink:0; padding:9px 18px; border-radius:99px; background:var(--white); border:1.5px solid var(--grey-100); font-weight:700; font-size:.85rem; white-space:nowrap; transition:.18s ease; }
.quicknav a:hover{ border-color:var(--red); color:var(--red-dark); transform:translateY(0px); }

/* Price list rows (used alongside real menu-board photos) */
.price-list{ background:var(--white); border:1px solid var(--grey-100); border-radius:var(--radius-md); overflow:hidden; }
.price-row{ display:flex; justify-content:space-between; gap:16px; align-items:flex-start; padding:16px 20px; border-bottom:1px solid var(--grey-100); }
.price-row:last-child{ border-bottom:none; }
.price-row .name{ font-weight:700; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.price-row .desc{ font-size:.85rem; color:var(--grey-500); margin-top:2px; }
.price-row .amount{ font-weight:800; color:var(--red-dark); white-space:nowrap; font-size:1.02rem; }
.mini-badge{ font-size:.65rem; font-weight:800; letter-spacing:.04em; background:var(--red); color:var(--white); padding:2px 8px; border-radius:99px; text-transform:uppercase; }
.mini-badge.imported{ background:var(--ink); }

/* Category section anchor offset (for sticky header + quicknav) */
.menu-category{ scroll-margin-top:150px; padding:56px 0; border-bottom:1px solid var(--grey-100); }
.menu-category:last-child{ border-bottom:none; }

/* Video gallery (portrait reels) */
.video-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:800px){ .video-grid{ grid-template-columns:1fr; max-width:340px; margin:0 auto; } }
.video-card{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); background:var(--ink); aspect-ratio:9/16; }
.video-card video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-card .video-label{ position:absolute; left:14px; bottom:14px; color:var(--white); font-weight:700; font-size:.85rem; text-shadow:0 2px 8px rgba(0,0,0,.5); z-index:2; }
.video-card .play-hint{ position:absolute; top:14px; right:14px; background:rgba(255,255,255,0.85); color:var(--ink); font-size:.7rem; font-weight:800; padding:4px 10px; border-radius:99px; z-index:2; }

/* Instagram gallery */
.ig-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
@media (max-width:800px){ .ig-grid{ grid-template-columns:repeat(2,1fr); } }
.ig-tile{ position:relative; aspect-ratio:3/4; border-radius:var(--radius-sm); overflow:hidden; display:block; }
.ig-tile img{ width:100%; height:100%; object-fit:cover; transition:.3s transform ease; }
.ig-tile:hover img{ transform:scale(1.06); }
.ig-tile::after{
  content:'📷 View on Instagram'; position:absolute; inset:auto 0 0 0; padding:10px 8px; font-size:.72rem; font-weight:700; color:var(--white);
  background:linear-gradient(0deg, rgba(0,0,0,.65), transparent); opacity:0; transition:.2s ease; text-align:center;
}
.ig-tile:hover::after{ opacity:1; }
.ig-handle{ display:inline-flex; align-items:center; gap:8px; font-weight:800; color:var(--red-dark); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — 2026-08-08
   ═══════════════════════════════════════════════════════════════ */

/* Footer grid: 4-col → 2-col → 1-col */
@media (max-width: 780px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}
@media (max-width: 480px){
  .footer-grid{ grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom{ flex-direction: column; text-align: center; gap: 4px; }
  .site-footer{ padding: 36px 0 0; }
  .footer-brand img{ height: 40px; }
  .social-row a{ width:34px; height:34px; font-size:.8rem; }
}

/* Scrollable table wrapper */
.table-responsive{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 10px 10px;
}
.table-responsive table{ min-width: 560px; }

/* Hide non-essential table columns on small screens */
@media (max-width: 600px){
  .ws-hide-sm{ display: none !important; }
}

/* Wholesale stats: keep 3-col on medium, 1-col on very small */
@media (max-width: 800px){
  .stats-row-3{ grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 400px){
  .stats-row-3{ grid-template-columns: 1fr !important; }
}

/* Progress bar: shrink on small screens */
@media (max-width: 500px){
  .cr-progress-step-label{ display: none !important; }
  .cr-progress-dot{ width: 26px !important; height: 26px !important; font-size: .75rem !important; }
  .cr-progress-line{ margin-bottom: 14px !important; }
}

/* Portal card: tighter padding on small phones */
@media (max-width: 420px){
  .portal-card{ padding: 28px 20px !important; border-radius: 14px !important; }
}

/* Quicknav: smaller pills on mobile */
@media (max-width: 600px){
  .quicknav a{ padding: 7px 13px; font-size: .8rem; }
}
