/*
 * Theme Name: Alfa Theme
 * Description: Custom theme for Alfa Distributions – pixel-matched to Figma NEW III design
 * Version: 1.0
 * Author: Ace
 */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy:          #073173;
  --gold:          #D9A51C;
  --white:         #ffffff;
  --black:         #000000;
  --grey-light:    #f5f5f5;
  --grey-border:   #e0e0e0;
  --grey-text:     #555555;
  --font:          'Plus Jakarta Sans', sans-serif;
  --container:     1400px;
  --radius:        48px;
  --transition:    0.25s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2 { font-weight: 700; line-height: 1.15; }
h3, h4 { font-weight: 600; line-height: 1.3; }
p { line-height: 1.7; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 60px;
}
.section-pad { padding-block: 80px; }
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  max-width: 60px;
}
.section-divider span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-divider--center { justify-content: center; }

/* ============================================================
   5. HEADER / NAV  (non-home pages only)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}
.nav-search-mobile { display: none; }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  height: 80px;
  gap: 28px;
}
.nav-logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-menu { grid-column: 3; justify-self: end; }
.nav-cta { grid-column: 4; justify-self: end; }
.nav-toggle { grid-column: 4; justify-self: end; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--navy); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: #052660; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   5b. HERO NAV (transparent, floats over hero background)
   ============================================================ */
.hero-nav {
  width: 100%;
  height: 80px;
  flex-shrink: 0;
}
.hero-nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  gap: 32px;
}
.hero-nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.hero-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.hero-nav-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.hero-nav-menu li a:hover { opacity: 0.75; }
.hero-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.hero-nav-cta:hover { opacity: 0.88; }
.hero-nav-cta-text {
  padding: 12px 20px;
}
.hero-nav-cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-nav-cta-icon svg { width: 20px; height: 20px; color: var(--white); }
.hero-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hero-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 842px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #0d0b08;
}

/* Background layer */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg { display: none; }

/* Subtle top/bottom shading on desktop hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 32%),
    linear-gradient(to bottom, transparent 0%,   rgba(0,0,0,0.15) 88.6%);
  z-index: 1;
}

/* Content wrapper — sits above gradients */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
}

.hero-logo-display {
  width: 240px;
  height: auto;
  margin-top: 40px;
  margin-bottom: 32px;
}

