/* ===================================================
   IDEG Distribution – Stylesheet
   Color system:
     Navy:    #0f1e35
     Charcoal:#1e2d3d
     Mid:     #2d4060
     Accent:  #e07b24  (orange/gold)
     Accent2: #f5a040
     White:   #ffffff
     Off-wht: #f7f8fa
     Border:  #dde1e9
     Text:    #1a1a2e
     Muted:   #5a6478
=================================================== */

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

:root {
  --navy:    #0f1e35;
  --charcoal:#1e2d3d;
  --mid:     #2d4060;
  --accent:  #e07b24;
  --accent2: #f5a040;
  --white:   #ffffff;
  --off:     #f7f8fa;
  --border:  #dde1e9;
  --text:    #1a1a2e;
  --muted:   #5a6478;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(15,30,53,.10);
  --shadow-lg: 0 8px 32px rgba(15,30,53,.14);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
textarea { resize: vertical; }

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); }

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 24px;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .12s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: #c96c18; border-color: #c96c18; box-shadow: 0 4px 16px rgba(224,123,36,.35); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-accent {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-accent:hover { background: var(--off); }

.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-xl { padding: 16px 40px; font-size: 1.05rem; }

/* ---------- NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s;
  padding: 0;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .68rem;
  font-weight: 500;
  color: var(--accent2);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .18s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 28px;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transform: translateY(-110%);
  transition: transform .3s;
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .18s;
}
.mobile-link:hover { color: var(--white); }
.mobile-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 13px 20px;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 45%, #1a3050 100%);
  overflow: hidden;
}

/* Subtle geometric pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 61px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,123,36,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,123,36,.18);
  color: var(--accent2);
  border: 1px solid rgba(224,123,36,.3);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-statement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
}
.trust-statement svg { flex-shrink: 0; color: var(--accent2); }

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
}
.stat-item div { display: flex; flex-direction: column; }
.stat-item strong { font-size: .92rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.stat-item span { font-size: .8rem; color: var(--muted); }

/* ---------- PRODUCTS ---------- */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}
.product-card--wide .product-icon { margin-bottom: 0; }
.product-card--wide h3 { margin-bottom: 0; }
.product-card--wide p { margin-bottom: 0; }

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  background: var(--white);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(224,123,36,.35);
  transform: translateY(-3px);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(224,123,36,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.product-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.product-card h3 { margin-bottom: 10px; color: var(--navy); }
.product-card p { color: var(--muted); font-size: .94rem; margin-bottom: 18px; line-height: 1.6; }

.card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  transition: color .18s, gap .18s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { color: #c96c18; }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- WHOLESALE ---------- */
.wholesale-section {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.wholesale-text .section-label { display: block; margin-bottom: 10px; }
.wholesale-text h2 { margin-bottom: 18px; }
.wholesale-text > p { color: var(--muted); margin-bottom: 28px; font-size: 1rem; }

.wholesale-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.wholesale-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: .95rem;
}
.wholesale-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.wholesale-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wcard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.wcard:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }

.wcard-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wcard-icon svg { width: 20px; height: 20px; color: var(--white); }

.wcard div { display: flex; flex-direction: column; }
.wcard strong { font-size: .92rem; font-weight: 700; color: var(--navy); }
.wcard span { font-size: .8rem; color: var(--muted); }

/* ---------- SOURCING ---------- */
.sourcing-section { background: var(--white); }

.sourcing-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.sourcing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.sourcing-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sourcing-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(224,123,36,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sourcing-icon svg { width: 20px; height: 20px; color: var(--accent); }
.sourcing-list strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 3px; }
.sourcing-list span { font-size: .88rem; color: var(--muted); }

.callout-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  position: sticky;
  top: 92px;
}
.callout-icon {
  width: 52px; height: 52px;
  color: var(--accent2);
  margin: 0 auto 16px;
}
.callout-box h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.callout-box p { color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 24px; line-height: 1.65; }

/* ---------- WHO WE SERVE ---------- */
.serve-section { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.serve-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 16px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.serve-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(224,123,36,.35);
  transform: translateY(-3px);
}
.serve-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15,30,53,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.serve-icon svg { width: 24px; height: 24px; color: var(--navy); }
.serve-card span { font-size: .9rem; font-weight: 600; color: var(--navy); }

/* ---------- DELIVERY ---------- */
.delivery-section { background: var(--white); }

.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.delivery-icon-large {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--navy), var(--mid));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.delivery-icon-large svg { width: 52px; height: 52px; color: var(--white); }

