@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Playfair+Display:wght@400;500&display=swap');

:root {
  --steel: #1a6fa8;
  --steel-dark: #0f4d7a;
  --steel-light: #e8f4fd;
  --steel-mid: #3a8ec8;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-50: #f0f4f8;
  --gray-100: #d9e2ec;
  --gray-200: #bcccdc;
  --gray-400: #829ab1;
  --gray-600: #486581;
  --gray-800: #243b53;
  --gray-900: #102a43;
  --text: #1a2b3c;
  --text-muted: #5a7a96;
  --border: #d0dfe8;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(16,42,67,0.07), 0 1px 2px rgba(16,42,67,0.04);
  --shadow: 0 4px 16px rgba(16,42,67,0.09), 0 2px 6px rgba(16,42,67,0.05);
  --shadow-lg: 0 12px 40px rgba(16,42,67,0.13), 0 4px 12px rgba(16,42,67,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--steel-dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--steel);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.logo span { color: var(--steel); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--steel);
  background: var(--steel-light);
}
.nav-cta {
  background: var(--steel) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 7px !important;
}
.nav-cta:hover { background: var(--steel-dark) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--steel-dark) 55%, var(--steel) 100%);
  color: white;
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #5ce8a0;
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: #a8d8f5;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: white;
  color: var(--steel-dark);
}
.btn-primary:hover { background: var(--steel-light); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.hero-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ─── SECTIONS ───────────────────────────────────── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ─── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  padding: 1.5rem 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-item svg { width: 18px; height: 18px; color: var(--steel); }

/* ─── CATEGORIES ─────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--steel);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.category-icon {
  width: 48px;
  height: 48px;
  background: var(--steel-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
}
.category-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}
.category-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ─── FEATURED PRODUCTS ──────────────────────────── */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.view-all-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.view-all-link:hover { color: var(--steel-dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-image {
  background: var(--gray-50);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--steel);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.product-badge.wholesale { background: #1a7a4a; }
.product-info { padding: 1rem 1.1rem 1.2rem; }
.product-category { font-size: 0.75rem; color: var(--steel); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.product-name { font-size: 0.95rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.35rem; line-height: 1.35; }
.product-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.8rem; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 1rem; font-weight: 600; color: var(--gray-900); }
.product-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }
.btn-sm {
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  background: var(--steel-light);
  color: var(--steel-dark);
  font-weight: 500;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn-sm:hover { background: var(--steel); color: white; }

/* ─── WHOLESALE CTA ──────────────────────────────── */
.wholesale-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wholesale-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.wholesale-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--steel-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-check svg { width: 12px; height: 12px; color: var(--steel); }
.wholesale-feature p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }
.wholesale-feature p strong { color: var(--gray-900); font-weight: 600; }
.wholesale-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.wholesale-visual h3 { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 1.25rem; }
.tier-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.tier-table th { text-align: left; color: var(--text-muted); font-weight: 500; padding: 0 0 0.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.tier-table td { padding: 0.6rem 0; border-top: 1px solid var(--border); color: var(--gray-900); }
.tier-table td:last-child { text-align: right; font-weight: 600; color: var(--steel); }
.wholesale-cta-btns { margin-top: 1.75rem; display: flex; gap: 10px; }
.btn-steel {
  background: var(--steel);
  color: white;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-steel:hover { background: var(--steel-dark); }
.btn-ghost {
  background: transparent;
  color: var(--steel);
  border: 1px solid var(--steel);
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--steel-light); }

/* ─── ABOUT TEASER ───────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.cert-card {
  background: var(--steel-light);
  border-radius: var(--radius);
  padding: 1rem;
}
.cert-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--steel-dark); margin-bottom: 2px; }
.cert-card p { font-size: 0.78rem; color: var(--text-muted); }
.about-image-block {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.about-image-block .big-icon { font-size: 5rem; margin-bottom: 1rem; }
.about-image-block p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.stats-row { display: flex; gap: 2rem; margin-top: 1.5rem; justify-content: center; }
.mini-stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--steel-dark); }
.mini-stat span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: white; margin-bottom: 0.75rem; }
.footer-brand .logo span { color: #a8d8f5; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.15); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: rgba(255,255,255,0.15); color: white; }
.footer-col h4 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #a8d8f5; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; margin-bottom: 0.6rem; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--steel-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #a8d8f5; }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--gray-900), var(--steel-dark));
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }

/* ─── PRODUCTS PAGE ──────────────────────────────── */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.filter-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); margin-bottom: 0.75rem; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
  cursor: pointer;
  padding: 3px 0;
}
.filter-option input[type="checkbox"] { accent-color: var(--steel); }
.filter-option.active { color: var(--steel); font-weight: 500; }
.filter-option .count { margin-left: auto; font-size: 0.75rem; color: var(--gray-400); }
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  flex: 1;
  max-width: 380px;
}
.search-bar svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; }
.search-bar input { border: none; outline: none; font-family: inherit; font-size: 0.88rem; color: var(--text); background: transparent; flex: 1; }
.sort-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--gray-600);
  outline: none;
  background: white;
  cursor: pointer;
}
.products-count { font-size: 0.85rem; color: var(--text-muted); }

/* ─── ABOUT PAGE ─────────────────────────────────── */
.about-section { padding: 5rem 2rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.team-section { background: var(--gray-50); padding: 4rem 2rem; border-top: 1px solid var(--border); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--steel-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}
.team-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--gray-900); margin-bottom: 3px; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ─── CONTACT PAGE ───────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: var(--steel-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
}
.contact-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--gray-900); margin-bottom: 3px; }
.contact-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.contact-form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--gray-600); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(26,111,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--steel);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--steel-dark); }
.map-placeholder {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.map-placeholder .map-icon { font-size: 2rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin-top: 1rem; font-size: 0.83rem; }
.hours-row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid var(--gray-50); color: var(--gray-600); }
.hours-row strong { color: var(--gray-900); }

/* ─── MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .wholesale-inner, .about-teaser, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.25rem; z-index: 99; }
  .hamburger { display: flex; }
  nav { position: relative; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .trust-bar-inner { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 8px; }
  .hero-stat strong { font-size: 1.4rem; }
}