.hero-text { max-width: 680px; padding-bottom: 80px; }
@media (min-width: 769px) {
  .hero-text { padding-top: 120px; }
}
.hero-title--mobile { display: none; }
.hero-tagline-mobile { display: none; }
.hero-tagline {
  font-size: clamp(12px, 1.2vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-desc {
  font-size: clamp(14px, 1.4vw, 24px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  max-width: 100%;
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-meta {
  font-size: clamp(12px, 1.1vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
/* Hero button — text left, icon box right (matches Figma) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--gold);
  color: var(--white);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity var(--transition);
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary-text { padding: 12px 20px; }
.btn-primary-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-primary-icon svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity var(--transition);
}
.btn-outline:hover { opacity: 0.75; }
.btn-outline-text { padding: 11px 20px; }
.btn-outline-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-outline-icon svg { width: 18px; height: 18px; }
/* (hero-image div removed — image is now full-bleed .hero-bg) */

/* ============================================================
   7. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding-block: 24px;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-item svg, .trust-item .trust-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.trust-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
}
.trust-item-sub {
  font-size: 11px;
  color: var(--grey-text);
  letter-spacing: 0.03em;
}

/* ============================================================
   8. WHO WE ARE
   ============================================================ */
.who-we-are {
  background: var(--navy);
  padding-block: 100px;
}
.who-we-are-inner {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.who-we-are .section-divider { justify-content: center; }
.who-we-are .section-divider span { color: var(--gold); }
.who-we-are .section-divider .line { background: var(--gold); }
.who-we-are-text {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 28px;
}
.who-we-are-quote {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ============================================================
   8a. TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--white);
}
.team-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}
.team-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin: 0;
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ============================================================
   9. WHERE YOU WIN
   ============================================================ */
.where-you-win {
  background: var(--white);
  padding-block: 100px;
}
.where-you-win-header { text-align: center; margin-bottom: 64px; }
.where-you-win-header h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--black);
  margin-bottom: 20px;
}
.where-you-win-header p {
  font-size: 15px;
  color: var(--grey-text);
  max-width: 740px;
  margin-inline: auto;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 80%;
  background-repeat: no-repeat;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.04); filter: blur(3px) brightness(0.55); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.35) 100%);
  transition: background 0.4s ease;
}
.category-card:hover .category-card-overlay { background: rgba(0,0,0,0.25); }
.category-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 28px;
}
.category-card-top {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.category-num {
  font-size: 52px;
  font-weight: 700;
  color: rgba(217,165,28,0.4);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.category-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.category-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}
.category-card:hover .category-desc {
  opacity: 1;
  max-height: 120px;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.category-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 10px;
  border-radius: 2px;
}
.category-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.category-link:hover { gap: 10px; }

/* ============================================================
   10. FOUR PILLARS
   ============================================================ */
.four-pillars {
  background: var(--navy);
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}
/* ix:quote decorative SVG — absolute top-left, rotated 180° (Figma spec) */
.pillars-quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 162px;
  height: 162px;
  transform: rotate(180deg);
  z-index: 2;
  pointer-events: none;
}
.four-pillars-header { text-align: center; margin-bottom: 60px; }
.four-pillars-header .section-divider { justify-content: center; }
.four-pillars-header .section-divider span { color: var(--gold); }
.four-pillars-header .section-divider .line { background: var(--gold); }
.four-pillars-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}
.four-pillars-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-inline: auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.pillar {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.pillar:last-child { border-right: none; }
.pillar-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.pillar-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.pillar-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   11. BRAND ARCHITECTURE
   ============================================================ */
.brand-arch {
  background: var(--white);
  padding-block: 100px;
}
.brand-arch-header { margin-bottom: 48px; }
.brand-arch-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--black);
  margin-bottom: 12px;
}
.brand-arch-header p {
  font-size: 14px;
  color: var(--grey-text);
  max-width: 680px;
  line-height: 1.7;
}
.brand-arch-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.brand-arch-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
}
.brand-arch-col--we h4 { color: var(--navy); border-color: var(--navy); }
.brand-arch-col--not h4 { color: #cc0000; border-color: #cc0000; }
.brand-arch-col li {
  font-size: 13px;
  color: var(--grey-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-border);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.brand-arch-col--we li::before { content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.brand-arch-col--not li::before { content: '✗'; position: absolute; left: 0; color: #cc0000; font-weight: 700; }
.brand-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: center;
}
.brand-logo-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.brand-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   12. ALFA VS MARKET
   ============================================================ */
.alfa-vs {
  background: var(--grey-light);
  padding-block: 100px;
}
.alfa-vs-header { margin-bottom: 48px; }
.alfa-vs-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--black);
  margin-bottom: 12px;
}
.alfa-vs-header p {
  font-size: 14px;
  color: var(--grey-text);
  max-width: 640px;
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
}
.product-card-img {
  height: 280px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}
.product-card-body { padding: 24px; }
.product-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(7,49,115,0.08);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.product-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.product-card-vs {
  font-size: 12px;
  color: var(--grey-text);
  font-style: italic;
  margin-bottom: 14px;
}
.product-card-desc {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card-link:hover { gap: 10px; }

/* ============================================================
   13. FOUR-MARKET ENGINE
   ============================================================ */
.market-engine {
  background: var(--white);
  padding-block: 100px;
}
.market-engine-header { margin-bottom: 48px; }
.market-engine-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--black);
  margin-bottom: 12px;
}
.market-engine-header p {
  font-size: 14px;
  color: var(--grey-text);
  max-width: 680px;
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.market-card {
  padding: 36px;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.market-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.market-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.market-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.market-desc {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ============================================================
   14. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding-block: 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   15. BRAND PHILOSOPHY
   ============================================================ */
.brand-philosophy {
  background: var(--white);
  padding-block: 100px;
}
.brand-philosophy-inner {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.brand-philosophy .section-divider { justify-content: center; }
.philosophy-text {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 24px;
}
.philosophy-quote {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.philosophy-quote::before,
.philosophy-quote::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
}

/* ============================================================
   16. PARTNER CTA
   ============================================================ */
.partner-cta {
  background: var(--grey-light);
  padding-block: 80px;
}
.partner-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-cta-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--black);
  margin-bottom: 10px;
}
.partner-cta-text p {
  font-size: 14px;
  color: var(--grey-text);
  max-width: 620px;
  line-height: 1.7;
}
.partner-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: opacity var(--transition);
}
.btn-navy:hover { opacity: 0.85; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: opacity var(--transition);
}
.btn-gold:hover { opacity: 0.88; }

/* ============================================================
   17. CONTACT FORM
   ============================================================ */
.contact-section {
  background: var(--white);
  padding-block: 100px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info .section-divider { margin-bottom: 28px; }
.contact-info h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--black);
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(7,49,115,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-detail-text {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.6;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}

/* Form styles */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity var(--transition);
}
.form-submit:hover { opacity: 0.85; }
.form-notice { padding: 14px 18px; border-radius: 6px; font-size: 15px; line-height: 1.5; }
.form-notice--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-notice--error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================================
   18. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero--short { min-height: 240px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,49,115,0.55), rgba(7,49,115,0.70));
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 60px;
  width: 100%;
}
.page-hero .section-divider span { color: var(--gold); }
.page-hero .section-divider .line { background: var(--gold); }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-block: 16px;
}
.page-hero p {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding-block: 72px 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: block;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   19. RESPONSIVE — TABLET (max-width: 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding-inline: 40px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .brand-logos { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
}

/* ============================================================
   20. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --container: 100%; }
  .container { padding-inline: 24px; }
  .section-pad { padding-block: 56px; }

  /* Nav — mobile: overlay transparent header ONLY on home (hero behind it). Other pages: solid white sticky. */
  body.home .site-header {
    position: absolute !important;
    top: 0; left: 0; right: 0;
    background: transparent !important;
    border-bottom: none !important;
    z-index: 50;
  }
  body:not(.home) .site-header {
    position: sticky !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--grey-border) !important;
    z-index: 50;
  }
  body:not(.home) .nav-inner {
    grid-template-columns: auto 1fr auto !important;
    height: 64px !important;
  }
  body:not(.home) .nav-logo { grid-column: 1 !important; justify-self: start !important; }
  body:not(.home) .nav-toggle {
    position: static !important;
    top: auto !important;
    left: auto !important;
    grid-column: 3 !important;
    justify-self: end !important;
  }
  body:not(.home) .nav-toggle span { background: var(--black) !important; }
  body:not(.home) .nav-logo img { max-height: 44px !important; filter: none !important; }
  .site-header .container { padding-inline: 18px; }
  .nav-inner {
    height: 88px;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle {
    display: flex !important;
    position: absolute !important;
    top: 12px;
    left: 18px;
    z-index: 60;
    padding: 8px 6px;
  }
  .nav-toggle span { background: var(--white); width: 26px; height: 3px; }
  .nav-logo { grid-column: 2; justify-self: center; }
  .nav-logo img {
    height: auto;
    max-height: 110px;
    width: auto;
    max-width: 210px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  }
  .nav-search-mobile { display: none !important; }

  /* Hide contact form on mobile */
  .contact-form { display: none !important; }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7,49,115,0.97);
    padding: 80px 24px 40px;
    gap: 24px;
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  .nav-menu.is-open a { color: var(--white); font-size: 20px; }
  .nav-menu.is-open .nav-cta { display: inline-flex; }

  /* Hero — full-bleed, overlay header lives on top */
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 130px; /* room for overlay logo + spacing */
  }
  .hero-bg-wrap {
    height: 520px !important;
    bottom: auto !important;
    background-position: 65% center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,0.6) 78%, rgba(0,0,0,0.25) 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,0.6) 78%, rgba(0,0,0,0.25) 90%, transparent 100%);
  }
  .hero { background: #ffffff !important; }
  .mobile-cats-block {
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 14px, #ffffff 26px, #ffffff 100%) !important;
    padding: 22px 20px 0 !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative;
    z-index: 3;
    box-sizing: border-box !important;
  }
  .hero::before {
    height: 520px !important;
    bottom: auto !important;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
  }
  /* Soft fade-to-white overlay on top of bg, sitting just above cards */
  .hero-bg-wrap::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.85) 90%, rgba(255,255,255,1) 100%);
    pointer-events: none;
  }
  /* Darker overlay for white text readability */
  .hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.40) 50%, rgba(0,0,0,0.65) 100%) !important;
  }

  /* Hero text — center alignment, restored CTAs */
  .hero-tagline-mobile { display: none !important; }
  .hero-text { text-align: center; align-items: center; }
  .hero-title--mobile { text-align: center; }
  .hero-desc, .hero-meta { text-align: center; }
  .hero-actions {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .hero-actions .btn-primary { display: inline-flex !important; }
  .btn-learn-more-mobile { display: inline-flex !important; }
  .hero-actions .btn-outline { display: none; }
  .hero-nav-menu, .hero-nav-cta { display: none; }
  .hero-nav-toggle { display: flex; }
  .hero-nav-menu.is-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(7,49,115,0.97);
    padding: 40px 24px;
    gap: 32px;
    z-index: 999;
  }
  .hero-nav-menu.is-open .hero-nav-cta { display: inline-flex; align-self: flex-start; }
  .hero-inner { align-items: center; text-align: center; padding-inline: 20px; padding-top: 12px; }
  .hero-tagline-mobile {
    display: block;
    text-align: center;
    color: #f25e5e;
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

  .hero-title--desktop { display: none; }
  .hero-title--mobile {
    display: block;
    margin: 0 0 10px;
    line-height: 1.1;
  }
  .hero-title--mobile .hero-title-pre,
  .hero-title--mobile .hero-title-post {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.22;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
  }
  .hero-title--mobile .hero-title-big {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 6px 0 4px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.40);
  }

  .hero-subtitle { display: none; }
  .hero-desc {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    margin: 0 auto 14px;
    max-width: 380px;
    text-align: center;
    color: rgba(255,255,255,0.95);
  }
  .hero-meta { display: none; }
  .btn-outline { display: none; }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
    width: 100%;
  }
  .hero-actions {
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
  }
  .hero-actions .btn-primary {
    border-radius: 999px;
  }

  /* Product gallery — main image on top, thumbnails as horizontal carousel */
  .woocommerce div.product div.images { flex-direction: column !important; }
  .woocommerce div.product div.images .flex-control-thumbs {
    flex-direction: row !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    gap: 8px !important;
    padding-bottom: 4px !important;
  }
  .woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar { display: none !important; }
  .woocommerce div.product div.images .flex-control-thumbs li { flex-shrink: 0 !important; width: 72px !important; }
  .woocommerce div.product div.images .flex-control-thumbs img { width: 72px !important; height: 72px !important; }

  /* Category cards */
  .category-desc { display: none; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Where you win */
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 320px; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .pillar:last-child { border-bottom: none; }

  /* Brand arch */
  .brand-arch-split { grid-template-columns: 1fr; }
  .brand-logos { grid-template-columns: repeat(3, 1fr); }

  /* Product cards */
  .product-cards { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Markets */
  .markets-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 16px; }
  .stat-number { font-size: 32px; }

  /* Partner CTA */
  .partner-cta-inner { flex-direction: column; align-items: flex-start; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   21. WOOCOMMERCE — SHOP ARCHIVE  (Amazon-inspired)
   ============================================================ */

.woo-shop-section {
  background: var(--white);
  padding-block: 48px 64px;
}

/* ── Toolbar ── */
.woo-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.woocommerce-result-count {
  font-size: 13px;
  color: var(--grey-text);
  margin: 0;
}
.woocommerce-ordering select {
  font-family: var(--font);
  font-size: 13px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  padding: 7px 28px 7px 10px;
  outline: none;
  cursor: pointer;
  appearance: auto;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.woocommerce-ordering select:focus { border-color: #e77600; box-shadow: 0 0 0 2px rgba(231,118,0,0.25); }

/* ── Grid: 4 columns ── */
.woocommerce ul.products,
.woo-shop-section ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--grey-border) !important;
  border: 1px solid var(--grey-border) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
}

/* ── Product card ── */
.woocommerce ul.products li.product {
  background: var(--white) !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  padding: 16px !important;
  transition: background var(--transition) !important;
  position: relative !important;
}
.woocommerce ul.products li.product:hover { background: #fafafa !important; }

/* Image container: fixed 220px, white bg, contain */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.woocommerce ul.products li.product img {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: var(--white) !important;
  display: block !important;
  margin-bottom: 12px !important;
  border: none !important;
}

/* Title: small, readable, 2-line clamp */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #0F1111 !important;
  padding: 0 0 4px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  transition: color var(--transition) !important;
}
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title { color: #c45500 !important; }

/* Stars */
.woocommerce ul.products li.product .star-rating {
  font-size: 12px !important;
  color: var(--gold) !important;
  margin: 0 0 4px !important;
}

/* Price */
.woocommerce ul.products li.product .price {
  display: block !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #B12704 !important;
  margin: 4px 0 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product .price .woocommerce-Price-currencySymbol {
  font-size: 13px !important;
  vertical-align: super !important;
  font-weight: 700 !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--grey-text) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  display: block !important;
}
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

/* Sale badge */
.woocommerce ul.products li.product .onsale {
  background: #CC0C39 !important;
  color: var(--white) !important;
  border-radius: 2px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  padding: 3px 8px !important;
  top: 10px !important;
  left: 10px !important;
  min-height: auto !important;
  line-height: 1.5 !important;
}

/* Add to cart button: Amazon-yellow with our gold */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  display: block !important;
  width: 100% !important;
  margin: 12px 0 0 !important;
  background: var(--gold) !important;
  color: #111 !important;
  font-family: var(--font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-align: center !important;
  padding: 9px 10px !important;
  border-radius: 20px !important;
  border: 1px solid #a88734 !important;
  cursor: pointer !important;
  transition: filter var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
  filter: brightness(0.95) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
}
.woocommerce ul.products li.product .added_to_cart { display: none !important; }

/* ── Pagination ── */
.woo-shop-pagination { margin-top: 36px; }
.woocommerce-pagination ul {
  display: flex !important;
  gap: 4px !important;
  list-style: none !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding-inline: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  color: var(--black);
  transition: background var(--transition), border-color var(--transition);
  background: var(--white);
}
.woocommerce-pagination ul li a:hover { background: #f0f2f2; border-color: #a6a6a6; }
.woocommerce-pagination ul li span.current {
  background: #e3e6e6;
  border-color: #a6a6a6;
  font-weight: 700;
  color: var(--black);
}

/* ── No products / notices ── */
.woo-no-products { padding: 60px 0; text-align: center; }
.woocommerce-info {
  border-top-color: var(--navy) !important;
  font-family: var(--font);
  font-size: 14px;
}
.woocommerce-info::before { color: var(--navy) !important; }

/* ============================================================
   22. WOOCOMMERCE — SINGLE PRODUCT
   ============================================================ */

/* ── Breadcrumb bar ── */
.woo-breadcrumb-bar {
  background: var(--grey-light);
  padding-block: 14px;
  border-bottom: 1px solid var(--grey-border);
}
.woo-breadcrumb-bar .woocommerce-breadcrumb {
  font-size: 14px !important;
  color: var(--grey-text) !important;
  margin: 0 !important;
}
.woo-breadcrumb-bar .woocommerce-breadcrumb a {
  color: var(--grey-text) !important;
  transition: color var(--transition) !important;
}
.woo-breadcrumb-bar .woocommerce-breadcrumb a:hover { color: var(--gold) !important; }

/* ── Section ── */
.woo-single-section {
  background: var(--white);
  padding-block: 40px 64px;
}

/* ── Product layout: gallery | summary ── */
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 560px 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}

/* Full-width bottom sections */
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .up-sells.products,
.woocommerce div.product #review_form_wrapper,
.woocommerce div.product .woocommerce-notices-wrapper {
  grid-column: 1 / -1 !important;
}

/* ── Gallery — vertical thumbnails on left, main image on right ── */
.woocommerce div.product div.images {
  position: sticky;
  top: 100px;
  display: flex !important;
  flex-direction: row !important;
  gap: 16px !important;
  align-items: flex-start !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  flex: 1 !important;
  order: 2 !important;
  min-width: 0 !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}
.woocommerce div.product div.images .flex-control-thumbs {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
  order: 1 !important;
  width: 80px !important;
  flex-shrink: 0 !important;
  list-style: none !important;
}
.woocommerce div.product div.images .flex-control-thumbs li { width: 80px !important; }
.woocommerce div.product div.images .flex-control-thumbs img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  background: var(--white) !important;
  border: 2px solid var(--grey-border) !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  padding: 4px !important;
  transition: border-color var(--transition) !important;
}
.woocommerce div.product div.images .flex-control-thumbs li.flex-active-slide img {
  border-color: var(--gold) !important;
}

/* ── Summary — open layout, no box ── */
.woocommerce div.product div.summary {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* ── Product title ── */
.woocommerce div.product .product_title {
  font-size: 32px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
}

/* ── Short description (displayed before rating) ── */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 18px !important;
  color: var(--black) !important;
  line-height: 1.5 !important;
  margin-bottom: 16px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  font-weight: 400 !important;
}
.woocommerce div.product .woocommerce-product-details__short-description p { margin: 0 !important; }
.woocommerce div.product .woocommerce-product-details__short-description ul { list-style: disc; padding-left: 20px; }
.woocommerce div.product .woocommerce-product-details__short-description li { margin-bottom: 4px; }

/* ── Rating ── */
.woocommerce div.product .woocommerce-product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.woocommerce div.product .star-rating { color: var(--gold) !important; font-size: 14px !important; }
.woocommerce div.product .woocommerce-review-link {
  font-size: 14px;
  color: var(--black);
  text-decoration: underline;
  opacity: 0.6;
}
.woocommerce div.product .woocommerce-review-link:hover { opacity: 1; }

/* ── Price ── */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  margin: 0 0 16px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: rgba(0,0,0,0.4) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: line-through !important;
}
.woocommerce div.product p.price del .woocommerce-Price-amount,
.woocommerce div.product span.price del .woocommerce-Price-amount {
  font-size: 16px !important;
  color: rgba(0,0,0,0.4) !important;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
}

/* Discount badge (injected via PHP filter inside p.price) */
.alfa-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(52,168,83,0.12);
  color: #34A853;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  line-height: 1.6;
  vertical-align: middle;
}

