/* North Of Here Inc — Outdoor Equipment B2B (Deuter-inspired) */
:root {
  --forest: #1a3c34;
  --forest-dark: #0f2822;
  --forest-light: #2a5a4e;
  --sage: #4a6b5d;
  --moss: #6b8f7a;
  --sand: #f4f1eb;
  --cream: #ebe6dc;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --text: #2d3436;
  --text-muted: #6b7280;
  --border: #d9d4cb;
  --accent: #c87941;
  --accent-hover: #b06832;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
  --announce-height: 38px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  padding-top: calc(var(--nav-height) + var(--announce-height));
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.center-sub { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: rgba(255,255,255,0.8); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 600; }

.section { padding: 5.5rem 0; }
.section-dark { background: var(--forest-dark); color: rgba(255,255,255,0.88); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-cream { background: var(--sand); }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-subtitle { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; margin-top: 0.85rem; line-height: 1.7; }
.flex-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* Announcement */
.announcement {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--forest);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.announcement a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* Navigation */
.navbar {
  position: fixed;
  top: var(--announce-height);
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.logo { display: flex; align-items: center; gap: 0.6rem; color: var(--forest); }
.logo-icon { width: 36px; height: 36px; color: var(--forest); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--forest); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.25rem !important;
  margin-left: 0.5rem;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--forest-light) !important; }

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: 0.5rem 0;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
}
.dropdown li a:hover { background: var(--sand); color: var(--forest); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-light); border-color: var(--forest-light); }
.btn-secondary { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--forest); border-color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.link-arrow { font-size: 0.88rem; font-weight: 600; color: var(--forest); letter-spacing: 0.04em; }
.link-arrow:hover { color: var(--accent); }

/* Hero */
.hero { position: relative; height: calc(100vh - var(--nav-height) - var(--announce-height)); min-height: 520px; max-height: 800px; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,40,34,0.82) 0%, rgba(15,40,34,0.35) 55%, transparent 100%);
}
.hero-slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 4rem 1.5rem;
  color: var(--white);
}
.hero-slide-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-lead { font-size: 1.1rem; max-width: 520px; line-height: 1.7; color: rgba(255,255,255,0.88); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--white); }

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,40,34,0.9) 0%, rgba(15,40,34,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 3rem;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content p { font-size: 1.05rem; max-width: 560px; color: rgba(255,255,255,0.85); }
.page-hero-content .hero-actions { margin-top: 1.5rem; }

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,40,34,0.92) 0%, rgba(15,40,34,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: var(--white);
}
.category-card-overlay h3 { color: var(--white); margin-bottom: 0.35rem; }
.category-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.category-card-overlay .link-arrow { color: var(--accent); }

/* Feature Banner */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.feature-banner-img { overflow: hidden; }
.feature-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-banner-body {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.88);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-banner-body h2 { color: var(--white); margin-bottom: 1.25rem; }
.feature-banner-body p { margin-bottom: 1.5rem; line-height: 1.75; }
.feature-list { margin-bottom: 2rem; }
.feature-list li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.feature-list-light li::before { color: var(--moss); }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--sand);
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}
.product-card-body { padding: 1.1rem 1.25rem 1.35rem; }
.product-type {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.product-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price { font-weight: 700; color: var(--forest); font-size: 0.95rem; }
.price-b2b { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-body p { margin-bottom: 1.25rem; color: var(--text-muted); line-height: 1.75; }
.split-body .btn { margin-top: 0.5rem; }

/* CTA Band */
.cta-band { background: var(--forest); color: var(--white); padding: 4rem 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 480px; }

/* Catalog */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.filter-btn {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sand);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.results-count { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 3rem; color: var(--text-muted); }

/* Product Detail */
.breadcrumb-bar { background: var(--sand); padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: var(--charcoal); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery { position: sticky; top: calc(var(--nav-height) + var(--announce-height) + 1.5rem); }
.product-main-img {
  background: var(--sand);
  aspect-ratio: 1;
  margin-bottom: 1rem;
  overflow: hidden;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.thumb-btn {
  width: 72px; height: 72px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--sand);
  overflow: hidden;
  transition: border-color var(--transition);
}
.thumb-btn.active,
.thumb-btn:hover { border-color: var(--forest); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.product-price-row { margin-bottom: 1.25rem; }
.product-price-row .price { font-size: 1.5rem; }
.product-excerpt { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.75; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tag-list li {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--sand);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.product-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.product-meta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.product-meta p { margin-bottom: 0.5rem; }
.product-meta a { color: var(--forest); text-decoration: underline; }
.prose { color: var(--text-muted); line-height: 1.8; max-width: 800px; }
.prose p { margin-bottom: 1rem; }
.prose strong { color: var(--charcoal); }

/* Benefits / Steps */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  padding: 2rem;
  background: var(--sand);
  border: 1px solid var(--border);
}
.benefit-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.benefit-card h3 { margin-bottom: 0.75rem; text-transform: none; font-family: var(--font-body); }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.step-card h3 { margin-bottom: 0.75rem; text-transform: none; font-family: var(--font-body); }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.info-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
}
.info-card h4 { color: var(--forest); margin-bottom: 0.5rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.info-card p { color: var(--text-muted); font-size: 0.95rem; }
.info-card a { color: var(--forest); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: grid; gap: 1.5rem; }
.contact-item h4 { color: var(--forest); margin-bottom: 0.35rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item p { color: var(--text-muted); }
.contact-item a { color: var(--forest); text-decoration: underline; }

.contact-form {
  background: var(--sand);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 1.5rem; text-transform: none; font-family: var(--font-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

/* Footer */
.footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 1.25rem; font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.logo-footer { color: var(--white); }
.logo-footer .logo-icon { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { font-size: 0.88rem; line-height: 1.6; }
.footer-bottom { padding: 1.5rem 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .feature-banner,
  .split-section,
  .product-detail-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .split-reverse { direction: ltr; }
  .feature-banner-body { padding: 3rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-gallery { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: calc(var(--nav-height) + var(--announce-height));
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .mobile-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 16/9; }
  .hero { min-height: 460px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .flex-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
