:root {
  --forest: #1a472a;
  --forest-dark: #122e1c;
  --forest-light: #2a6040;
  --gold: #c5a059;
  --gold-light: #d4b278;
  --gold-dark: #a9813f;
  --cream: #faf8f3;
  --ink: #0d1b0f;
  --mist: #f4f1eb;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.display { font-family: 'Playfair Display', serif; }
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
#navbar.scrolled {
  background: rgba(250, 248, 243, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
}
#navbar.top { background: transparent; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; font-weight: 800; }
#navbar.scrolled .nav-logo { color: var(--forest); }
.nav-logo span { color: var(--gold); }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.2s; padding: 0 1rem;
}
#navbar.scrolled .nav-links a { color: #444; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #fff !important;
  padding: 0.55rem 1.4rem !important; border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--forest) !important; color: #fff !important; }

/* ── MOBILE MENU ── */
#mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 1900;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}
#mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px;
  background: var(--forest); z-index: 1950;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 2rem 1.5rem;
}
#mobile-drawer.open { transform: translateX(0); }
#mobile-overlay.open { display: block; }
.drawer-link {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--gold); }
.drawer-cta {
  margin-top: 2rem; background: var(--gold); color: #fff !important;
  text-align: center; border-radius: 6px; padding: 1rem;
  border-bottom: none !important; font-weight: 700;
}

/* ── HERO ── */
#hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-carousel {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute;
  inset: -8px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(1px);
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
#hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,20,0.82) 0%, rgba(26,71,42,0.65) 60%, rgba(10,25,20,0.88) 100%);
}
#hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35; pointer-events: none;
}
#hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 2rem 1.5rem; max-width: 920px;
  animation: heroFadeUp 1.2s cubic-bezier(.16,1,.3,1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(197,160,89,0.18); border: 1px solid rgba(197,160,89,0.4);
  color: var(--gold-light); padding: 0.4rem 1rem;
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-h1 em { color: var(--gold); font-style: normal; }
.hero-h1 .line-green { color: #7ecb98; }
.hero-sub {
  color: rgba(255,255,255,0.72); font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; line-height: 1.7; max-width: 700px; margin: 0 auto 1.5rem;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-chip-row { display:flex; flex-wrap:wrap; gap:0.5rem; justify-content:center; margin-bottom:2rem; }
.hero-chip { font-size:0.68rem; font-weight:600; letter-spacing:0.04em; color:rgba(255,255,255,0.85); background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16); padding:0.3rem 0.75rem; border-radius:100px; }

/* ── HERO CTA LAYOUT ── */

.hero-actions {
  width: min(100%, 780px);
  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 12px;

  align-items: stretch;
}

.hero-actions > a {
  width: 100%;
  min-width: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  white-space: nowrap;
}

/* Catalogue button */
.hero-actions .btn-download {
  background: transparent;
  color: #fff;

  border: 1.5px solid rgba(255,255,255,0.5);

  padding: 0.9rem 1.5rem;

  border-radius: 4px;

  font-weight: 600;
  font-size: 0.78rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  text-decoration: none;

  backdrop-filter: blur(4px);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hero-actions .btn-download:hover {
  background: rgba(255,255,255,0.15);

  border-color: #fff;

  transform: translateY(-2px);
}
 
 /* Desktop: 3 buttons in a row */
 /* ── HERO CTA RESPONSIVE ── */

/* Desktop */
@media (min-width: 769px) {

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-actions .catalogue-button {
    grid-column: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .hero-actions {
    width: 100%;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  /*
    First row:
    View All Products | Request a Quote
  */

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }

  /*
    Second row:
    Download Catalogue
    spans both columns
  */

  .hero-actions .catalogue-button {
    grid-column: 1 / -1;

    width: 100%;
  }
}
 
 .btn-primary {
  background: var(--gold); color: #fff; padding: 0.9rem 2.2rem;
  border-radius: 4px; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(197,160,89,0.4);
}
.btn-primary:hover { background: #b08d47; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(197,160,89,0.5); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 4px; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.05);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }
.scroll-arrow { width: 20px; height: 20px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }

/* ── TRUST BAR ── */
#trust-bar {
  background: #fff; border-bottom: 1px solid #eee;
  padding: 0.6rem 1rem;
}
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem; align-items: center; }
.trust-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--mist); border: 1px solid #ece8e0;
  border-radius: 100px; padding: 0.28rem 0.8rem;
}
.trust-icon { width: 16px; height: 16px; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 9px; height: 9px; stroke: #fff; fill: none; }
.trust-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #555; white-space: nowrap; }
@media (max-width: 520px) {
  .trust-label { font-size: 0.56rem; }
  .trust-item { padding: 0.24rem 0.6rem; }
}

/* ── SECTION CHROME ── */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem; justify-content: center;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 0 0 32px; height: 1px; background: var(--gold); opacity: 0.5;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; color: var(--forest);
  line-height: 1.15; margin-bottom: 1rem;
}
.section-h2.light { color: #fff; }
.section-rule { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 1.2rem; }

/* ── ABOUT / STATS ── */
.stat-box {
  background: #fff; border: 1px solid #eee; border-radius: 8px;
  padding: 1.1rem 1rem; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--forest); line-height: 1; }
.stat-unit { font-size: 0.9rem; color: var(--gold); }
.stat-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-top: 0.35rem; }
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0.75rem; margin-bottom:2rem; }
@media (max-width: 560px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

.info-list-item { display:flex; align-items:flex-start; gap:0.75rem; padding:0.85rem 1rem; background:var(--mist); border-radius:8px; border-left:3px solid var(--forest); margin-bottom:0.6rem; }
.info-list-item:nth-child(even) { border-left-color: var(--gold); }
.info-list-item svg { flex-shrink:0; margin-top:2px; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid #eee; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

/* Product "label" header — signature spice-tin design, replaces stock photography for cohesion */
.product-label {
  height: 150px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.1rem; color: #fff;
}
.product-label.forest { background: linear-gradient(150deg, var(--forest) 0%, var(--forest-dark) 100%); }
.product-label.gold { background: linear-gradient(150deg, var(--gold) 0%, var(--gold-dark) 100%); }
.product-label::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1.4px);
  background-size: 11px 11px; opacity: 0.55;
}
.product-label::after {
  content: ''; position: absolute; left: 14px; right: 14px; top: 14px; bottom: 14px;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 6px; pointer-events: none;
}
.product-latin { position: relative; z-index: 1; font-style: italic; font-size: 0.66rem; letter-spacing: 0.05em; opacity: 0.8; margin-bottom: 0.35rem; }
.product-label-name { position: relative; z-index: 1; font-family: 'Playfair Display', serif; font-size: 1.28rem; font-weight: 800; line-height: 1.18; }
.product-label-region { position: relative; z-index: 1; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.78; margin-top: 0.4rem; }
.product-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px);
  padding: 0.25rem 0.65rem; border-radius: 100px;
  font-size: 0.56rem; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--forest);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover img { transform: scale(1.04); }
