/* ZAS Wholesalers — shared styles */

:root {
  --navy: #0f2340;
  --navy-light: #16335c;
  --gold: #c9922f;
  --gold-light: #e0ac52;
  --bg: #f7f8fa;
  --white: #ffffff;
  --text: #2b3140;
  --text-light: #6b7280;
  --border: #e5e8ee;
  --shadow: 0 4px 20px rgba(15, 35, 64, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */

header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: #d6dcea;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  background:
    linear-gradient(120deg, rgba(15,35,64,0.92), rgba(15,35,64,0.75)),
    repeating-linear-gradient(45deg, #1c3a63 0px, #1c3a63 2px, #16335c 2px, #16335c 40px);
  color: var(--white);
  padding: 96px 24px 88px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.hero h1 span { color: var(--gold-light); }

.hero p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: #d6dcea;
  font-size: 1.08rem;
}

.page-hero {
  padding: 64px 24px;
}
.page-hero h1 { font-size: 2.2rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,146,47,0.35); }

.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */

section { padding: 72px 24px; }

.section-tight { padding: 48px 24px; }

.section-alt { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-header p { color: var(--text-light); }

/* ---------- Grids / Cards ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.95rem; }

.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

/* Product category cards */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); }

.product-card .thumb {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .thumb img { transform: scale(1.06); }

.product-card .body { padding: 22px 22px 26px; }
.product-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.product-card p { color: var(--text-light); font-size: 0.92rem; }

/* CTA band */

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { font-size: 1.9rem; margin-bottom: 14px; }
.cta-band p { color: #d6dcea; max-width: 560px; margin: 0 auto 28px; }

/* ---------- About / mission ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.mv-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.3rem; }
.mv-card .tag { color: var(--gold); font-weight: 700; letter-spacing: 1px; font-size: 0.78rem; text-transform: uppercase; }

/* ---------- Forms ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: flex-start;
}

form.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

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

label { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfbfd;
}
input:focus, textarea:focus { outline: 2px solid var(--gold-light); border-color: transparent; }

textarea { min-height: 130px; resize: vertical; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 34px;
}
.contact-info-card h3 { margin-bottom: 18px; font-size: 1.2rem; }
.contact-info-card .info-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-card .info-item .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-info-card p, .contact-info-card a { color: #d6dcea; font-size: 0.92rem; }

/* ---------- Legal pages ---------- */

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 32px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-light); margin-bottom: 14px; font-size: 0.96rem; }
.legal-content ul { margin: 0 0 14px 22px; color: var(--text-light); font-size: 0.96rem; }
.legal-content li { margin-bottom: 6px; }
.legal-content .updated { color: var(--text-light); font-size: 0.85rem; margin-bottom: 28px; }

/* ---------- Footer ---------- */

footer.site-footer {
  background: #0a1830;
  color: #a9b3c9;
  padding: 56px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-grid p { font-size: 0.9rem; color: #8b96ae; margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.9rem; color: #a9b3c9; }
.footer-grid a:hover { color: var(--gold-light); }

.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }

.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.social-row a:hover { background: var(--gold); color: var(--navy); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #7d88a0;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .two-col, .contact-wrap { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav { display: none; }
  nav.main-nav.open { display: block; width: 100%; }
  nav.main-nav.open ul { flex-direction: column; padding: 12px 0; }
  .nav-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hero h1 { font-size: 1.9rem; }
  .grid-3, .grid-4, .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 28px; }
}
