/* ═══════════════════════════════════════════════
   DAMADUM v2.0 — Complete Mobile-First CSS
   Admagnate Technologies
═══════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────── */
:root {
  --forest:       #1B4332;
  --forest-dark:  #0D2818;
  --forest-mid:   #2D6A4F;
  --forest-light: #40916C;
  --gold:         #C49A28;
  --gold-bright:  #E0B830;
  --gold-pale:    #F4D978;
  --cream:        #FAFAF5;
  --cream-dark:   #EDE8D5;
  --white:        #FFFFFF;
  --text-dark:    #111111;
  --text-mid:     #3D3D3D;
  --text-light:   #6B6B6B;
  --green-wa:     #25D366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg:    0 16px 52px rgba(0,0,0,0.16);
  --radius:       12px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h:     76px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--forest-dark); }

/* ─── LAYOUT ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section-pad { padding: 88px 0; }
.bg-forest      { background: var(--forest); }
.bg-forest-dark { background: var(--forest-dark); }
.bg-cream       { background: var(--cream); }
.bg-white       { background: var(--white); }
.text-center    { text-align: center; }
.mt-2           { margin-top: 2rem; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.section-label.light { color: var(--gold-pale); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--forest-dark);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.section-title.light { color: var(--white); }
.section-title em    { color: var(--gold); font-style: italic; }
.section-desc        { font-size: 1rem; color: var(--text-mid); max-width: 620px; margin: 0 auto; }
.section-header      { text-align: center; margin-bottom: 3.5rem; }

.gold-divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.72rem 1.5rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 0.9rem 2.1rem; font-size: 0.95rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest-dark);
  box-shadow: 0 4px 16px rgba(196,154,40,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,40,0.45); color: var(--forest-dark); }

.btn-forest { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-forest:hover { background: var(--forest-dark); border-color: var(--forest-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-gold { background: transparent; color: var(--gold-pale); border-color: rgba(196,154,40,0.6); }
.btn-outline-gold:hover { background: var(--gold); color: var(--forest-dark); border-color: var(--gold); }

.btn-outline-forest { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline-forest:hover { background: var(--forest); color: var(--white); }

.btn-whatsapp { background: var(--green-wa); color: var(--white); border-color: transparent; }
.btn-whatsapp:hover { background: #1fba59; color: var(--white); transform: translateY(-2px); }

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 0.55rem 1.2rem;
  border-radius: 5px;
  transition: var(--transition);
  margin-top: 0.75rem;
}
.btn-enquire:hover { background: var(--forest); color: var(--white); }

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,30,18,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,154,40,0.25);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.4); }
body.admin-bar .site-header { top: 32px; }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 20px;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,40,0.2);
  background: var(--white);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-list li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
  display: block;
}
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s ease;
}
.nav-list li a:hover, .nav-list li.current-menu-item a { color: var(--white); }
.nav-list li a:hover::after, .nav-list li.current-menu-item a::after { transform: translateX(-50%) scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.8rem; }

/* ─── HAMBURGER ──────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  width: 100%;
  background: #0a1e12;
  border-top: 1px solid rgba(196,154,40,0.2);
  z-index: 998;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  overflow-y: auto;
  max-height: calc(100vh - var(--header-h));
}
.mobile-nav.open { display: block; }
body.admin-bar .mobile-nav { top: calc(var(--header-h) + 32px); }

.mobile-nav-list { padding: 0.5rem 0; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-list li a {
  display: block;
  color: rgba(255,255,255,0.88);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-list li a:hover { background: rgba(196,154,40,0.1); color: var(--gold-pale); }
.mobile-nav-cta {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(45,106,79,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(27,67,50,0.4) 0%, transparent 50%),
    linear-gradient(160deg, #081810 0%, #1B4332 45%, #2D6A4F 75%, #0D2818 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px 80px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,154,40,0.12);
  border: 1px solid rgba(196,154,40,0.35);
  color: var(--gold-pale);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
}
.hero-headline em { font-style: italic; color: var(--gold-bright); display: block; }
.hero-sub {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.85rem;
}
.hero-tagline { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; }
.hero-tagline strong { color: var(--gold-pale); }

.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 700; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar { background: var(--white); padding: 2rem 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--cream-dark); }
.trust-grid { display: flex; align-items: stretch; justify-content: space-between; gap: 0; flex-wrap: nowrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.85rem;
  flex: 1; padding: 0.5rem 1rem;
  border-right: 1px solid var(--cream-dark);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.75rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--forest-dark); margin-bottom: 0.1rem; }
.trust-text span    { font-size: 0.76rem; color: var(--text-light); }

/* ─── ABOUT ──────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-logo-img { max-width: 260px; margin: 0 auto; border-radius: 12px; }
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.about-badge span { display: block; font-weight: 400; font-size: 0.68rem; opacity: 0.75; }
.credentials { margin-top: 2rem; }
.credential {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.88rem; font-weight: 600; color: var(--forest-dark);
}
.credential:last-child { border-bottom: none; }
.credential svg { color: var(--gold); flex-shrink: 0; }
.about-lead { font-size: 1.08rem; font-weight: 600; color: var(--text-dark); line-height: 1.65; margin-bottom: 1.25rem; }

/* ─── CATEGORY CARDS (Homepage) ──────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(196,154,40,0.2); }
.cat-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.75) 0%, transparent 50%);
}
.cat-tag {
  position: absolute;
  bottom: 10px; left: 12px;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.cat-body { padding: 1.25rem; }
.cat-body h3 { font-size: 1rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.45rem; }
.cat-body p  { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.85rem; line-height: 1.55; }
.cat-products-list { display: flex; flex-direction: column; gap: 0.18rem; margin-bottom: 1rem; }
.cat-products-list li { font-size: 0.77rem; color: var(--text-light); padding-left: 0.8rem; position: relative; }
.cat-products-list li::before { content:'·'; position:absolute; left:0; color:var(--gold); font-weight:700; }
.cat-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 800;
  color: var(--forest); letter-spacing: 0.06em; text-transform: uppercase;
  transition: gap 0.2s;
}
.cat-link:hover { gap: 0.65rem; color: var(--gold); }

/* ─── WHY US ─────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,154,40,0.18);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(196,154,40,0.4); transform: translateY(-4px); }
.why-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: rgba(196,154,40,0.22); line-height:1; margin-bottom: 0.75rem; }
.why-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.65rem; font-weight: 700; }
.why-card p  { font-size: 0.86rem; color: rgba(255,255,255,0.62); margin: 0; }

/* ─── EXPORT SECTION ─────────────────────────── */
.export-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.export-points { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.export-points li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.7rem 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem; color: var(--text-mid);
}
.export-points li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.export-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.export-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196,154,40,0.15);
  text-align: center;
}
.export-globe { font-size: 3.5rem; margin-bottom: 1rem; }
.export-card h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.country-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.ctag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 0.32rem 0.8rem;
  font-size: 0.77rem; font-weight: 700; color: var(--forest);
}