/* ── Product divider (after price) ── */
.alfa-product-divider {
  border: none;
  border-top: 1px solid var(--grey-border);
  margin: 4px 0 20px;
}

/* ── Brand section ── */
.alfa-brand-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.alfa-brand-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}
.alfa-brand-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.alfa-brand-logo {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain !important;
  border: 1px solid var(--grey-border) !important;
  border-radius: 4px !important;
}

/* ── Variation swatches ── */
.alfa-swatch-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.woocommerce div.product .variations td.label label {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.woocommerce div.product .variations select { display: none !important; }
.alfa-swatch {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid var(--grey-border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.48);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  user-select: none;
}
.alfa-swatch:hover,
.alfa-swatch.active {
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 500;
}

/* ── Quantity ── */
.alfa-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.alfa-qty-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}
.woocommerce div.product form.cart {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
}
.woocommerce div.product form.cart div.quantity {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: fit-content !important;
}
.woocommerce div.product form.cart div.quantity::before { display: none !important; }

/* +/- stepper buttons (injected by JS) */
.qty-btn {
  width: 40px !important;
  height: 40px !important;
  background: #f5f5f5 !important;
  border: 1px solid var(--grey-border) !important;
  border-radius: 4px !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--black) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background var(--transition) !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  padding: 0 !important;
}
.qty-btn:hover { background: #ebebeb !important; }
.qty-btn.qty-minus { border-right: none !important; border-radius: 4px 0 0 4px !important; }
.qty-btn.qty-plus  { border-left: none !important;  border-radius: 0 4px 4px 0 !important; }

.woocommerce div.product form.cart div.quantity input.qty {
  font-family: var(--font) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  background: var(--white) !important;
  border: 1px solid var(--grey-border) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 48px !important;
  height: 40px !important;
  text-align: center !important;
  outline: none !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
}
.woocommerce div.product form.cart div.quantity input.qty::-webkit-inner-spin-button,
.woocommerce div.product form.cart div.quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
}

/* ── Buttons row (SEND ENQUIRY | ADD TO CART) ── */
.alfa-btn-row {
  display: flex;
  gap: 12px;
}

/* Add to cart — outline gold */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product .single_add_to_cart_button {
  flex: 1 !important;
  width: auto !important;
  background: var(--white) !important;
  color: var(--gold) !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 0 20px !important;
  height: 48px !important;
  border-radius: 4px !important;
  border: 2px solid var(--gold) !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: background var(--transition), color var(--transition) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  filter: none !important;
}

/* Send enquiry — gold filled */
.woo-enquire-btn {
  flex: 1;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 20px;
  height: 48px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.woo-enquire-btn:hover {
  background: var(--white);
  color: var(--gold);
}

/* ── Product meta ── */
.woocommerce div.product .product_meta {
  font-size: 13px;
  color: var(--grey-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-border);
}
.woocommerce div.product .product_meta span { display: block; }
.woocommerce div.product .product_meta .sku { font-weight: 600; color: var(--black); }
.woocommerce div.product .product_meta .posted_in a,
.woocommerce div.product .product_meta .tagged_as a { color: var(--gold); text-decoration: underline; }
.woocommerce div.product .product_meta .posted_in a:hover,
.woocommerce div.product .product_meta .tagged_as a:hover { opacity: 0.8; }

/* ── Tabs ── */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 48px;
  border-top: 1px solid var(--grey-border);
  padding-top: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--grey-border);
  padding: 0;
  margin-bottom: 28px;
  list-style: none;
  background: #f0f2f2;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #555 !important;
  padding: 14px 24px !important;
  display: block !important;
  border-bottom: 3px solid transparent !important;
  margin-bottom: -1px !important;
  transition: color var(--transition), border-color var(--transition) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { color: var(--gold) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--white) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--gold) !important;
  border-bottom-color: var(--gold) !important;
  font-weight: 700 !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li { font-size: 14px; color: #333; line-height: 1.8; }

/* ── Attributes table ── */
.woocommerce div.product .woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  overflow: hidden;
}
.woocommerce div.product .woocommerce-product-attributes th,
.woocommerce div.product .woocommerce-product-attributes td {
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--grey-border);
  text-align: left;
  vertical-align: top;
}
.woocommerce div.product .woocommerce-product-attributes tr:last-child th,
.woocommerce div.product .woocommerce-product-attributes tr:last-child td { border-bottom: none; }
.woocommerce div.product .woocommerce-product-attributes th {
  font-weight: 700; color: var(--black); width: 180px; background: #f0f2f2;
}
.woocommerce div.product .woocommerce-product-attributes td { color: #333; }

/* ── Related & upsells ── */
.woocommerce div.product .related.products,
.woocommerce div.product .up-sells.products {
  margin-top: 0;
  padding-top: 40px;
  border-top: 1px solid var(--grey-border);
}
.woocommerce div.product .related > h2,
.woocommerce div.product .up-sells > h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-border);
}
.woocommerce div.product .related ul.products,
.woocommerce div.product .up-sells ul.products { grid-template-columns: repeat(4, 1fr) !important; }

/* Sale badge */
.woocommerce div.product span.onsale {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  min-height: auto !important;
  line-height: 1.5 !important;
}

/* ── Notices ── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info { font-family: var(--font); font-size: 14px; }
.woocommerce-message { border-top-color: var(--navy) !important; }
.woocommerce-message::before { color: var(--navy) !important; }
.woocommerce-message .button,
.woocommerce-message a.button {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-family: var(--font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  border: none !important;
  padding: 8px 18px !important;
}

/* ============================================================
   23. WOOCOMMERCE — RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .woocommerce ul.products,
  .woo-shop-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .woocommerce div.product .related ul.products,
  .woocommerce div.product .up-sells ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 900px) {
  .woocommerce ul.products,
  .woo-shop-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .woocommerce div.product { grid-template-columns: 1fr !important; gap: 28px !important; }
  .woocommerce div.product div.images { position: static; }
}

@media (max-width: 768px) {
  .woo-shop-section { padding-block: 36px 48px; }
  .woo-single-section { padding-block: 24px 48px; }
  .woo-shop-toolbar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .woocommerce div.product .related ul.products,
  .woocommerce div.product .up-sells ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .woocommerce div.product .woocommerce-tabs ul.tabs { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woo-shop-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .woocommerce ul.products li.product img { height: 150px !important; }
}

/* ============================================================
   CATALOGUE PAGES — Brands, Products, PDP
   Design tokens (scoped to catalogue)
   ============================================================ */
