/* ===========================
   LiquidRC.com — style.css
   "Workshop Precision" Design
   =========================== */

/* --- Reset & Custom Properties --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --bg: #f0f1f3;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Header */
  --header-bg: #0f172a;
  --header-bar-bg: rgba(255,255,255,0.04);

  /* Actions */
  --cta: #f59e0b;
  --cta-hover: #d97706;
  --cta-text: #0f172a;

  /* Links */
  --link: #2563eb;
  --link-hover: #1d4ed8;

  /* Division accents */
  --accent: #64748b;
  --rc-blue: #2563eb;
  --models-red: #dc2626;
  --railroad-green: #16a34a;
  --rockets-orange: #ea580c;

  /* Stock status */
  --stock-ok: #16a34a;
  --stock-low: #d97706;
  --stock-out: #dc2626;

  /* Layout */
  --radius: 6px;
  --radius-lg: 10px;
  --max-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px -8px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 25px -5px rgba(0,0,0,0.1);
}


/* --- Base Typography --- */
html { font-size: 16px; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* --- Links & Images --- */
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }


/* ===========================
   Site Header
   =========================== */
.site-header {
  background: var(--header-bg);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo { flex-shrink: 0; }
.site-logo img { width: 170px; height: auto; }


/* --- Search Box --- */
.search-box {
  flex: 1;
  display: flex;
  max-width: 520px;
  position: relative;
}

.search-box input[type="search"] {
  flex: 1;
  padding: 0.55rem 1rem;
  border: 2px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.07);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.search-box input::placeholder { color: rgba(255,255,255,0.35); }
.search-box input:focus {
  border-color: var(--cta);
  background: rgba(255,255,255,0.1);
}

.search-box > button[type="submit"] {
  padding: 0.55rem 0.75rem;
  background: var(--cta);
  border: 2px solid var(--cta);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  color: var(--cta-text);
  display: flex;
  align-items: center;
  transition: background 0.15s;
}

.search-box > button[type="submit"]:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}


/* --- Header Cart --- */
.header-cart {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.header-cart a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s;
}

.header-cart a:hover { color: var(--cta); text-decoration: none; }

.snipcart-items-count {
  background: var(--cta);
  color: var(--cta-text);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
}

.cart-total {
  color: var(--text-faint);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}


/* --- Menu Toggle (mobile hamburger) --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.15s;
}

.menu-toggle:hover { color: #fff; }


/* --- Header Bar (division pills + desktop nav) --- */
.header-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.header-bar-inner {
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}


/* --- Division Toggle --- */
.division-toggle {
  display: flex;
  gap: 0.35rem;
  padding: 0.4rem 0;
  overflow-x: auto;
}

.div-pill {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.div-pill:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
  text-decoration: none;
}

.div-pill.active {
  font-weight: 600;
  border-color: transparent;
}

/* Division pill active colors */
.div-pill[data-division="rc"].active       { background: var(--rc-blue); color: #fff; }
.div-pill[data-division="models"].active   { background: var(--models-red); color: #fff; }
.div-pill[data-division="railroad"].active { background: var(--railroad-green); color: #fff; }
.div-pill[data-division="rockets"].active  { background: var(--rockets-orange); color: #fff; }

/* Division page accent theming */
body[data-division="rc"]       { --accent: var(--rc-blue); }
body[data-division="models"]   { --accent: var(--models-red); }
body[data-division="railroad"] { --accent: var(--railroad-green); }
body[data-division="rockets"]  { --accent: var(--rockets-orange); }


/* --- Desktop Nav --- */
.desktop-nav {
  margin-left: auto;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

.desktop-nav li a {
  display: block;
  padding: 0.5rem 0.7rem;
  color: var(--cta);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.15s, background 0.15s;
  border-radius: var(--radius);
}

.desktop-nav li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}


/* --- Mobile Nav --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--header-bg);
  z-index: 200;
  padding: 1rem 1.25rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.3);
}

.mobile-nav[hidden] { display: block; }

.mobile-nav.open {
  transform: translateX(0);
}

.menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  line-height: 1;
  transition: color 0.15s;
}

.menu-close:hover { color: #fff; }

.mobile-nav ul { list-style: none; margin-top: 1rem; }

.mobile-nav li a {
  display: block;
  padding: 0.6rem 0;
  color: var(--cta);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav li a:hover { text-decoration: none; color: #fff; }

.nav-heading {
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Overlay behind mobile nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  backdrop-filter: blur(2px);
}

.nav-overlay.open { display: block; }


/* --- Search Dropdown (container only — detail styles injected by simple-search.js) --- */
.search-dropdown { display: none; }
.search-results { display: none; }


/* ===========================
   Main Content Area
   =========================== */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1rem;
  background: var(--surface);
  min-height: 60vh;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


/* --- Page Titles & Text --- */
.pgtitle {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.75rem 0;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pgsubtitle {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 0 0.25rem;
  color: var(--text);
}

.longdesc {
  line-height: 1.65;
  margin: 0.5rem 0;
  color: var(--text);
}

.longdesc .ldh {
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}


/* ===========================
   Product Grid & Cards
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1rem 0;
}


/* --- Product Card --- */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  position: relative;
  display: block;
  text-decoration: none;
  background: #fff;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.5rem;
}

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.88));
  padding: 2rem 0.75rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.product-card-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.product-card-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cta);
  font-variant-numeric: tabular-nums;
}