/* ─── CTA SECTION ────────────────────────────── */
.cta-section { padding: 68px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-tag {
  display: inline-block;
  background: rgba(196,154,40,0.14);
  border: 1px solid rgba(196,154,40,0.3);
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--white); margin-bottom: 0.75rem; }
.cta-desc  { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 480px; margin: 0; }
.cta-content { flex: 1; min-width: 260px; }
.cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

/* ─── PAGE HERO ──────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,106,79,0.4) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-content { max-width: 660px; }
.page-hero-title { font-size: clamp(2.1rem, 5vw, 3.6rem); color: var(--white); margin-bottom: 1rem; }
.page-hero-title em { font-style: italic; color: var(--gold-bright); }
.page-hero-content p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin: 0; }

/* ─── FILTER BAR ─────────────────────────────── */
.filter-bar-section {
  background: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.filter-bar { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.filter-btn.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

/* ─── PRODUCT CARDS ──────────────────────────── */
.cat-section-header {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--cream-dark);
}
.cat-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; flex-shrink: 0;
}
.cat-section-header h2 { font-size: 1.6rem; margin: 0 0 0.2rem; color: var(--forest-dark); }
.cat-section-header p  { font-size: 0.78rem; color: var(--text-light); margin: 0; }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(196,154,40,0.2); }
.product-card.hidden { display: none; }
.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,0.93);
  color: var(--forest-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.product-info { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.02rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.5rem; }
.product-info p  { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.7rem; flex: 1; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.25rem; }
.product-tags span {
  font-size: 0.7rem; font-weight: 700;
  color: var(--forest);
  background: rgba(27,67,50,0.08);
  padding: 0.22rem 0.55rem;
  border-radius: 100px;
}
.section-sep { height: 1px; background: linear-gradient(90deg, transparent, var(--cream-dark), transparent); margin: 3rem 0; }

/* ─── CONTACT PAGE ───────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-sticky { position: sticky; top: calc(var(--header-h) + 24px); }
.contact-info-title { font-size: 1.75rem; color: var(--forest-dark); margin-bottom: 0.75rem; }
.c-items { margin: 1.75rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.c-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.25rem; }
.c-item p { font-size: 0.9rem; color: var(--text-mid); margin: 0; line-height: 1.6; }
.c-item a { color: var(--forest); font-weight: 700; }
.c-item a:hover { color: var(--gold); }

.wa-btn-full {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; background: var(--green-wa); color: var(--white);
  padding: 0.95rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); margin: 1.5rem 0;
}
.wa-btn-full:hover { background: #1fba59; color: var(--white); transform: translateY(-2px); }

.promise-box {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(27,67,50,0.06);
  border: 1px solid rgba(27,67,50,0.15);
  border-radius: 8px; padding: 1rem;
}
.promise-box .p-icon { font-size: 1.25rem; flex-shrink: 0; }
.promise-box strong { display: block; font-size: 0.85rem; color: var(--forest-dark); margin-bottom: 0.2rem; }
.promise-box p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

/* ─── FORM ───────────────────────────────────── */
.form-wrap { background: var(--white); border-radius: 16px; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.07); overflow: hidden; }
.form-head { background: linear-gradient(135deg, var(--forest), var(--forest-mid)); padding: 2rem 2.5rem; }
.form-head h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.3rem; }
.form-head p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
.inq-form { padding: 2rem 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.42rem; margin-bottom: 1.25rem; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 0.78rem; font-weight: 800; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group .req   { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 7px;
  padding: 0.72rem 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,67,50,0.1);
}
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #c0392b; }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.45rem; margin-top: 0.5rem; }
.check-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; color: var(--text-mid);
  cursor: pointer; padding: 0.4rem 0.6rem;
  border-radius: 6px; border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}