:root {
  --cat-navy:   #073173;
  --cat-gold:   #D9A51C;
  --cat-cream:  #f5f5f5;
  --cat-text:   #3D3D3D;
  --cat-muted:  #6B6B6B;
  --cat-border: #E0E0E0;
  --cat-deep:   #04204a;
  --dm-serif:   'Plus Jakarta Sans', sans-serif;
  --inter:      'Plus Jakarta Sans', sans-serif;
}

/* Heading weights for Plus Jakarta Sans (was DM Serif Display at 400) */
.cat-page h1, .cat-page h2 { font-weight: 700; letter-spacing: -0.3px; }
.brands-stat-n { font-weight: 700 !important; }
.brand-card-name { font-weight: 700 !important; }
.brand-card-tagline { font-weight: 600 !important; }
.pdp-product-title { font-weight: 700 !important; letter-spacing: -0.3px; }
.pdp-price-main { font-weight: 700 !important; }
.woo-pdp-related h2 { font-weight: 700 !important; }

/* ── Shared catalogue base ── */
.cat-page { background: var(--cat-cream); min-height: 100vh; font-family: var(--inter); }

.cat-breadcrumb {
  background: linear-gradient(90deg, rgba(20,10,5,0.9), rgba(20,10,5,0.9)),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='80'%3E%3Crect fill='%23E89A2C' opacity='0.15' x='10' y='10' width='40' height='60'/%3E%3Crect fill='%23A8302B' opacity='0.15' x='60' y='10' width='40' height='60'/%3E%3Crect fill='%23E8B23C' opacity='0.15' x='110' y='10' width='40' height='60'/%3E%3Crect fill='%231E5DA8' opacity='0.15' x='160' y='10' width='40' height='60'/%3E%3C/svg%3E");
  padding: 18px 56px;
  color: #fff;
  font-family: var(--inter);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.cat-breadcrumb .sep { opacity: 0.4; }
.cat-breadcrumb .current {
  color: var(--cat-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── BRANDS PAGE ── */
.brands-hero {
  background: linear-gradient(180deg, #04204a 0%, #073173 100%);
  color: #fff;
  padding: 72px 56px 80px;
  position: relative;
  overflow: hidden;
}
.brands-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}
.brands-hero-inner { max-width: 1440px; margin: 0 auto; position: relative; }
.brands-hero-eyebrow {
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cat-gold);
  margin-bottom: 12px;
  display: block;
}
.brands-hero h1 {
  font-family: var(--dm-serif);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.0;
  letter-spacing: -1.2px;
  color: #fff;
}
.brands-hero-desc {
  font-family: var(--inter);
  font-size: 17px;
  line-height: 1.65;
  color: #cfd5e8;
  max-width: 660px;
  margin: 0;
}
.brands-hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.brands-stat-n {
  font-family: var(--dm-serif);
  font-size: clamp(40px, 4vw, 56px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.brands-stat-l {
  font-family: var(--inter);
  font-size: 13px;
  color: #9aa3c4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Brand strategy intro */
.brands-strategy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 56px 24px;
  text-align: center;
}
.brands-strategy h2 {
  font-family: var(--dm-serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cat-navy);
  margin: 12px 0 16px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 400;
}
.brands-strategy p {
  font-family: var(--inter);
  font-size: 17px;
  color: var(--cat-text);
  line-height: 1.7;
  max-width: 800px;
  margin-inline: auto;
}

/* Power brands grid */
.brands-grid-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 56px 32px;
}
.brands-grid-section h2 {
  font-family: var(--dm-serif);
  font-size: 36px;
  color: var(--cat-navy);
  margin: 0 0 28px;
  letter-spacing: -0.3px;
  font-weight: 400;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .brands-grid { grid-template-columns: 1fr; } }

.brand-card {
  background: #fff;
  border: 1px solid var(--cat-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7,49,115,0.1);
  border-color: var(--cat-gold);
}
.brand-card-hero {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.brand-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-card-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.brand-card-wordmark {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-card-name {
  font-family: var(--dm-serif);
  font-size: 52px;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.brand-card-est {
  margin-top: 8px;
  font-family: var(--inter);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.brand-card-footer-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.5), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--inter);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brand-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.brand-card-tagline {
  font-family: var(--dm-serif);
  font-size: 20px;
  color: var(--cat-navy);
  line-height: 1.3;
  margin: 0 0 14px;
  letter-spacing: -0.2px;
  font-weight: 400;
}
.brand-card-desc {
  font-family: var(--inter);
  font-size: 14px;
  color: var(--cat-text);
  line-height: 1.65;
  margin: 0 0 16px;
}
.brand-card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.brand-cat-tag {
  font-family: var(--inter);
  font-size: 11px;
  font-weight: 500;
  background: #F5F2EB;
  color: var(--cat-navy);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #E8DFCC;
}
.brand-card-bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #F2F2F2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-card-meta {
  display: flex;
  gap: 16px;
  font-family: var(--inter);
  font-size: 12px;
  color: var(--cat-muted);
}
.brand-view-btn {
  background: var(--cat-navy);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 48px;
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.brand-view-btn:hover { background: #04204a; color: #fff; }

/* For Buyers ribbon */
.brands-for-buyers {
  background: #fff;
  padding: 64px 56px;
  margin-top: 40px;
  border-top: 1px solid var(--cat-border);
  border-bottom: 1px solid var(--cat-border);
}
.brands-for-buyers-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .brands-for-buyers-inner { grid-template-columns: 1fr; gap: 32px; } }
.brands-for-buyers h2 {
  font-family: var(--dm-serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cat-navy);
  margin: 12px 0 16px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 400;
}
.brands-for-buyers p {
  font-family: var(--inter);
  font-size: 15px;
  color: var(--cat-text);
  line-height: 1.7;
  margin: 0 0 24px;
}
.buyer-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.buyer-feature {
  padding: 20px;
  border: 1px solid var(--cat-border);
  border-radius: 6px;
  background: var(--cat-cream);
}
.buyer-feature-num {
  font-family: var(--dm-serif);
  font-size: 22px;
  color: var(--cat-gold);
}
.buyer-feature h4 {
  font-family: var(--inter);
  font-size: 15px;
  font-weight: 700;
  color: var(--cat-navy);
  margin: 8px 0 6px;
}
.buyer-feature p {
  font-family: var(--inter);
  font-size: 13px;
  color: var(--cat-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── PRODUCTS / CATALOGUE PAGE ── */
.cat-hero {
  padding: 40px 56px 28px;
  max-width: 1440px;
  margin: 0 auto;
}
.cat-hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.cat-hero-eyebrow {
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cat-gold);
  display: block;
  margin-bottom: 8px;
}
.cat-hero h1 {
  font-family: var(--dm-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--cat-navy);
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.cat-hero-desc {
  font-family: var(--inter);
  font-size: 16px;
  color: var(--cat-text);
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
}
.cat-stats-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}
.cat-stat { text-align: center; }
.cat-stat-n {
  font-family: var(--dm-serif);
  font-size: 28px;
  color: var(--cat-navy);
  display: block;
}
.cat-stat-l {
  font-family: var(--inter);
  font-size: 11px;
  color: var(--cat-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Category pills */
.cat-pills {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-pills::-webkit-scrollbar { display: none; }
.cat-pill {
  background: #fff;
  color: var(--cat-navy);
  border: 1px solid #DDD7C9;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--inter);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.cat-pill.active, .cat-pill:hover {
  background: var(--cat-navy);
  color: #fff;
  border-color: var(--cat-navy);
}
.cat-pill-count {
  background: #F5F2EB;
  color: var(--cat-muted);
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.15s;
}
.cat-pill.active .cat-pill-count, .cat-pill:hover .cat-pill-count {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Catalogue layout */
.cat-layout-section {
  padding: 0 56px 80px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
}

/* Filter sidebar */
.cat-sidebar {
  width: 264px;
  flex-shrink: 0;
  background: #fff;
  padding: 28px 24px;
  border: 1px solid var(--cat-border);
  border-radius: 4px;
  align-self: flex-start;
  position: sticky;
  top: 92px;
}
.cat-sidebar h3 {
  font-family: var(--inter);
  font-size: 15px;
  font-weight: 700;
  color: var(--cat-navy);
  margin: 0 0 4px;
}
.filter-clear {
  background: none;
  border: none;
  color: var(--cat-gold);
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.filter-group { border-bottom: 1px solid var(--cat-border); padding: 16px 0; }
.filter-group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--inter);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--cat-navy);
}
.filter-options { margin-top: 12px; display: flex; flex-direction: column; gap: 2px; }
.filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-family: var(--inter);
  font-size: 13.5px;
  color: var(--cat-text);
  user-select: none;
}
.filter-label input[type="checkbox"] { display: none; }
.filter-check {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1.5px solid #C9C9C9;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.filter-label input:checked ~ .filter-check-wrap .filter-check,
.filter-label.checked .filter-check {
  border-color: var(--cat-gold);
  background: var(--cat-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

/* Catalogue main */
.cat-main { flex: 1; min-width: 0; }
.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--cat-border);
  margin-bottom: 24px;
}
.cat-toolbar-count {
  font-family: var(--inter);
  font-size: 14px;
  color: var(--cat-text);
}
.cat-toolbar-count strong { color: var(--cat-navy); }
.cat-sort select {
  font-family: var(--inter);
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid #DDD7C9;
  border-radius: 4px;
  color: var(--cat-navy);
  background: #fff;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .cat-grid { grid-template-columns: 1fr; } .cat-layout-section { flex-direction: column; } .cat-sidebar { width: 100%; position: static; } }

/* Product card */
.prod-card {
  background: #fff;
  border: 1px solid var(--cat-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.prod-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,42,94,0.08);
  border-color: var(--cat-gold);
}
.prod-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s;
}
.prod-card:hover .prod-card-img img { transform: scale(1.04); }
.prod-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.prod-card-img-placeholder .ph-name {
  font-family: var(--dm-serif);
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1;
}
.prod-card-img-placeholder .ph-sub {
  margin-top: 6px;
  font-family: var(--inter);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.prod-badge {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--inter);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.prod-badge-bs { left: 12px; background: var(--cat-navy); color: #fff; }
.prod-badge-stock { right: 12px; }
.prod-badge-in  { background: #e8f5ee; color: #0f7b3a; }
.prod-badge-low { background: #fff3e0; color: #c86800; }
.prod-badge-out { background: #fbeaea; color: #b83232; }
.prod-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-brand-row {
  font-family: var(--inter);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cat-gold);
}
.prod-card-name {
  font-family: var(--inter);
  font-size: 16px;
  font-weight: 600;
  color: var(--cat-navy);
  line-height: 1.3;
}
.prod-card-sub {
  font-family: var(--inter);
  font-size: 13px;
  color: var(--cat-muted);
  line-height: 1.5;
}
.prod-sizes { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.prod-size-tag {
  font-family: var(--inter);
  font-size: 11px;
  color: var(--cat-text);
  background: #F5F2EB;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid #E8DFCC;
}
.prod-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F2F2F2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.prod-price-label { font-family: var(--inter); font-size: 11px; color: var(--cat-muted); }
.prod-price {
  font-family: var(--inter);
  font-size: 20px;
  font-weight: 700;
  color: var(--cat-navy);
}
.prod-moq { font-family: var(--inter); font-size: 11px; color: var(--cat-muted); margin-top: 2px; }
.prod-view-btn {
  background: #fff;
  color: var(--cat-navy);
  border: 1.5px solid var(--cat-navy);
  padding: 8px 14px;
  border-radius: 48px;
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s;
}
.prod-view-btn:hover { background: var(--cat-navy); color: #fff; }

/* List view row */
.prod-row {
  background: #fff;
  border: 1px solid var(--cat-border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 180px 1fr 200px 200px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.prod-row:hover { border-color: var(--cat-gold); }
.prod-row-img { height: 180px; overflow: hidden; border-right: 1px solid var(--cat-border); }
.prod-row-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-row-info { padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; }
.prod-row-pricing {
  padding: 20px 24px;
  border-left: 1px solid var(--cat-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-row-actions {
  padding: 20px 24px;
  border-left: 1px solid var(--cat-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prod-row-actions .btn-row { display: flex; flex-direction: column; gap: 6px; }
.prod-row-actions .btn-enq {
  background: var(--cat-gold);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.prod-row-actions .btn-view {
  background: #fff;
  color: var(--cat-navy);
  border: 1.5px solid var(--cat-navy);
  padding: 9px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ── PRODUCT DETAIL PAGE (PDP) ── */
.pdp-page { background: var(--cat-cream); }
.pdp-back {
  padding: 16px 56px 0;
  max-width: 1440px;
  margin: 0 auto;
}
.pdp-back a {
  font-family: var(--inter);
  font-size: 13px;
  color: var(--cat-navy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pdp-back a:hover { text-decoration: underline; }
.pdp-hero-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 56px 32px;
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .pdp-hero-section { grid-template-columns: 1fr; }
  .pdp-thumb-rail { display: flex; flex-direction: row; order: 2; }
}

/* Thumbnail rail */
.pdp-thumb-rail { display: flex; flex-direction: column; gap: 10px; }
.pdp-thumb {
  width: 76px;
  height: 76px;
  border: 1px solid var(--cat-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #fff;
  transition: border-color 0.15s;
}
.pdp-thumb.active { border: 2px solid var(--cat-gold); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Hero image */
.pdp-hero-img {
  background: #fff;
  border: 1px solid var(--cat-border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.pdp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}
.pdp-hero-img-placeholder {
  width: 100%;
  height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pdp-wishlist {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  border: 1px solid var(--cat-border);
  border-radius: 999px;
  width: 40px; height: 40px;
  cursor: pointer;
  color: var(--cat-navy);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-bestseller-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cat-navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Buy box */
.pdp-buybox { display: flex; flex-direction: column; }
.pdp-brand-eyebrow {
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cat-gold);
  margin-bottom: 8px;
}
.pdp-product-title {
  font-family: var(--dm-serif);
  font-size: 38px;
  color: var(--cat-navy);
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  font-weight: 400;
}
.pdp-product-sub {
  font-family: var(--inter);
  font-size: 15.5px;
  color: var(--cat-text);
  margin: 0 0 16px;
  line-height: 1.6;
}
.pdp-meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

/* Pricing block */
.pdp-pricing-block {
  background: linear-gradient(180deg, #EBF0F8 0%, #DDE5F2 100%);
  border: 1px solid #C8D5EB;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}
.pdp-buybox .woocommerce-product-title { display: none !important; }
.pdp-buybox .woocommerce-product-details__short-description { margin-bottom: 20px !important; }
.pdp-buybox .cart { margin-bottom: 12px !important; }
.pdp-buybox .product_meta { margin-top: 16px !important; padding-top: 16px !important; border-top: 1px solid #E0E6F0; }
.pdp-buybox .single_add_to_cart_button { margin-bottom: 8px !important; }
.pdp-actions { margin-top: 20px; margin-bottom: 24px; }
.pdp-trust { margin-top: 24px; }
.pdp-price-main {
  font-family: var(--dm-serif);
  font-size: 38px;
  color: var(--cat-navy);
}
.pdp-price-unit {
  font-family: var(--inter);
  font-size: 14px;
  color: var(--cat-muted);
}
.pdp-price-rrp {
  font-family: var(--inter);
  font-size: 14px;
  color: #9A9A9A;
  text-decoration: line-through;
}
.pdp-discount-badge {
  background: #0F7B3A;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 11px;
  font-weight: 700;
}
.pdp-tier-note {
  font-family: var(--inter);
  font-size: 12.5px;
  color: var(--cat-muted);
  margin: 4px 0 16px;
}
.pdp-tiers {
  display: grid;
  gap: 8px;
}
.pdp-tier {
  background: #fff;
  color: var(--cat-navy);
  border: 1px solid #E8DFCC;
  padding: 10px 12px;
  border-radius: 4px;
  font-family: var(--inter);
  text-align: center;
  transition: all 0.15s;
}
.pdp-tier.active {
  background: var(--cat-navy);
  color: #fff;
  border-color: var(--cat-navy);
}
.pdp-tier-range { font-size: 11px; opacity: 0.8; letter-spacing: 0.4px; text-transform: uppercase; }
.pdp-tier-price { font-size: 18px; font-weight: 700; margin-top: 2px; }

/* Variant selector */
.pdp-variant-section { margin-bottom: 18px; }
.pdp-section-label {
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cat-navy);
  margin-bottom: 8px;
  display: block;
}
.pdp-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-swatch {
  background: #fff;
  border: 1.5px solid #DDD7C9;
  color: var(--cat-navy);
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  transition: all 0.15s;
}
.pdp-swatch.active, .pdp-swatch:hover {
  background: #FAF6EC;
  border-color: var(--cat-gold);
}

/* Quantity stepper */
.pdp-qty-section { margin-bottom: 20px; }
.pdp-qty-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pdp-qty-moq { font-family: var(--inter); font-size: 12px; color: var(--cat-muted); font-weight: 500; }
.pdp-qty-row { display: flex; align-items: center; gap: 16px; }
.pdp-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #DDD7C9;
  border-radius: 4px;
  overflow: hidden;
}
.pdp-stepper button {
  background: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 16px;
  cursor: pointer;
  color: var(--cat-navy);
  font-family: var(--inter);
}
.pdp-stepper input {
  width: 64px;
  border: none;
  border-left: 1.5px solid #DDD7C9;
  border-right: 1.5px solid #DDD7C9;
  padding: 10px 0;
  text-align: center;
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 600;
  color: var(--cat-navy);
  outline: none;
}
.pdp-subtotal { font-family: var(--inter); font-size: 13px; color: var(--cat-muted); }
.pdp-subtotal strong { color: var(--cat-navy); font-size: 16px; }

/* CTA buttons */
.pdp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.pdp-btn-enquire {
  background: linear-gradient(180deg, #E8BA2A 0%, #C8991A 100%);
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 48px;
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(214,145,42,0.25);
  text-decoration: none;
  text-align: center;
  display: block;
}
.pdp-btn-cart {
  background: #fff;
  color: var(--cat-navy);
  border: 2px solid var(--cat-navy);
  padding: 14px 20px;
  border-radius: 48px;
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

/* Trust strip */
.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--cat-border);
}
.pdp-trust-item { display: flex; gap: 10px; }
.pdp-trust-icon { color: var(--cat-gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.pdp-trust-title { font-family: var(--inter); font-size: 12.5px; font-weight: 600; color: var(--cat-navy); }
.pdp-trust-sub { font-family: var(--inter); font-size: 11.5px; color: var(--cat-muted); }

/* PDP description */
.pdp-desc-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .pdp-desc-section { grid-template-columns: 1fr; } }
.pdp-desc-section h2 {
  font-family: var(--dm-serif);
  font-size: 28px;
  color: var(--cat-navy);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
  font-weight: 400;
}
.pdp-desc-section p {
  font-family: var(--inter);
  font-size: 15px;
  color: var(--cat-text);
  line-height: 1.7;
  margin: 0 0 20px;
}
.pdp-how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
.pdp-section-sub {
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cat-gold);
  margin: 0 0 12px;
}
.pdp-how-list {
  margin: 0;
  padding-left: 18px;
  font-family: var(--inter);
  font-size: 14px;
  color: var(--cat-text);
  line-height: 1.9;
}

/* Specs table */
.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--inter);
  font-size: 13.5px;
  color: var(--cat-text);
  margin-top: 12px;
}
.pdp-specs-table tr { border-bottom: 1px solid var(--cat-border); }
.pdp-specs-table tr:nth-child(even) { background: var(--cat-cream); }
.pdp-specs-table td { padding: 10px 16px; }
.pdp-specs-table td:first-child { font-weight: 600; color: var(--cat-navy); width: 40%; }

/* Certs row */
.pdp-certs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pdp-cert {
  border: 1.5px solid var(--cat-navy);
  color: var(--cat-navy);
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pdp-cert-diamond { color: var(--cat-gold); }

/* Docs */
.pdp-docs { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.pdp-doc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--cat-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--cat-navy);
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  transition: border-color 0.15s;
}
.pdp-doc:hover { border-color: var(--cat-gold); }
.pdp-doc-dl { color: var(--cat-gold); font-weight: 600; font-size: 12px; }

/* Right column: origin, case study, account manager */
.pdp-origin-card {
  background: linear-gradient(180deg, #1E2A5E 0%, #0d1a3e 100%);
  color: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.pdp-origin-card h3 {
  font-family: var(--dm-serif);
  font-size: 26px;
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 400;
}
.pdp-origin-card p { font-family: var(--inter); font-size: 14px; line-height: 1.7; color: #cfd5e8; margin: 0; }
.pdp-case-card {
  background: #FAF6EC;
  border: 1px solid #E8DFCC;
  padding: 28px;
  border-radius: 8px;
  margin-top: 20px;
}
.pdp-case-quote {
  font-family: var(--dm-serif);
  font-size: 22px;
  color: var(--cat-navy);
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 400;
}
.pdp-case-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cat-gold), #D6912A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.pdp-case-who { font-family: var(--inter); font-size: 13.5px; font-weight: 600; color: var(--cat-navy); }
.pdp-case-role { font-family: var(--inter); font-size: 12px; color: var(--cat-muted); }
.pdp-am-card {
  background: #fff;
  border: 1px solid var(--cat-border);
  padding: 24px;
  border-radius: 8px;
  margin-top: 20px;
}
.pdp-am-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cat-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.pdp-am-name { font-family: var(--inter); font-size: 15px; font-weight: 600; color: var(--cat-navy); }
.pdp-am-role { font-family: var(--inter); font-size: 12.5px; color: var(--cat-muted); }
.pdp-am-actions { display: flex; gap: 8px; margin-top: 14px; }
.pdp-am-actions a {
  flex: 1;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.pdp-am-call { background: var(--cat-navy); color: #fff; border: none; }
.pdp-am-email { background: #fff; color: var(--cat-navy); border: 1.5px solid var(--cat-navy); padding: 8.5px 14px; }

/* Reviews */
.pdp-reviews-section {
  max-width: 1440px;
  margin: 24px auto 0;
  padding: 48px 56px;
  border-top: 1px solid var(--cat-border);
}
.pdp-reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.pdp-reviews-section h2 {
  font-family: var(--dm-serif);
  font-size: 32px;
  color: var(--cat-navy);
  margin: 0;
  letter-spacing: -0.3px;
  font-weight: 400;
}
.pdp-review-btn {
  background: #fff;
  color: var(--cat-navy);
  border: 1.5px solid var(--cat-navy);
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
}
.pdp-rating-overview {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.pdp-rating-big {
  font-family: var(--dm-serif);
  font-size: 56px;
  color: var(--cat-navy);
  line-height: 1;
}
.pdp-rating-total { font-family: var(--inter); font-size: 13px; color: var(--cat-muted); margin-top: 6px; }
.pdp-histogram { display: flex; flex-direction: column; gap: 8px; }
.pdp-hist-row { display: flex; align-items: center; gap: 12px; }
.pdp-hist-label { font-family: var(--inter); font-size: 12px; color: var(--cat-muted); width: 50px; }
.pdp-hist-bar { flex: 1; height: 8px; background: #F2F2F2; border-radius: 999px; overflow: hidden; }
.pdp-hist-fill { height: 100%; background: var(--cat-gold); border-radius: 999px; }
.pdp-hist-count { font-family: var(--inter); font-size: 12px; color: var(--cat-muted); width: 50px; text-align: right; }
.pdp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pdp-reviews-grid { grid-template-columns: 1fr; } .pdp-rating-overview { grid-template-columns: 1fr; } }
.pdp-review-card {
  background: #fff;
  border: 1px solid var(--cat-border);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-review-top { display: flex; justify-content: space-between; align-items: center; }
.pdp-review-date { font-family: var(--inter); font-size: 11.5px; color: var(--cat-muted); }
.pdp-review-title { font-family: var(--inter); font-size: 15px; font-weight: 600; color: var(--cat-navy); margin: 0; }
.pdp-review-body { font-family: var(--inter); font-size: 13.5px; color: var(--cat-text); line-height: 1.6; margin: 0; }
.pdp-review-footer { border-top: 1px solid #F2F2F2; padding-top: 12px; margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; }
.pdp-reviewer-name { font-family: var(--inter); font-size: 13px; font-weight: 600; color: var(--cat-navy); display: flex; align-items: center; gap: 6px; }
.pdp-verified { background: #E8F5EE; color: #0F7B3A; padding: 1px 6px; border-radius: 3px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.pdp-reviewer-co { font-family: var(--inter); font-size: 11.5px; color: var(--cat-muted); }
.pdp-review-variant { font-family: var(--inter); font-size: 10.5px; color: #9A9A9A; text-align: right; }

/* Stars */
.stars { display: inline-flex; gap: 1px; }
.star { color: #E8A02C; font-size: 14px; line-height: 1; }
.star-empty { color: #D9D9D9; }

/* Related products */
.pdp-related-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 56px;
  border-top: 1px solid var(--cat-border);
}
.pdp-related-section h2 {
  font-family: var(--dm-serif);
  font-size: 32px;
  color: var(--cat-navy);
  margin: 0;
  letter-spacing: -0.3px;
  font-weight: 400;
}
.pdp-related-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.pdp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .pdp-related-grid { grid-template-columns: repeat(2, 1fr); } }

/* WooCommerce single product overrides */
.woo-pdp-wrap { background: var(--cat-cream); min-height: 100vh; }
.woo-pdp-wrap .woocommerce-product-gallery { border: 1px solid var(--cat-border); border-radius: 6px; overflow: hidden; background: #fff; }
.woo-pdp-wrap .woocommerce-product-gallery__image img { object-fit: contain !important; }
.woo-pdp-wrap h1.product_title { font-family: var(--dm-serif) !important; font-size: 38px !important; color: var(--cat-navy) !important; font-weight: 400 !important; letter-spacing: -0.3px !important; line-height: 1.1 !important; }
.woo-pdp-wrap .woocommerce-product-rating { display: flex; align-items: center; gap: 8px; }
.woo-pdp-wrap p.price { font-family: var(--dm-serif) !important; font-size: 34px !important; color: var(--cat-navy) !important; }
.woo-pdp-wrap .button.single_add_to_cart_button {
  background: linear-gradient(180deg, #F0B23A 0%, #D6912A 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 32px !important;
  border-radius: 4px !important;
  font-family: var(--inter) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 8px rgba(214,145,42,0.25) !important;
}
.woo-pdp-wrap .woo-enquire-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--cat-navy);
  border: 2px solid var(--cat-navy);
  padding: 14px 20px;
  border-radius: 4px;
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
}
.woo-pdp-wrap .woocommerce-tabs { margin-top: 32px; }
.woo-pdp-wrap .woocommerce-tabs ul.tabs li.active a { border-bottom-color: var(--cat-gold) !important; color: var(--cat-navy) !important; }
.woo-pdp-related { max-width: 1440px; margin: 0 auto; padding: 0 56px 80px; }
.woo-pdp-related h2 { font-family: var(--dm-serif) !important; font-size: 32px !important; color: var(--cat-navy) !important; font-weight: 400 !important; margin-bottom: 24px !important; }

/* Catalogue B2B CTA band */
.cat-cta-band {
  background: linear-gradient(180deg, var(--cat-navy) 0%, var(--cat-deep) 100%);
  color: #fff;
  padding: 64px 56px;
  text-align: center;
  margin-top: 48px;
}
.cat-cta-band h2 {
  font-family: var(--dm-serif);
  font-size: 42px;
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
}
.cat-cta-band p { font-family: var(--inter); font-size: 17px; color: #cfd5e8; max-width: 560px; margin: 0 auto 28px; line-height: 1.65; }
.cat-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #E8BA2A 0%, #C8991A 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(214,145,42,0.35);
}

/* ============================================================
   MOBILE RESPONSIVE FIXES — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* ── Hamburger buttons: min 44×44 tap target ── */
  .nav-toggle,
  .hero-nav-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  /* ── Mobile nav open menu links ── */
  .nav-menu.is-open a,
  .hero-nav-menu.is-open a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 4px 0;
  }

  /* ── Footer nav links ── */
  .footer-col a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 4px 0;
  }
  .footer-col li { margin-bottom: 0; }

  /* ── Home category "View product →" links ── */
  .category-link {
    min-height: 44px;
    padding: 12px 0;
  }

  /* ── Cat-hero: reduce side padding so pills have room ── */
  .cat-hero {
    padding: 28px 20px 20px;
  }

  /* ── Cat-pills: edge-to-edge scroll strip ── */
  .cat-pills {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
  }

  /* ── Stats row: hide on small screens to reduce hero clutter ── */
  .cat-stats-row { display: none; }

  /* ── Cat-pill buttons: taller tap target ── */
  .cat-pill { padding: 12px 16px; min-height: 44px; }

  /* ── View Product button: taller ── */
  .prod-view-btn { padding: 12px 14px; min-height: 44px; }

  /* ── Brands hero: tighter padding, hide SVG overlay ── */
  .brands-hero { padding: 48px 24px 56px; }
  .brands-hero-pattern { display: none; }

  /* ── Brands hero stats: 2-col on mobile ── */
  .brands-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
  }

  /* ── Breadcrumb: padding + tap targets ── */
  .cat-breadcrumb { padding: 10px 20px; }
  .cat-breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
  }

  /* ── Products layout section: reduce side padding ── */
  .cat-layout-section { padding: 0 20px 48px; }

  /* ── Products toolbar: stack on mobile ── */
  .cat-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  /* ── Brands hero H1 slightly smaller ── */
  .brands-hero h1 { font-size: clamp(32px, 9vw, 52px); }

  /* ── Products: single-col already, just reduce card image height ── */
  .prod-card-img > div { height: 180px !important; }
}

/* ════════════════════════════════════════════════
   CATEGORY LANDING PAGES
   ════════════════════════════════════════════════ */

.cat-land-page {
  background: #FAF8F3;
  min-height: 100vh;
  font-family: var(--inter);
}

/* ── Hero ── */
.cat-land-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  z-index: 0;
}
.cat-land-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 480px;
  padding: 0 56px 0;
}
.cat-land-hero-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}
.cat-land-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Breadcrumb */
.cat-land-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: var(--inter);
}
.cat-land-breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.15s;
}
.cat-land-breadcrumb a:hover { color: #fff; }
.cat-land-sep { opacity: 0.45; }
.cat-land-crumb-current { font-weight: 600; }

/* Big numeral */
.cat-land-numeral { display: none; }

/* Hero content block */
.cat-land-hero-content {
  padding-top: 56px;
  padding-bottom: 80px;
  max-width: 760px;
  position: relative;
}
.cat-land-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.cat-land-headline {
  font-family: var(--dm-serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}
.cat-land-intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px;
}
.cat-land-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cat-land-chip {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fff;
}

/* Insight band */
.cat-land-insight {
  position: relative;
  margin-inline: -56px;
  background: rgba(0,0,0,0.28);
  padding: 24px 56px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cat-land-insight-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat-land-insight-kpi {
  font-family: var(--dm-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -1px;
}
.cat-land-insight-label {
  font-size: 14px;
  color: #fff;
  max-width: 360px;
  line-height: 1.4;
}
.cat-land-insight-stats {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.cat-land-insight-stats > div { display: flex; gap: 6px; align-items: baseline; }
.cat-land-insight-stat-label { opacity: 0.7; }
.cat-land-insight-stats strong { color: #fff; font-size: 16px; font-weight: 700; }

/* ── Body sections ── */
.cat-land-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 56px 24px;
}
.cat-land-section--brands { padding-top: 56px; }
.cat-land-section-hdr { margin-bottom: 36px; }
.cat-land-section-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E8A02C;
  display: block;
  margin-bottom: 8px;
}
.cat-land-section-title {
  font-family: var(--dm-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  color: #1E2A5E;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.4px;
  max-width: 800px;
  font-weight: 400;
}

/* ── Pillars ── */
.cat-land-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-land-pillar {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 6px;
  padding: 28px;
}
.cat-land-pillar-num {
  font-family: var(--dm-serif);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
}
.cat-land-pillar h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1E2A5E;
  margin: 0 0 10px;
  line-height: 1.3;
}
.cat-land-pillar p {
  font-size: 14px;
  color: #3D3D3D;
  line-height: 1.65;
  margin: 0;
}

/* ── Anchor brands ── */
.cat-land-brands-hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  gap: 16px;
}
.cat-land-brands-title {
  font-family: var(--dm-serif);
  font-size: clamp(24px, 3vw, 32px);
  color: #1E2A5E;
  margin: 0;
  letter-spacing: -0.3px;
  font-weight: 400;
}
.cat-land-brands-link {
  background: none;
  border: none;
  color: #E8A02C;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter);
  text-decoration: none;
  white-space: nowrap;
}
.cat-land-brands-grid {
  display: grid;
  gap: 16px;
}
.cat-land-brand-card {
  padding: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cat-land-brand-name {
  font-family: var(--dm-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 400;
  flex-shrink: 0;
}
.cat-land-brand-meta { flex: 1; }
.cat-land-brand-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
}
.cat-land-brand-tagline {
  font-family: var(--dm-serif);
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  font-weight: 400;
}
.cat-land-brand-stats {
  font-size: 12px;
  text-align: right;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  flex-shrink: 0;
}

/* ── Signature products ── */
.cat-land-sig-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.cat-land-sig-grid {
  display: grid;
  gap: 18px;
}
.cat-land-sig-card {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.cat-land-sig-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,26,62,0.12);
}
.cat-land-sig-body { padding: 16px; }
.cat-land-sig-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9A9A9A;
  margin-bottom: 6px;
}
.cat-land-sig-name {
  font-size: 14px;
  font-weight: 700;
  color: #1E2A5E;
  margin: 0 0 5px;
  line-height: 1.3;
}
.cat-land-sig-desc {
  font-size: 12px;
  color: #6B6B6B;
  margin: 0 0 10px;
  line-height: 1.5;
}
.cat-land-sig-price {
  font-size: 15px;
  font-weight: 700;
  color: #1E2A5E;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cat-land-sig-moq {
  font-size: 11px;
  color: #9A9A9A;
  font-weight: 400;
}
.cat-land-sig-certs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cat-land-sig-cert {
  background: #F0F4FB;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  color: #1E2A5E;
  letter-spacing: 0.3px;
}

/* ── Case studies ── */
.cat-land-cases {
  background: #fff;
  padding: 72px 56px;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  margin-top: 56px;
}
.cat-land-cases-inner { max-width: 1240px; margin: 0 auto; }
.cat-land-cases-grid { display: grid; gap: 20px; }
.cat-land-case-card {
  background: #FAF6EC;
  border: 1px solid #E8DFCC;
  padding: 28px;
  border-radius: 6px;
}
.cat-land-case-quote {
  font-family: var(--dm-serif);
  font-size: clamp(18px, 2vw, 22px);
  color: #1E2A5E;
  line-height: 1.35;
  margin: 0 0 16px;
  letter-spacing: -0.2px;
  font-weight: 400;
}
.cat-land-case-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 14px;
  border-top: 1px solid #E8DFCC;
  gap: 12px;
  flex-wrap: wrap;
}
.cat-land-case-who { font-size: 13px; font-weight: 600; color: #1E2A5E; }
.cat-land-case-metric { font-size: 12px; font-weight: 700; color: #E8A02C; letter-spacing: 0.4px; }

/* ── CTA ── */
.cat-land-cta {
  padding: 80px 56px;
  color: #fff;
  text-align: center;
}
.cat-land-cta-inner { max-width: 1100px; margin: 0 auto; }
.cat-land-cta-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.cat-land-cta h2 {
  font-family: var(--dm-serif);
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: #fff;
  font-weight: 400;
}
.cat-land-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 32px;
  max-width: 600px;
  line-height: 1.6;
}
.cat-land-cta-btns {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Shared buttons ── */
.cat-land-btn-primary {
  background: linear-gradient(180deg, #F0B23A 0%, #D6912A 100%);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
  font-family: var(--inter);
  transition: opacity 0.15s;
}
.cat-land-btn-primary:hover { opacity: 0.88; color: #fff; }
.cat-land-btn--sm { padding: 12px 22px; font-size: 12px; }
.cat-land-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: var(--inter);
  transition: border-color 0.15s, background 0.15s;
}
.cat-land-btn-secondary:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cat-land-hero { padding: 0 32px 0; }
  .cat-land-insight { margin-inline: -32px; padding: 20px 32px; }
  .cat-land-section { padding: 56px 32px 20px; }
  .cat-land-cases { padding: 56px 32px; }
  .cat-land-cta { padding: 64px 32px; }
}

/* Dark overlay on cat hero for text readability (all viewports) */
.cat-land-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.40) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.cat-land-hero-inner,
.cat-land-hero-content,
.cat-land-breadcrumb,
.cat-land-insight { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .cat-land-hero { padding: 0 24px 0; min-height: 360px; }
  .cat-land-hero-content { padding-top: 40px; padding-bottom: 48px; max-width: 100%; }
  .cat-land-headline { font-size: 28px; letter-spacing: -0.5px; }
  .cat-land-intro { font-size: 15px; }
  .cat-land-insight { margin-inline: -24px; padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cat-land-insight-stats { gap: 16px; }
  .cat-land-section { padding: 48px 24px 16px; }
  .cat-land-pillars { grid-template-columns: 1fr; }
  .cat-land-sig-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cat-land-cases-grid { grid-template-columns: 1fr !important; }
  .cat-land-cases { padding: 48px 24px; }
  .cat-land-cta { padding: 56px 24px; }
  .cat-land-intro { display: none; }
  .cat-land-brands-grid { grid-template-columns: 1fr !important; }
  .cat-land-brands-hdr { flex-direction: column; align-items: flex-start; }
  .cat-land-brand-card { flex-wrap: wrap; }
  .cat-land-brand-stats { text-align: left; }
  .cat-land-numeral { font-size: 80px; opacity: 0.2; }
}

@media (max-width: 480px) {
  .cat-land-sig-grid { grid-template-columns: 1fr !important; }
  .cat-land-hero-content { padding-top: 32px; padding-bottom: 40px; }
  .cat-land-numeral { display: none; }
  .cat-land-cta-btns { flex-direction: column; width: 100%; }
  .cat-land-btn-primary, .cat-land-btn-secondary { width: 100%; text-align: center; }
}

/* ============================================================
   MOBILE CATEGORIES BLOCK (mobile-only, always visible below hero)
   ============================================================ */
.mobile-cats-block { display: none; }
.btn-learn-more-mobile { display: none; }

@media (max-width: 768px) {

  /* Mobile hero button tweaks — show Explore Products as primary, hide Wholesale */
  .hero-actions .btn-primary { display: inline-flex; }
  .hero-actions .btn-outline { display: none; }

  .btn-learn-more-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 12px 8px;
  }
  .btn-learn-more-mobile svg { width: 18px; height: 18px; }

  /* Categories block — mobile only, lives inside hero */
  .mobile-cats-block {
    display: block;
    background: transparent;
    padding: 8px 0 16px;
    width: 100%;
  }

  .mobile-cats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .mc2-card {
    position: relative;
    display: block;
    aspect-ratio: 1.7 / 1;
    border-radius: 14px;
    overflow: visible;
    text-decoration: none;
    color: var(--white);
    background: none !important;
    box-shadow: none;
    isolation: isolate;
  }
  /* Background gradient lives on ::before so we can mask it to fade right edge into page */
  .mc2-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.10));
  }
  /* Arrow circle bottom-right on each card */
  .mc2-card::after {
    content: '';
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23073173' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>") no-repeat center / 14px 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 3;
  }

  .mc2-card--green::before  { background: linear-gradient(100deg, #2a4111 0%, #4a7022 30%, #aac38a 55%, #ffffff 70%, #ffffff 100%); }
  .mc2-card--purple::before { background: linear-gradient(100deg, #1f1855 0%, #3d3088 30%, #a89bd2 55%, #ffffff 70%, #ffffff 100%); }
  .mc2-card--orange::before { background: linear-gradient(100deg, #8c3d10 0%, #c4651d 30%, #ecb583 55%, #ffffff 70%, #ffffff 100%); }
  .mc2-card--blue::before   { background: linear-gradient(100deg, #122752 0%, #2c4a8a 30%, #9db1d8 55%, #ffffff 70%, #ffffff 100%); }
  .mc2-card--teal::before   { background: linear-gradient(100deg, #143d3d 0%, #2a6b6b 30%, #98c2c2 55%, #ffffff 70%, #ffffff 100%); }
  .mc2-card--pink::before   { background: linear-gradient(100deg, #6f3046 0%, #a85574 30%, #e0a6bb 55%, #ffffff 70%, #ffffff 100%); }

  .mc2-card-content {
    position: relative;
    z-index: 2;
    padding: 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
  }

  .mc2-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    color: #1f3a78;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  .mc2-card--green  .mc2-card-icon { color: #3d5e1a; }
  .mc2-card--purple .mc2-card-icon { color: #2f2470; }
  .mc2-card--orange .mc2-card-icon { color: #b25218; }
  .mc2-card--blue   .mc2-card-icon { color: #1f3a78; }
  .mc2-card--teal   .mc2-card-icon { color: #1f5959; }
  .mc2-card--pink   .mc2-card-icon { color: #9a4866; }
  .mc2-card-icon svg { width: 15px; height: 15px; }

  .mc2-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 0 6px rgba(0,0,0,0.30);
    max-width: 55%;
  }

  .mc2-card-img {
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 50%;
    height: 125%;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
  }
  .mc2-card--orange .mc2-card-img,
  .mc2-card--teal   .mc2-card-img {
    width: 85%;
    height: 160%;
    right: -28px;
    bottom: -6px;
  }
  /* Rows 2+3: shift product image down to avoid colliding with cards above */
  .mobile-cats-grid .mc2-card:nth-child(n+3) .mc2-card-img {
    bottom: -28px;
  }
  .mobile-cats-grid .mc2-card--orange:nth-child(n+3) .mc2-card-img,
  .mobile-cats-grid .mc2-card--teal:nth-child(n+3)   .mc2-card-img {
    bottom: -34px;
  }
  /* NZ (blue) image: shrink + raise so it's not cut off */
  .mc2-card--blue .mc2-card-img,
  .mobile-cats-grid .mc2-card--blue:nth-child(n+3) .mc2-card-img {
    height: 105%;
    width: 45%;
    bottom: -8px;
  }

  .mobile-cats-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: #073173;
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(7,49,115,0.30);
  }
  .mobile-cats-cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    color: #073173;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-cats-cta-icon svg { width: 16px; height: 16px; }
  .mobile-cats-cta-text { flex: 1; text-align: center; }
  .mobile-cats-cta-arrow {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-cats-cta-arrow svg { width: 20px; height: 20px; }
}

/* ============================================================
   DESKTOP CATEGORIES BLOCK (>=769px) — same cards as mobile,
   laid out 3x2 inside the hero, overlaid on the background.
   ============================================================ */
@media (min-width: 769px) {

  /* Let the hero grow to fit the category grid below the text */
  .hero {
    height: auto;
    min-height: 842px;
  }
  .hero-text {
    padding-bottom: 28px;
  }

  /* Hero CTAs — desktop: stack on the right, larger & more prominent */
  .hero-actions {
    position: absolute;
    top: 150px;
    right: 0;
    width: 392px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    flex-wrap: nowrap;
    z-index: 4;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: space-between;
    font-size: 21px;
    border-radius: 16px;
    padding: 8px 8px 8px 28px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  }
  .hero-actions .btn-outline {
    background: rgba(10,20,40,0.30);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  .hero-actions .btn-primary-text,
  .hero-actions .btn-outline-text {
    padding: 18px 0;
  }
  .hero-actions .btn-primary-icon,
  .hero-actions .btn-outline-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .hero-actions .btn-primary-icon {
    background: #ffffff;
  }
  .hero-actions .btn-primary-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
  }
  .hero-actions .btn-outline-icon {
    background: transparent;
    border: 1.5px solid var(--white);
  }
  .hero-actions .btn-outline-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
  }

  /* Reveal the categories block on desktop and give it room */
  .mobile-cats-block {
    display: block;
    width: 100%;
    padding: 44px 0 56px;
  }

  .mobile-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
  }

  .mc2-card {
    position: relative;
    display: block;
    aspect-ratio: 2.7 / 1;
    border-radius: 18px;
    overflow: visible;
    text-decoration: none;
    color: var(--white);
    background: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .mc2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.34);
  }

  /* Colored gradient background (solid card, fades to light on the right) */
  .mc2-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    z-index: 0;
  }
  .mc2-card--green::before  { background: linear-gradient(100deg, #2a4111 0%, #4a7022 30%, #aac38a 58%, #f4f6f2 82%, #f7f8f5 100%); }
  .mc2-card--purple::before { background: linear-gradient(100deg, #1f1855 0%, #3d3088 30%, #a89bd2 58%, #f3f2f8 82%, #f7f6fb 100%); }
  .mc2-card--orange::before { background: linear-gradient(100deg, #8c3d10 0%, #c4651d 30%, #ecb583 58%, #faf2ea 82%, #fdf8f3 100%); }
  .mc2-card--blue::before   { background: linear-gradient(100deg, #122752 0%, #2c4a8a 30%, #9db1d8 58%, #f1f4fa 82%, #f6f8fc 100%); }
  .mc2-card--teal::before   { background: linear-gradient(100deg, #143d3d 0%, #2a6b6b 30%, #98c2c2 58%, #eef6f6 82%, #f5fafa 100%); }
  .mc2-card--pink::before   { background: linear-gradient(100deg, #6f3046 0%, #a85574 30%, #e0a6bb 58%, #faeef3 82%, #fdf6f9 100%); }

  /* White arrow circle bottom-right */
  .mc2-card::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23073173' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>") no-repeat center / 22px 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    z-index: 5;
  }

  .mc2-card-content {
    position: relative;
    z-index: 2;
    padding: 22px 24px 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
  }

  .mc2-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    color: #1f3a78;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .mc2-card--green  .mc2-card-icon { color: #3d5e1a; }
  .mc2-card--purple .mc2-card-icon { color: #2f2470; }
  .mc2-card--orange .mc2-card-icon { color: #b25218; }
  .mc2-card--blue   .mc2-card-icon { color: #1f3a78; }
  .mc2-card--teal   .mc2-card-icon { color: #1f5959; }
  .mc2-card--pink   .mc2-card-icon { color: #9a4866; }
  .mc2-card-icon svg { width: 22px; height: 22px; }

  .mc2-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.45);
    max-width: 56%;
  }

  /* Product images allowed to break out above the card top */
  .mc2-card-img {
    position: absolute;
    right: 24px;
    bottom: -2px;
    width: 38%;
    height: 142%;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 10px 16px rgba(0,0,0,0.30));
  }
  /* Wide jar products sit a touch larger */
  .mc2-card--orange .mc2-card-img,
  .mc2-card--teal   .mc2-card-img {
    width: 46%;
    height: 158%;
    right: 14px;
  }
  /* NZ (blue) bottle */
  .mc2-card--blue .mc2-card-img {
    width: 34%;
    height: 132%;
  }

  /* Explore all products pill — centered below the grid */
  .mobile-cats-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: auto;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px 30px;
    background: #073173;
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(7,49,115,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .mobile-cats-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(7,49,115,0.42);
  }
  .mobile-cats-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    color: #073173;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-cats-cta-icon svg { width: 17px; height: 17px; }
  .mobile-cats-cta-text { flex: 1; text-align: center; }
  .mobile-cats-cta-arrow {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-cats-cta-arrow svg { width: 20px; height: 20px; }
}

/* Narrower desktops / tablets — drop to 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .mc2-card { aspect-ratio: 2.9 / 1; }
}