.product-card-info {
  flex: 1;
  padding: 0.6rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-stock {
  font-size: 0.75rem;
  margin: 0;
}


/* --- Stock Badges --- */
.stock-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.stock-ok {
  background: #dcfce7;
  color: #15803d;
}

.stock-low {
  background: #fef3c7;
  color: #92400e;
}

.stock-out {
  background: #fee2e2;
  color: #b91c1c;
}

/* Legacy font tag support */
.product-card-stock font[color="#666666"] { color: var(--text-muted); font-size: 0.75rem; }
.product-card-stock font[color="#cccccc"] { color: var(--text-faint); font-size: 0.75rem; }


/* --- Grid Card (brand/category index) --- */
.grid-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.grid-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.grid-card a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}

.grid-card a:hover { text-decoration: none; color: var(--link); }

.grid-card img {
  max-height: 80px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}


/* ===========================
   Snipcart Add-to-Cart Button
   =========================== */
button.snipcart-add-item,
.snipcart-add-item {
  display: block;
  width: 100%;
  background: var(--cta);
  color: var(--cta-text);
  border: none;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.15s, transform 0.1s;
  margin-top: auto;
  font-family: inherit;
  text-align: center;
  line-height: 1.4;
}

button.snipcart-add-item:hover,
.snipcart-add-item:hover {
  background: var(--cta-hover);
}

/* Item detail page: larger standalone button */
.content > div > .snipcart-add-item,
.snipcart-add-item.snipcart-button-primary {
  max-width: 320px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.snipcart-base-button__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===========================
   Parts List (Lite — fitlist/category)
   =========================== */
.parts-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.1s;
}

.parts-list-item:hover { background: var(--border-light); }

.parts-list-item .partnumber {
  font-weight: 700;
  color: var(--link);
  min-width: 100px;
  font-size: 0.9rem;
}

.parts-list-item .saleprice {
  font-weight: 800;
  color: var(--text);
  min-width: 60px;
  font-variant-numeric: tabular-nums;
}

.parts-list-item .shortdesc {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
}

.parts-list-item img {
  max-height: 30px;
  width: auto;
  flex-shrink: 0;
}


/* ===========================
   Item Detail Page
   =========================== */
.breadcrumb {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.breadcrumb a { color: var(--link); font-weight: 500; }
.breadcrumb + .breadcrumb::before { content: " / "; color: var(--text-faint); }

.item-heading-container {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent, var(--cta));
}

.item-heading-pane { font-size: 0.9rem; }