.check-item:hover { border-color: var(--forest); color: var(--forest); }
.check-item input { width: 14px; height: 14px; accent-color: var(--forest); flex-shrink: 0; cursor: pointer; }
.check-item:has(input:checked) { border-color: var(--forest); background: rgba(27,67,50,0.07); color: var(--forest); font-weight: 700; }

.form-msg { border-radius: 7px; font-size: 0.88rem; font-weight: 700; transition: all 0.3s; }
.form-msg.success { background: rgba(27,67,50,0.08); border: 1.5px solid rgba(27,67,50,0.2); color: var(--forest-dark); padding: 0.85rem 1rem; margin-bottom: 1rem; }
.form-msg.error   { background: rgba(192,57,43,0.08); border: 1.5px solid rgba(192,57,43,0.2); color: #c0392b; padding: 0.85rem 1rem; margin-bottom: 1rem; }
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-note  { font-size: 0.73rem; color: var(--text-light); text-align: center; margin-top: 0.85rem; margin-bottom: 0; }

/* ─── EXPORT PAGE ────────────────────────────── */
.exp-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.exp-why-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-sm); transition: var(--transition); }
.exp-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exp-icon { font-size: 2rem; margin-bottom: 1rem; }
.exp-why-card h4 { font-size: 1rem; color: var(--forest-dark); margin-bottom: 0.55rem; font-weight: 700; }
.exp-why-card p  { font-size: 0.84rem; color: var(--text-mid); margin: 0; }
.exp-prods-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.exp-prod {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem 1.25rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.exp-prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exp-prod .cat-icon { margin: 0 auto 1rem; }
.exp-prod h3 { font-size: 1rem; color: var(--forest-dark); margin-bottom: 0.35rem; }
.exp-prod p  { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.85rem; }
.exp-link    { font-size: 0.78rem; font-weight: 800; color: var(--gold); }
.exp-link:hover { color: var(--forest); }

.pl-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.pl-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(196,154,40,0.22); border-radius: 16px; padding: 2.5rem; text-align: center; }
.pl-card-icon { font-size: 3rem; margin-bottom: 1rem; }
.pl-card h4  { color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem; }
.pl-card > p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 2rem; }
.pl-steps { display: flex; flex-direction: column; gap: 0.65rem; text-align: left; }
.pl-step  { display: flex; align-items: center; gap: 0.9rem; color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 600; }
.pl-step span {
  width: 28px; height: 28px;
  background: var(--gold); color: var(--forest-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 3rem; }
.footer-brand img  { margin-bottom: 1.25rem; border-radius: 8px; width: 80px; height: auto; }
.footer-tagline { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-pale); line-height: 1.4; margin-bottom: 0.85rem; font-style: italic; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.48); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-ico {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-ico:hover { background: var(--gold); color: var(--forest-dark); border-color: var(--gold); }
.footer-col-title { font-family: var(--font-body); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 1.15rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links li a { font-size: 0.86rem; color: rgba(255,255,255,0.55); display: inline-block; transition: color 0.2s; }
.footer-links li a:hover { color: var(--gold-pale); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.footer-contact-list li svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,0.7); }
.footer-contact-list a:hover { color: var(--gold-pale); }
.footer-bottom { padding: 1.4rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.copyright { font-size: 0.78rem; color: rgba(255,255,255,0.28); margin: 0; }
.credits    { font-size: 0.78rem; color: rgba(255,255,255,0.22); margin: 0; }
.credits a  { color: rgba(196,154,40,0.55); font-weight: 700; }
.credits a:hover { color: var(--gold); }

/* ─── STICKY BUTTONS ─────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  display: flex; flex-direction: column; gap: 0.65rem; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.sticky-cta.visible { opacity: 1; pointer-events: all; }
.sticky-btn {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.sticky-btn:hover { transform: scale(1.05); }
.sticky-wa   { background: var(--green-wa); color: var(--white); }
.sticky-wa:hover { background: #1fba59; color: var(--white); box-shadow: 0 6px 22px rgba(37,211,102,0.4); }
.sticky-call { background: var(--gold); color: var(--forest-dark); }
.sticky-call:hover { background: var(--gold-bright); color: var(--forest-dark); box-shadow: 0 6px 22px rgba(196,154,40,0.4); }

/* ─── FADE UP ANIMATION ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── BG COLOR VARIANTS ──────────────────────── */
.buffalo-bg { background: linear-gradient(135deg, #3d2010, #6b3d1e); }
.goat-bg    { background: linear-gradient(135deg, #1B4332, #2D6A4F); }
.chicken-bg { background: linear-gradient(135deg, #7A5C1E, #C49A28); }
.churpi-bg  { background: linear-gradient(135deg, #2C1E4A, #5B3F8C); }
.treats-bg  { background: linear-gradient(135deg, #2d1a0e, #5c3520); }
.rawhide-bg { background: linear-gradient(135deg, #3d3010, #7a6020); }
.ears-bg    { background: linear-gradient(135deg, #1a2d10, #3d6020); }
.horns-bg   { background: linear-gradient(135deg, #1a1a1a, #4a4a2a); }
.bones-bg   { background: linear-gradient(135deg, #2a2a2a, #5a5a3a); }
.fish-bg    { background: linear-gradient(135deg, #0d2d4a, #1a5c7a); }
.toys-bg    { background: linear-gradient(135deg, #2a0d4a, #5c1a8c); }

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual  { max-width: 420px; }
  .export-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .exp-prods-grid{ grid-template-columns: repeat(2,1fr); }
  .pl-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid    { flex-wrap: wrap; }
  .trust-item    { min-width: 45%; border-right: none; border-bottom: 1px solid var(--cream-dark); padding: 0.75rem 0.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Hide desktop nav */
  .primary-nav, .header-actions { display: none !important; }
  .hamburger { display: flex !important; }

  /* Header */
  .header-inner { padding: 0 16px; gap: 0.5rem; }
  .site-logo img { width: 46px; height: 46px; }
  .logo-brand { font-size: 1.25rem; }
  .logo-sub   { font-size: 0.52rem; }

  /* Sections */
  .section-pad { padding: 56px 0; }
  .container   { padding: 0 16px; }

  /* Hero */
  .hero-content { padding: 40px 16px 60px; }
  .hero-headline { font-size: 2.1rem; word-break: break-word; }
  .hero-sub    { font-size: 0.7rem; letter-spacing: 0.08em; }
  .hero-tagline { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding-top: 1.75rem;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.4rem; }

  /* Trust bar */
  .trust-bar { padding: 1.5rem 0; }
  .trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trust-item { border: 1px solid var(--cream-dark); border-radius: 8px; padding: 0.85rem; }
  .trust-icon { font-size: 1.5rem; }
  .trust-text strong { font-size: 0.8rem; }
  .trust-text span   { font-size: 0.72rem; }

  /* About */
  .about-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { max-width: 100%; }
  .about-badge { right: 0; bottom: -0.5rem; }
  .about-lead  { font-size: 1rem; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .cat-img { height: 200px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem; }
  .why-num  { font-size: 2.25rem; }

  /* Export */
  .export-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .export-card   { padding: 1.75rem; }
  .export-actions { flex-direction: column; gap: 0.7rem; }
  .export-actions .btn { width: 100%; justify-content: center; }
  .exp-why-grid  { grid-template-columns: 1fr; gap: 1rem; }
  .exp-prods-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .pl-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-inner   { flex-direction: column; gap: 2rem; text-align: center; }
  .cta-desc    { max-width: 100%; margin: 0 auto; }
  .cta-btns    { flex-direction: column; width: 100%; gap: 0.7rem; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + 40px) 0 50px; }
  .page-hero-title { font-size: 2rem; }
  .page-hero-content p { font-size: 0.95rem; }

  /* Filter */
  .filter-bar-section { top: var(--header-h); padding: 0.85rem 0; }
  .filter-bar { gap: 0.35rem; }
  .filter-btn { font-size: 0.74rem; padding: 0.45rem 0.85rem; }

  /* Products */
  .cat-section-header { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .cat-section-header h2 { font-size: 1.4rem; }
  .products-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .product-img-wrap { height: 220px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-sticky { position: static; }
  .inq-form    { padding: 1.5rem; }
  .form-head   { padding: 1.5rem; }
  .form-row    { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 1.25rem; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; gap: 0.4rem; }

  /* Footer */
  .footer-top  { padding: 3rem 0 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.4rem; }

  /* Sticky */
  .sticky-cta  { bottom: 1rem; right: 1rem; }
  .sticky-btn span.sticky-label { display: none; }
  .sticky-btn {
    width: 52px; height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-headline { font-size: 1.85rem; }
  .section-title { font-size: 1.65rem; }
  .hero-badge    { font-size: 0.66rem; padding: 0.38rem 0.85rem; }
  .trust-grid    { grid-template-columns: 1fr; }
  .exp-prods-grid { grid-template-columns: 1fr; }
  .checkbox-grid  { grid-template-columns: 1fr; }
  .hero-stats     { grid-template-columns: 1fr 1fr; }
  .page-hero-title { font-size: 1.75rem; }
  .cta-title { font-size: 1.5rem; }
}

/* ════════════════════════════════════════════════
   DROPDOWN MENU
════════════════════════════════════════════════ */
.has-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 0.3rem; }
.dropdown-arrow { transition: transform 0.25s ease; flex-shrink: 0; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  background: #0c2015;
  border: 1px solid rgba(196,154,40,0.25);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2000;
  overflow: hidden;
}
.has-dropdown:hover .nav-dropdown { display: block; animation: dropFade 0.2s ease; }
@keyframes dropFade { from{opacity:0;transform:translateX(-50%) translateY(-8px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

.dropdown-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.dropdown-col { padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.dropdown-cta-col { padding: 1.5rem; background: rgba(196,154,40,0.05); }
.dropdown-group-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.5rem;
  border-radius: 7px;
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 0.15rem;
}
.dropdown-item:hover { background: rgba(196,154,40,0.12); color: var(--gold-pale); }
.di-icon { font-size: 1rem; flex-shrink: 0; }

.dropdown-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest-dark);
}
.dropdown-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(196,154,40,0.35); color: var(--forest-dark); }
.dropdown-cta-btn.secondary { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.12); }
.dropdown-cta-btn.secondary:hover { background: rgba(255,255,255,0.14); color: var(--white); box-shadow: none; }
.dropdown-cta-btn.wa { background: var(--green-wa); color: var(--white); }
.dropdown-cta-btn.wa:hover { background: #1fba59; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }

/* ─── MOBILE SUBMENU ─────────────────────────── */
.mobile-has-sub .mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.88);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-has-sub .mobile-sub-toggle svg { transition: transform 0.25s ease; }
.mobile-has-sub .mobile-sub-toggle.open svg { transform: rotate(180deg); }
.mobile-sub-list {
  display: none;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-sub-list.open { display: block; }
.mobile-sub-list li a {
  display: block;
  color: rgba(255,255,255,0.68);
  padding: 0.75rem 1.5rem 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}
.mobile-sub-list li a:hover { color: var(--gold-pale); background: rgba(196,154,40,0.08); }

/* ════════════════════════════════════════════════
   PRODUCT CAROUSEL
════════════════════════════════════════════════ */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.carousel-slide { flex: 0 0 calc(25% - 1rem); min-width: 0; }

@media (max-width: 1024px) { .carousel-slide { flex: 0 0 calc(33.333% - 1rem); } }
@media (max-width: 768px)  { .carousel-slide { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width: 480px)  { .carousel-slide { flex: 0 0 calc(100%); } }

.carousel-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-decoration: none;
}
.carousel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(196,154,40,0.2); }
.cc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.carousel-card:hover .cc-img-wrap img { transform: scale(1.06); }
.cc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,40,24,0.65) 0%, transparent 55%); }
.cc-cat {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
}
.cc-body { padding: 1rem 1.1rem; }
.cc-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.35rem; }
.cc-link { font-size: 0.76rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }

.carousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--forest);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--forest);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .carousel-btn { width: 40px; height: 40px; }
  .cc-img-wrap  { height: 170px; }
}

/* ════════════════════════════════════════════════
   ABOUT US PAGE — 2 PARTS
════════════════════════════════════════════════ */

/* ─── TEAM GRID ──────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-img-wrap {
  position: relative;
  padding: 2rem 2rem 1rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.team-img-oval {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(196,154,40,0.15);
  background: var(--cream-dark);
}
.team-img-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-info { padding: 1.25rem 1.25rem 1.5rem; }
.team-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
}
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.team-info p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ─── ABOUT COMPANY GRID ─────────────────── */
.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.buffalo-logo-wrap { margin-top: 1.5rem; text-align: center; }
.buffalo-chew-img {
  max-width: 220px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.promise-box-about {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.promise-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-dark);
}
.promise-item:last-child { border-bottom: none; }
.promise-check { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

.about-contact-quick { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.acq-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.acq-item a { color: var(--forest); font-weight: 700; }
.acq-item a:hover { color: var(--gold); }
.acq-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   PRODUCTS — 3-LEVEL NAVIGATION
════════════════════════════════════════════════ */

/* ─── LEVEL 1 GRID ───────────────────────── */
.l1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.l1-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: var(--transition);
}
.l1-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(196,154,40,0.25); }
.l1-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.l1-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.l1-card:hover .l1-img img { transform: scale(1.06); }
.l1-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,40,24,0.7) 0%, transparent 55%); }
.l1-body { padding: 1.5rem; text-align: center; }
.l1-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.l1-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.4rem; }
.l1-body p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.l1-sub-count {
  display: inline-block;
  background: rgba(27,67,50,0.08);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.l1-cta {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── LEVEL 2 PANEL ──────────────────────── */
.l2-panel {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.l2-panel.open { transform: translateX(0); }

.l3-panel {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 2100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.l3-panel.open { transform: translateX(0); }

.l2-header {
  background: var(--forest-dark);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-md);
}
.l3-header {
  background: var(--forest);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-md);
}
.l2-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}
.l2-back:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.l2-title { font-size: 1.8rem; color: var(--white); margin: 0 0 0.25rem; }
.l2-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.l2-content { padding: 2.5rem; max-width: 1100px; margin: 0 auto; }
.l3-content { padding: 2.5rem; max-width: 1100px; margin: 0 auto; }

.l2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.l2-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
}
.l2-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(196,154,40,0.2); }
.l2-img-wrap {
  position: relative;
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
}
.l2-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.l2-card:hover .l2-img-wrap img { transform: scale(1.06); }
.l2-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(13,40,24,0.1)); }
.l2-body { padding: 1.25rem 1.5rem; flex: 1; }
.l2-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.4rem; }
.l2-body p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.l2-count {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
}

/* ─── LEVEL 3 GRID ───────────────────────── */
.l3-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.l3-card-inner {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.l3-img-wrap { position: relative; height: 200px; overflow: hidden; }
.l3-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.l3-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--forest-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
}
.l3-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.l3-info h4 { font-size: 1rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.5rem; }
.l3-info p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; flex: 1; margin-bottom: 0.75rem; }

.l3-more-card {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.l3-more-inner { text-align: center; padding: 2rem; }
.l3-more-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.l3-more-inner h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.l3-more-inner p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1.25rem; }

/* ─── OVERLAY ─────────────────────────────── */
.products-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1990;
}
.products-overlay.show { display: block; }

/* ─── THEY LOVE IT SECTION ───────────────── */
.they-love-section { padding: 80px 0; background: var(--white); }
.they-love-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.they-love-img-wrap {
  position: relative;
}
.they-love-oval {
  border-radius: 50%;
  overflow: hidden;
  width: 420px;
  height: 420px;
  border: 6px solid var(--gold);
  box-shadow: 0 0 0 12px rgba(196,154,40,0.12), var(--shadow-lg);
  margin: 0 auto;
}
.they-love-oval img { width: 100%; height: 100%; object-fit: cover; }
.they-love-content .section-title em { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .l1-grid   { grid-template-columns: repeat(2, 1fr); }
  .l3-products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-company-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .they-love-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .they-love-oval { width: 300px; height: 300px; }
  .l2-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .l1-grid   { grid-template-columns: 1fr; }
  .l2-content, .l3-content { padding: 1.5rem; }
  .l2-header, .l3-header { padding: 1.25rem 1.5rem; }
  .l2-title { font-size: 1.4rem; }
  .l3-products-grid { grid-template-columns: 1fr; }
  .l2-card { flex-direction: column; }
  .l2-img-wrap { width: 100%; height: 160px; }
  .they-love-oval { width: 260px; height: 260px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .they-love-oval { width: 220px; height: 220px; }
}

/* ════════════════════════════════════════════════
   THEY LOVE IT SECTION
════════════════════════════════════════════════ */
.they-love-section { position: relative; overflow: hidden; }
.they-love-img-wrap { position: relative; min-height: 500px; }
.they-love-img {
  width: 100%; height: 500px;
  object-fit: cover; display: block;
}
.they-love-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,30,15,0.88) 0%, rgba(10,30,15,0.6) 50%, rgba(10,30,15,0.3) 100%);
  display: flex; align-items: center;
}
.they-love-content { max-width: 620px; }
.they-love-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}
.they-love-desc { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.7; }
.they-love-promises { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 0.5rem; }
.promise-pill {
  background: rgba(196,154,40,0.18);
  border: 1px solid rgba(196,154,40,0.4);
  color: var(--gold-pale);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .they-love-img { height: 400px; }
  .they-love-overlay { background: rgba(10,30,15,0.82); }
  .they-love-content { max-width: 100%; }
  .they-love-title { font-size: 1.75rem; }
}

/* ════════════════════════════════════════════════
   3-LEVEL PRODUCTS NAVIGATION
════════════════════════════════════════════════ */
.level1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.level1-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.level1-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.l1-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem; flex-shrink: 0;
}
.l1-body { flex: 1; }
.l1-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.3rem; }
.l1-body p  { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.4rem; line-height: 1.4; }
.l1-count   { font-size: 0.72rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.l1-arrow   { color: var(--forest-light); flex-shrink: 0; transition: transform 0.2s; }
.level1-card:hover .l1-arrow { transform: translateX(4px); }

/* Level 2 */
.level2-panel { animation: slideIn 0.3s ease; }
.level3-panel { animation: slideIn 0.3s ease; }
@keyframes slideIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

.level-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  border: 1.5px solid var(--cream-dark);
}
.back-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.back-btn:hover { background: var(--forest-dark); }
.breadcrumb-sep     { color: var(--text-light); font-size: 1.2rem; }
.breadcrumb-current { font-size: 0.9rem; font-weight: 700; color: var(--forest-dark); }

.level2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.level2-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius); padding: 1.5rem;
  cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.level2-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.l2-icon { font-size: 2rem; flex-shrink: 0; }
.l2-body { flex: 1; }
.l2-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.3rem; }
.l2-body p  { font-size: 0.82rem; color: var(--text-light); margin: 0 0 0.35rem; }
.l2-count   { font-size: 0.72rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.l2-arrow   { color: var(--forest-light); flex-shrink: 0; transition: transform 0.2s; }
.level2-card:hover .l2-arrow { transform: translateX(4px); }

/* Level 3 */
.level3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.level3-cta {
  margin-top: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--cream-dark);
  text-align: center;
}
.level3-cta p { font-size: 1rem; color: var(--text-dark); margin-bottom: 1.25rem; font-weight: 500; }

/* ════════════════════════════════════════════════
   TEAM / DIRECTORS SECTION
════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(196,154,40,0.2); }
.team-photo-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  padding: 2rem 1.5rem 1rem;
}
.team-photo-oval {
  width: 120px; height: 140px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.1);
}
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-dark);
}
.team-role-badge {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.team-info { padding: 1.75rem 1.25rem 1.5rem; }
.team-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.35rem; }
.team-designation { font-size: 0.78rem; font-weight: 700; color: var(--gold-dim); margin-bottom: 0.65rem; }
.team-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; margin: 0; }

.team-note {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: rgba(196,154,40,0.08);
  border: 1.5px solid rgba(196,154,40,0.2);
  border-radius: 10px; padding: 1.1rem 1.25rem;
  max-width: 700px; margin: 0 auto;
}
.team-note-icon { font-size: 1.25rem; flex-shrink: 0; }
.team-note p    { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

/* Company About */
.about-company-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.about-contact-box {
  margin-top: 1.75rem;
  background: var(--cream);
  border-radius: 10px;
  padding: 1.25rem;
  border: 1.5px solid var(--cream-dark);
}
.acb-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 0.88rem; color: var(--text-mid);
}
.acb-item:last-child { border-bottom: none; }
.acb-item a { color: var(--forest); font-weight: 700; }
.acb-item a:hover { color: var(--gold-dim); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .level1-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-company-grid { grid-template-columns: 1fr; gap: 3rem; }
  .level3-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .level1-grid { grid-template-columns: 1fr; }
  .level2-grid { grid-template-columns: 1fr; }
  .level3-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-photo-oval { width: 100px; height: 115px; }
  .they-love-img { height: 500px; }
  .level-breadcrumb { flex-wrap: wrap; gap: 0.5rem; }
  .level3-cta { text-align: left; }
  .level3-cta > div { flex-direction: column; }
  .level3-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   5 PRODUCT CARDS — Premium Design
════════════════════════════════════════════════ */
.five-cards-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: nowrap;
}