.delivery-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.delivery-badge {
  background: rgba(224,123,36,.1);
  color: var(--accent);
  border: 1px solid rgba(224,123,36,.2);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: .82rem;
  font-weight: 600;
}

.delivery-text .section-label { display: block; margin-bottom: 10px; }
.delivery-text h2 { margin-bottom: 18px; }
.delivery-text > p { color: var(--muted); margin-bottom: 28px; }

.delivery-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.delivery-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
}
.delivery-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--off); border-top: 1px solid var(--border); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text .section-label { display: block; margin-bottom: 10px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }

.about-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.about-badge svg { width: 16px; height: 16px; color: var(--accent); }

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}
.about-card:last-child { margin-bottom: 0; }
.about-card h3 { font-size: 1rem; margin-bottom: 10px; }
.about-card p { color: var(--muted); font-size: .93rem; margin-bottom: 16px; }
.about-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
  border-color: transparent;
}
.about-card--accent h3 { color: var(--white); }
.about-card--accent p { color: rgba(255,255,255,.72); }

/* ---------- QUOTE FORM ---------- */
.quote-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 60%, #1c3050 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.02) 60px, rgba(255,255,255,.02) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.02) 60px, rgba(255,255,255,.02) 61px);
  pointer-events: none;
}

.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.65); }
.section-label--light { color: var(--accent2); }

.quote-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.quote-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 16px 56px rgba(0,0,0,.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { margin-bottom: 20px; }

label {
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
}
.required { color: var(--accent); }

input, textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: #aab0be; }
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,123,36,.15);
}
input.error, textarea.error { border-color: #d9534f; }

.form-submit {
  margin-top: 28px;
  text-align: center;
}
.form-note {
  margin-top: 12px;
  font-size: .83rem;
  color: var(--muted);
}

.form-success {
  background: var(--white);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 16px 56px rgba(0,0,0,.25);
}
.form-success svg {
  width: 60px; height: 60px;
  color: #27a163;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 1rem; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--off); border-top: 1px solid var(--border); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-label { display: block; margin-bottom: 10px; }
.contact-info h2 { margin-bottom: 28px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(224,123,36,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: .92rem; font-weight: 700; color: var(--navy); }
.contact-item span, .contact-item a { font-size: .95rem; color: var(--muted); transition: color .18s; }
.contact-item a:hover { color: var(--accent); }

.compliance-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(224,123,36,.07);
  border: 1px solid rgba(224,123,36,.2);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.compliance-note svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.compliance-note p { font-size: .9rem; color: var(--text); }

.contact-cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 92px;
}
.contact-cta-box h3 { font-size: 1.3rem; margin-bottom: 12px; }
.contact-cta-box p { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }

.contact-divider {
  margin: 20px 0 10px;
  font-size: .85rem;
  color: var(--muted);
  position: relative;
}
.contact-divider::before, .contact-divider::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 1px;
  background: var(--border);
  margin: 0 10px;
}

.contact-email-link {
  font-weight: 600;
  color: var(--accent);
  font-size: .95rem;
  transition: color .18s;
}
.contact-email-link:hover { color: #c96c18; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-location svg { width: 14px; height: 14px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-col a, .footer-col .footer-info {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  transition: color .18s;
}
.footer-col a:hover { color: var(--accent2); }
.footer-col .footer-info { cursor: default; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(224,123,36,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: #c96c18; }
.back-to-top svg { width: 20px; height: 20px; }

/* ===================================================
   RESPONSIVE
=================================================== */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .wholesale-inner { gap: 48px; }
  .sourcing-grid { grid-template-columns: 1fr; }
  .sourcing-callout .callout-box { position: static; }
  .delivery-inner { gap: 48px; }
  .about-inner { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--wide {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .product-card--wide p { grid-column: 1 / -1; }
  .product-card--wide .card-link { grid-column: 1 / -1; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero-content { padding-top: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 18px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }

  .products-grid { grid-template-columns: 1fr; }
  .product-card--wide {
    grid-column: span 1;
    display: block;
  }
  .product-card--wide .product-icon { margin-bottom: 18px; }
  .product-card--wide h3 { margin-bottom: 10px; }
  .product-card--wide p { margin-bottom: 18px; }

  .wholesale-inner { grid-template-columns: 1fr; gap: 40px; }

  .serve-grid { grid-template-columns: repeat(3, 1fr); }

  .delivery-inner { grid-template-columns: 1fr; gap: 40px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .quote-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-cta-box { position: static; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col:last-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .serve-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .footer-links { grid-template-columns: 1fr; }
  .footer-col:last-child { grid-column: span 1; }

  h2 { font-size: 1.55rem; }
}