.item-heading-pane:first-child {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.item-heading-pane img {
  max-width: 180px;
  height: auto;
}

.heading-mini {
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.shortdesc {
  font-size: 1rem;
  margin: 0.75rem 0;
  color: var(--text-muted);
}

.partnumberAlt {
  display: inline-block;
  margin: 0.15rem 0.2rem;
}

.partnumberAlt a {
  font-size: 0.8rem;
  color: var(--link);
  background: var(--border-light);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.15s;
}

.partnumberAlt a:hover {
  background: var(--border);
  text-decoration: none;
}


/* ===========================
   Category Page
   =========================== */
.category-breadcrumb { margin-bottom: 1rem; }

.subcategory-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.subcategory-list li a {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.15s;
}

.subcategory-list li a:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  text-decoration: none;
}


/* ===========================
   Fitment Page
   =========================== */
.fitment-search {
  margin: 1rem 0;
}

.fitment-search input {
  padding: 0.6rem 0.85rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  width: 100%;
  max-width: 420px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.fitment-search input:focus { border-color: var(--accent, var(--link)); }

.carlist {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.carlist a {
  color: var(--link);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ===========================
   Data / Specs Page
   =========================== */
.data-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.data-group-link {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--header-bg);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}

.data-group-link:hover {
  background: #334155;
  text-decoration: none;
}

.data-filter-form { margin: 1rem 0; }

.data-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.filter-field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.filter-field select {
  padding: 0.4rem 0.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.filter-field select:focus { border-color: var(--link); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1rem 0;
}

.data-table th {
  background: var(--header-bg);
  color: #fff;
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.data-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.data-table tr:hover td { background: var(--border-light); }


/* ===========================
   Static Pages
   =========================== */
.policy {
  width: 100%;
  max-width: 700px;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius-lg);
  line-height: 1.65;
}


/* --- Prop 65 Warning --- */
.prop65 {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.75rem;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: var(--radius);
}


/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--header-bg);
  color: var(--text-faint);
  text-align: center;
  padding: 2.5rem 1rem;
  margin-top: 0;
  border-top: 3px solid var(--accent);
}

.site-footer p {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* ===========================
   Division Accent Theming
   =========================== */

/* Header border follows division */
body[data-division] .site-header { border-bottom-color: var(--accent); }
body[data-division] .site-footer { border-top-color: var(--accent); }

/* Search focus ring follows division */
body[data-division] .search-box input:focus { border-color: var(--accent); }

/* Product card price follows division */
body[data-division] .product-card-price { color: var(--accent); }

/* Item heading left border follows division */
body[data-division] .item-heading-container { border-left-color: var(--accent); }

/* Grid card hover border follows division */
body[data-division] .grid-card:hover { border-color: var(--accent); }

/* Subcategory pills hover follows division */
body[data-division] .subcategory-list li a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Division-colored card hover shadows */
body[data-division="rc"] .product-card:hover       { box-shadow: 0 8px 25px -5px rgba(37, 99, 235, 0.12); }
body[data-division="models"] .product-card:hover   { box-shadow: 0 8px 25px -5px rgba(220, 38, 38, 0.12); }
body[data-division="railroad"] .product-card:hover { box-shadow: 0 8px 25px -5px rgba(22, 163, 74, 0.12); }
body[data-division="rockets"] .product-card:hover  { box-shadow: 0 8px 25px -5px rgba(234, 88, 12, 0.12); }


/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .item-heading-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .desktop-nav li a { font-size: 0.75rem; padding: 0.5rem 0.5rem; }
}


/* ===========================
   Responsive — Mobile
   =========================== */
@media (max-width: 600px) {
  .menu-toggle { display: block; }
  .desktop-nav { display: none !important; }

  .header-top {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .site-logo img { width: 130px; }
  .search-box { max-width: none; order: 10; flex-basis: 100%; }
  .cart-total { display: none; }

  .division-toggle {
    justify-content: flex-start;
    padding: 0.3rem 0;
    gap: 0.25rem;
  }

  .header-bar-inner { padding: 0 0.75rem; }

  .div-pill { font-size: 0.72rem; padding: 0.2rem 0.55rem; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card-overlay { padding: 1.2rem 0.5rem 0.4rem; }
  .product-card-name { font-size: 0.7rem; }
  .product-card-price { font-size: 0.9rem; }
  .product-card-desc { font-size: 0.72rem; }

  .item-heading-container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    border-left-width: 3px;
  }

  .item-heading-pane:first-child { font-size: 1.75rem; }

  .content { padding: 1rem 0.75rem; }
  .pgtitle { font-size: 1.25rem; }

  .data-table { font-size: 0.75rem; }
  .data-table th, .data-table td { padding: 0.35rem 0.4rem; }
  .data-filters { flex-direction: column; }

  .grid-card { padding: 0.75rem; }
  .grid-card img { max-height: 60px; }
}

/* Extra small */
@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
}


/* ===========================
   Desktop — hide mobile nav
   =========================== */
@media (min-width: 601px) {
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}