.five-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.35s ease, border-color 0.25s ease;
  border: 2px solid rgba(196,154,40,0.25);
  flex: 1;
  max-width: 210px;
  min-width: 0;
  text-decoration: none;
  display: block;
  background: var(--forest-dark);
  box-shadow: var(--shadow-md);
}
.five-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 32px 64px rgba(27,67,50,0.28), 0 0 0 2px #C49A28;
  border-color: #C49A28;
  z-index: 10;
}

/* Image */
.fc-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.fc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.five-card:hover .fc-img-wrap img { transform: scale(1.1); }
.fc-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(13,40,24,0.6) 0%, transparent 100%);
}

/* Footer */
.fc-footer {
  background: linear-gradient(160deg, #0D2818 0%, #1B4332 100%);
  padding: 20px 14px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fc-icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid #C49A28;
  background: rgba(196,154,40,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: -38px auto 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  background-color: #0D2818;
}
.five-card:hover .fc-icon-circle {
  transform: scale(1.15) rotate(6deg);
  background: rgba(196,154,40,0.2);
}
.fc-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.1;
  margin-bottom: 3px;
}
.fc-sub {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.fc-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,154,40,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.25s ease;
}
.five-card:hover .fc-arrow {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .five-cards-grid { flex-wrap: wrap; gap: 14px; }
  .five-card { min-width: calc(33.333% - 14px); max-width: calc(33.333% - 14px); flex: none; }
}
@media (max-width: 768px) {
  .five-cards-grid { gap: 12px; }
  .five-card { min-width: calc(50% - 8px); max-width: calc(50% - 8px); flex: none; }
  .fc-img-wrap { height: 200px; }
  .fc-name { font-size: 1.2rem; }
}
@media (max-width: 420px) {
  .five-card { min-width: calc(50% - 6px); max-width: calc(50% - 6px); }
  .fc-img-wrap { height: 170px; }
  .fc-icon-circle { width: 44px; height: 44px; font-size: 1.2rem; margin-top: -32px; }
}

/* ════════════════════════════════════════════════
   PRODUCT PILLS SECTION
════════════════════════════════════════════════ */
.products-pills-section { padding: 80px 0; }

.pills-category-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pills-category-block:last-of-type { border-bottom: none; }

.pills-cat-label { margin-bottom: 1rem; }
.pills-cat-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  transition: var(--transition);
}
.pills-cat-title:hover { color: var(--gold-bright); gap: 0.75rem; }

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(196,154,40,0.2);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.product-pill:hover {
  background: rgba(196,154,40,0.15);
  border-color: var(--gold);
  color: var(--gold-pale);
  transform: translateY(-2px);
}
.pill-star {
  color: var(--gold);
  font-size: 0.65rem;
}

