/* ============================================
   ARBOVI — Global Styles
   arbovi.com
   ============================================ */

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

:root {
  --green:       #1B4332;
  --green-mid:   #2D6A4F;
  --green-light: #40916C;
  --green-pale:  #95D5B2;
  --gold:        #D4A843;
  --gold-light:  #F0CC7A;
  --cream:       #F8F4EE;
  --warm:        #F2EDE6;
  --white:       #FFFFFF;
  --dark:        #0D1F15;
  --text:        #2C3820;
  --muted:       #6B7C6B;
  --border:      #D6E4D6;
  --shadow:      0 4px 24px rgba(27,67,50,0.10);
  --radius:      14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GLOBAL NAV ── */
.arb-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--green);
  height: 60px;
  display: flex; align-items: center;
  padding: 0 24px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.arb-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800;
  color: #fff; text-decoration: none;
  letter-spacing: -0.5px;
}
.arb-logo span { color: var(--gold); }
.arb-nav-links { display: flex; gap: 22px; align-items: center; }
.arb-nav-link {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.arb-nav-link:hover { color: #fff; }
.arb-nav-cta {
  background: var(--gold); color: var(--dark);
  font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px;
  text-decoration: none; transition: all 0.15s;
}
.arb-nav-cta:hover { background: var(--gold-light); }

/* Mobile nav */
.arb-nav-mobile { display: none; gap: 10px; align-items: center; }
.arb-nav-mobile a { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; }

@media (max-width: 700px) {
  .arb-nav-links { display: none; }
  .arb-nav-mobile { display: flex; }
}

/* ── TRUST BAR ── */
.arb-trust-bar {
  background: var(--dark);
  padding: 8px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.arb-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.arb-trust-item .hi { color: var(--gold-light); }
.arb-trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

/* ── GLOBAL FOOTER ── */
.arb-footer {
  background: var(--dark);
  padding: 40px 24px 32px;
  text-align: center;
}
.arb-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800;
  color: #fff; text-decoration: none;
  display: inline-block; margin-bottom: 8px;
}
.arb-footer-logo span { color: var(--gold); }
.arb-footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.arb-footer-links {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 4px 0;
  margin-bottom: 20px;
}
.arb-footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.arb-footer-links a:last-child { border-right: none; }
.arb-footer-links a:hover { color: #fff; }
.arb-footer-bottom {
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.arb-footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ── FOOTER COLUMN GROUPS (mirrors top nav dropdowns) ── */
.arb-footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: left;
}
.arb-footer-col { display: flex; flex-direction: column; gap: 6px; }
.arb-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.arb-footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.arb-footer-col a:hover { color: #fff; }
@media (max-width: 600px) {
  .arb-footer-cols { text-align: center; }
}

/* ── MOBILE STICKY BAR ── */
.arb-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--green);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.arb-sticky-bar a {
  flex: 1; padding: 13px 8px;
  background: var(--gold); color: var(--dark);
  border-radius: 10px; font-weight: 700;
  font-size: 14px; text-decoration: none;
  text-align: center; transition: all 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.arb-sticky-bar a.outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
@media (max-width: 700px) {
  .arb-sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; font-weight: 700; border-radius: 10px; transition: all 0.15s; cursor: pointer; text-decoration: none; border: none; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-md { padding: 11px 20px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-mid); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-outline-green { border: 2px solid var(--border); color: var(--green); background: transparent; }
.btn-outline-green:hover { border-color: var(--green); background: #f0f7f4; }

/* ── SECTION HELPERS ── */
.section { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.section-sm { max-width: 780px; margin: 0 auto; padding: 48px 24px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 6px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--dark); line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--muted); margin-top: 8px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
.view-all { font-size: 14px; font-weight: 600; color: var(--green); text-decoration: none; white-space: nowrap; }
.view-all:hover { text-decoration: underline; }

/* ── CARDS ── */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform 0.15s, box-shadow 0.15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ── SUPPLIER BADGES ── */
.sbadge { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.sbadge-no-min   { background: #d4edda; color: #155724; }
.sbadge-farm     { background: #fff3cd; color: #856404; }
.sbadge-bilingual{ background: #cce5ff; color: #004085; }
.sbadge-delivery { background: #e2e8f0; color: #2d3748; }
.sbadge-online   { background: #ede9fe; color: #4c1d95; }
.sbadge-open     { background: #f0fdf4; color: #166534; }
.sbadge-featured { background: var(--gold); color: var(--dark); }

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.italic { font-style: italic; }
.fw-700 { font-weight: 700; }
.serif { font-family: 'Playfair Display', serif; }