.product-card-body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.4rem; }
.product-desc { font-size: 0.8rem; color: #777; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.btn-enquire {
  width: 100%; padding: 0.75rem; background: var(--forest); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s;
}
.btn-enquire:hover { background: var(--gold); }
.btn-enquire.gold { background: var(--gold); }
.btn-enquire.gold:hover { background: var(--forest); }

/* Filter Tabs */
.filter-tab {
  padding: 0.7rem 2rem; border-radius: 100px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent; transition: all 0.2s;
}
.filter-tab.active-agro { background: var(--forest); color: #fff; border-color: var(--forest); }
.filter-tab.active-craft { background: var(--gold); color: #fff; border-color: var(--gold); }
.filter-tab.inactive-agro { background: transparent; color: var(--forest); border-color: var(--forest); }
.filter-tab.inactive-craft { background: transparent; color: var(--gold); border-color: var(--gold); }

/* ── WHY KUNSHAK ── */
.why-card {
  background: #fff; border-radius: 10px; padding: 1.8rem;
  border: 1px solid #eee; border-top: 3px solid var(--forest);
  transition: box-shadow 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.09); }
.why-icon { width: 44px; height: 44px; background: var(--forest); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; }

/* ── TEAM ── */
.team-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #eee; transition: box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.team-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.team-img-wrap { position: relative; overflow: hidden; height: 260px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(20%); transition: filter 0.4s, transform 0.4s; }
.team-card:hover .team-img-wrap img { filter: grayscale(0); transform: scale(1.03); }
.team-body { padding: 1.5rem; }
.team-role { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--forest); }
.team-bio { font-size: 0.82rem; color: #666; line-height: 1.65; margin-top: 0.6rem; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #e8e4da; }
.faq-q {
  width: 100%; text-align: left; padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--forest); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.2s; }