/* Products Catalogue Styles */
.prod-tabs-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.prod-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.85rem 0;
  scrollbar-width: none;
}
.prod-tabs::-webkit-scrollbar { display: none; }
.prod-tab {
  background: transparent;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.prod-tab:hover { border-color: var(--forest); color: var(--forest); }
.prod-tab.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

.prod-cat-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--cream-dark);
  scroll-margin-top: 140px;
}
.prod-cat-section:last-child { border-bottom: none; }

.prod-cat-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  flex-wrap: wrap;
}
.prod-cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; flex-shrink: 0;
}
.prod-cat-title-wrap { flex: 1; min-width: 200px; }
.prod-cat-title-wrap h2 { font-size: 1.5rem; margin: 0 0 0.2rem; color: var(--forest-dark); }
.prod-cat-title-wrap p  { font-size: 0.82rem; color: var(--text-light); margin: 0; }

.prod-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.prod-sub-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.prod-sub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-sub-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
}
.prod-sub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prod-sub-card:hover .prod-sub-img img { transform: scale(1.05); }

.prod-sub-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-dark);
  padding: 1rem 1.25rem 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  margin: 0 1.25rem 0.75rem;
}
.prod-items-list {
  list-style: none;
  padding: 0 1.25rem;
  margin: 0 0 1rem;
}
.prod-items-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--cream-dark);
  line-height: 1.4;
}
.prod-items-list li:last-child { border-bottom: none; }
.prod-dot { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.prod-enquire-btn {
  display: block;
  margin: 0.75rem 1.25rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.prod-enquire-btn:hover { background: var(--gold); color: var(--forest-dark); }

/* Responsive */
@media (max-width: 1024px) { .prod-sub-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .prod-sub-grid { grid-template-columns: 1fr; }
  .prod-cat-header { gap: 0.75rem; }
  .pills-row { gap: 0.45rem; }
  .product-pill { font-size: 0.76rem; padding: 0.4rem 0.85rem; }
}