.faq-icon svg { width: 12px; height: 12px; stroke: #fff; fill: none; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 1.2rem; font-size: 0.88rem; color: #666; line-height: 1.7; }

/* ── BLOGS ── */
.blog-card {
  background: #fff; border-radius: 12px; padding: 1.8rem;
  border: 1px solid #eee; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.blog-tag { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin: 0.5rem 0 0.75rem; }
.blog-excerpt { font-size: 0.83rem; color: #777; line-height: 1.65; }
.blog-read { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); margin-top: 1.2rem; display: flex; align-items: center; gap: 0.4rem; }

/* ── MODALS ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 18px; width: 100%; max-width: 860px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalIn 0.35s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn { from{opacity:0;transform:scale(0.95) translateY(20px);} to{opacity:1;transform:scale(1) translateY(0);} }
.modal-header {
  background: var(--forest); padding: 1.4rem 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 10;
}
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: #fff; }
.modal-close {
  background: rgba(255,255,255,0.12); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-close svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.modal-body { padding: 1.8rem; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid #f0ece4; }
.spec-table tr:last-child { border: none; }
.spec-table td { padding: 0.6rem 0; font-size: 0.8rem; }
.spec-table td:first-child { color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; }
.spec-table td:last-child { text-align: right; font-weight: 700; color: var(--forest); }
.form-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #888; display: block; margin-bottom: 0.35rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e4e0d6;
  border-radius: 8px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s; background: #fff; color: var(--ink);
}
.form-input:focus { border-color: var(--forest); }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--forest); margin-top: 2px; flex-shrink: 0; }
.form-check-label { font-size: 0.8rem; color: #555; line-height: 1.4; }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--forest); color: #fff;
  border: none; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--gold); }
.btn-submit:active { transform: scale(0.98); }

/* Blog modal */
.blog-modal-content { padding: 2rem 2.5rem; }
.blog-modal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--ink); margin-bottom: 1rem; line-height: 1.3; }
.blog-modal-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--forest); margin: 1.4rem 0 0.6rem; }
.blog-modal-content p { font-size: 0.92rem; line-height: 1.8; color: #555; margin-bottom: 0.8rem; }
.blog-modal-content strong { color: var(--ink); }
.highlight-quote {
  border-left: 3px solid var(--gold); padding: 1rem 1.2rem;
  background: #faf8f3; margin: 1.2rem 0; border-radius: 0 8px 8px 0;
  font-style: italic; color: #555; font-size: 0.9rem;
}

/* ── LOGISTICS ── */
.logistics-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logistics-item:last-child { border: none; }
.logistics-dot { width: 42px; height: 42px; flex-shrink: 0; background: rgba(197,160,89,0.15); border: 1.5px solid var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logistics-dot svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }

.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.9rem; }
.market-region { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 1rem 1.1rem; }
.market-region-title { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; }
.market-region ul { list-style: none; }
.market-region li { font-size: 0.82rem; color: rgba(255,255,255,0.85); padding: 0.16rem 0; }

/* ── CONTACT ── */
.contact-info-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid #eee; }
.contact-info-item:last-child { border: none; }
.contact-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--mist); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 17px; height: 17px; stroke: var(--forest); fill: none; }

/* ── FLOATING BUTTONS ── */
#float-btns { position: fixed; bottom: 24px; right: 20px; z-index: 1500; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.float-btn svg { width: 24px; height: 24px; stroke: #fff; fill: none; }

/* LANGUAGE SWITCHER – working native select */
#lang-box {
  position: fixed; left: 20px; bottom: 24px; z-index: 1500;
  width: 142px; height: 42px; display: flex; align-items: center;
  background: #fff; border: 1px solid #ddd8ce; border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.10); overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#lang-box:hover { border-color: var(--gold); box-shadow: 0 7px 22px rgba(0,0,0,0.13); }
#lang-box:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(26,71,42,0.10), 0 5px 18px rgba(0,0,0,0.10); }
.lang-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); z-index: 3; pointer-events: none; width: 17px; height: 17px; }
.lang-icon svg { width: 17px; height: 17px; stroke: var(--forest); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; fill: none; }
#lang-label { position: absolute; left: 40px; right: 28px; top: 50%; transform: translateY(-50%); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: #26352b; pointer-events: none; z-index: 2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#lang-box::after { content: '⌄'; position: absolute; right: 13px; top: 50%; transform: translateY(-58%); color: #555; font-size: 15px; font-weight: 600; pointer-events: none; z-index: 3; }
#lang-select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 4; border: none; background: transparent; }
#google_translate_element { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.goog-te-banner-frame, .goog-logo-link, .goog-te-gadget-icon, .goog-te-gadget span { display: none !important; }
@media (max-width: 768px) {
  #lang-box { left: 16px; bottom: 18px; width: 132px; height: 40px; }
  .lang-icon { left: 11px; width: 16px; height: 16px; }
  .lang-icon svg { width: 16px; height: 16px; }
  #lang-label { font-size: 12px; left: 36px; }
  #lang-box::after { right: 11px; font-size: 14px; }
}

/* ── PARTNER FORM ── */
.partner-input {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid #e4e0d6;
  border-radius: 8px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s; background: #fff;
}
.partner-input:focus { border-color: var(--forest); }
.partner-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #888; display: block; margin-bottom: 0.4rem; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.5); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-logo span { color: var(--gold); }
.footer-link { color: rgba(255,255,255,0.5); font-size: 0.82rem; text-decoration: none; display: block; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.hidden { display: none !important; }

@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }
  .nav-links, .nav-cta-desktop { display: none; }

  /* ── MOBILE HERO COMPACT ── (ISSUE 1) */
  #hero { min-height: 85vh; }
  #hero-content { padding: 1rem 1rem; }
  .hero-h1 {
    font-size: 1.8rem;
    line-height: 1.05;
    margin-bottom: 0.6rem;
  }
  .hero-sub {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0 auto 0.75rem;
  }
  .hero-chip-row {
    gap: 0.3rem;
    margin-bottom: 0.75rem;
  }
  .hero-chip {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-download {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }
  .hero-btns { align-items: center; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .blog-modal-content { padding: 1.5rem; }
  .modal-body { padding: 1.2rem; }
}

/* ── PRODUCT PAGE LAYOUT (added for multi-page architecture) ── */
.product-page-hero {
  background: linear-gradient(135deg, rgba(10,25,20,0.88) 0%, rgba(26,71,42,0.72) 60%, rgba(10,25,20,0.9) 100%);
  color: #fff; padding: 9rem 0 4.5rem; text-align: center; position: relative; overflow: hidden;
}
.product-page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.product-page-hero h1 em { color: var(--gold); font-style: normal; }

.product-page-hero .latin { font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.product-page-hero p { color: rgba(255,255,255,0.78); font-size: 0.95rem; max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.7; }
.product-page-hero .btn-primary { display: inline-block; }
.breadcrumb {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span.sep { margin: 0 0.4rem; color: rgba(255,255,255,0.4); }

.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 820px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-detail-media { position: sticky; top: 100px; }
@media (max-width: 820px) { .product-detail-media { position: static; } }
.product-detail-media img {
  width: 100%; border-radius: 16px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 1px solid #eee;
}
.spec-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 1.6rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.spec-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 800; color: var(--forest); margin-bottom: 1rem; }
.spec-list { list-style: none; width: 100%; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid #f0ece4; font-size: 0.85rem; }
.spec-list li:last-child { border: none; }
.spec-list li span:first-child { color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; }
.spec-list li span:last-child { text-align: right; font-weight: 700; color: var(--forest); }
.compliance-note {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1.1rem;
  background: #e8f4ec; border-radius: 8px; font-size: 0.72rem; font-weight: 600; color: var(--forest); margin-top: 1.2rem;
}
.application-tag {
  display: inline-block; background: var(--mist); border: 1px solid #ece8e0;
  padding: 0.35rem 0.75rem; border-radius: 100px; font-size: 0.7rem; font-weight: 600; color: #555; margin: 0.25rem 0.25rem 0 0;
}

/* =====================================================
   PREMIUM QUICK LINKS
===================================================== */

.quick-links-section {
  position: relative;

  padding: 3rem 0;

  background:
    linear-gradient(
      135deg,
      var(--forest-dark) 0%,
      var(--forest) 100%
    );

  overflow: hidden;
}

/* subtle decorative glow */

.quick-links-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -280px;
  right: -180px;

  border-radius: 50%;

  background: rgba(197,160,89,0.08);

  pointer-events: none;
}

.quick-links-section::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  bottom: -250px;
  left: -180px;

  border-radius: 50%;

  background: rgba(255,255,255,0.025);

  pointer-events: none;
}

/* Header */

  .quick-links-header {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.quick-links-eyebrow {
  display: inline-flex;

  align-items: center;
  gap: 12px;

    margin-bottom: 0.7rem;

    color: var(--gold);

    font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

.quick-links-eyebrow::before,
.quick-links-eyebrow::after {
  content: "";

  width: 28px;

  height: 1px;

  background: var(--gold);

  opacity: 0.55;
}

.quick-links-header h2 {
  margin: 0;

  color: #fff;

  font-family: 'Playfair Display', serif;

    font-size: clamp(1.7rem, 3.5vw, 2.6rem);

    font-weight: 800;

    line-height: 1.1;

  letter-spacing: -0.02em;
}

.quick-links-header h2 span {
  color: var(--gold);
}

.quick-links-header p {
    max-width: 580px;

    margin: 0.7rem auto 0;

    color: rgba(255,255,255,0.65);

    font-size: 0.8rem;

  line-height: 1.7;
}

/* Grid */

.quick-links-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1px;

  max-width: 980px;

  margin: 0 auto;

  background: rgba(197,160,89,0.18);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

/* Card */

.quick-link-card {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

    min-height: 175px;

    padding: 1.1rem;

    background: rgba(250,248,243,0.98);

  color: var(--forest);
  text-decoration: none;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* number */

.quick-link-number {
  position: absolute;

    top: 1.1rem;
    right: 1.1rem;

    color: rgba(26,71,42,0.18);

    font-family: 'Playfair Display', serif;

    font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}

/* icon */

.quick-link-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 1rem;

  border: 1px solid rgba(197,160,89,0.55);

  border-radius: 10px;

  background: #fff;

  color: var(--forest);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

  .quick-link-icon svg {
    width: 20px;
    height: 20px;
  }

/* heading */

.quick-link-card h3 {
    margin: 0 0 0.4rem;

    color: var(--forest);

    font-family: 'Playfair Display', serif;

    font-size: 0.95rem;

    font-weight: 800;
  }

/* description */

.quick-link-card p {
  max-width: 240px;

  margin: 0;

    color: #687067;

    font-size: 0.68rem;

    line-height: 1.65;
  }

/* arrow */

.quick-link-arrow {
  margin-top: auto;

    padding-top: 1rem;

    color: var(--gold);

    font-size: 1.1rem;

    line-height: 1;

  transition:
    transform 0.25s ease;
}

/* hover */

.quick-link-card:hover {
  background: #fff;

  transform: translateY(-4px);

  z-index: 2;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.15);
}

.quick-link-card:hover .quick-link-icon {
  background: var(--forest);

  border-color: var(--forest);

  color: var(--gold);
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(6px);
}

/* focus */

.quick-link-card:focus-visible {
  outline: 3px solid var(--gold);

  outline-offset: -3px;

  z-index: 5;
}

/* Catalogue special treatment */

.quick-link-card[href*="Catalogue"],
.quick-link-card[href*="Product-Catalogue"] {
  background:
    linear-gradient(
      145deg,
      #fffdf8,
      #f5efe2
    );
}

/* Mobile */

@media (max-width: 768px) {

  .quick-links-section {
    padding: 2rem 0;
  }

  .quick-links-header {
    padding: 0 1rem;
    margin-bottom: 1rem;
  }

  .quick-links-header h2 {
    font-size: 1.35rem;
  }

  .quick-links-header p {
    font-size: 0.62rem;
    margin-top: 0.5rem;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0.5rem;
  }

  .quick-link-card {
    min-height: 135px;
    padding: 0.75rem;
  }

  .quick-link-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
  }

  .quick-link-icon svg {
    width: 15px;
    height: 15px;
  }

  .quick-link-card h3 {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .quick-link-card p {
    font-size: 0.52rem;
    line-height: 1.45;
  }

  .quick-link-arrow {
    padding-top: 0.5rem;
    font-size: 0.85rem;
  }

  .quick-link-number {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.55rem;
  }
}

/* Small phones */

@media (max-width: 420px) {

  .quick-links-grid {
    margin: 0 0.5rem;
  }

  .quick-link-card {
    min-height: 155px;

    padding: 0.75rem;
  }

  .quick-link-card h3 {
    font-size: 0.74rem;
  }

  .quick-link-card p {
    font-size: 0.55rem;
  }
}
