/* =========================================================================
   GREEN PROVENZA — Design System
   Palette:  French Navy #002654 · Royal Gold #D4AF37 · French Red #ED2939
             Pure White #FFFFFF · Light Grey #F7F8FA · Charcoal #1F2937
             Light Silver #E5E7EB · Emerald Green #16A34A
   Type:     Display  — "Fraunces"  (organic, low-contrast serif)
             Body     — "Inter"     (clean, minimal)
   ========================================================================= */

:root {
  --navy: #002654;
  --gold: #D4AF37;
  --red: #ED2939;
  --white: #FFFFFF;
  --light-grey: #F7F8FA;
  --charcoal: #1F2937;
  --silver: #E5E7EB;
  --emerald: #16A34A;

  --navy-rgb: 0, 38, 84;
  --gold-rgb: 212, 175, 55;
  --red-rgb: 237, 41, 57;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 40px -12px rgba(0, 38, 84, 0.18);
  --shadow-lift: 0 20px 50px -16px rgba(0, 38, 84, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  
  --header-height: 80px;
  --header-height-mobile: 70px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  padding-top: var(--header-height);
}

@media (max-width: 991.98px) {
  body { padding-top: var(--header-height-mobile); }
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.eyebrow.on-dark { color: var(--gold); }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-red { color: var(--red) !important; }
.text-emerald { color: var(--emerald) !important; }
.text-charcoal { color: var(--charcoal) !important; }

.bg-light-grey { background-color: var(--light-grey) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-white { background-color: var(--white) !important; }

section { padding: 96px 0; }
@media (max-width: 767.98px) { section { padding: 64px 0; } }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-top: 10px; }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn-navy {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-navy:hover { background: #001B3D; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}
.btn-gold:hover { background: #C4A032; transform: translateY(-2px); box-shadow: var(--shadow-lift); color: var(--navy); }

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-red:hover { background: #D42535; transform: translateY(-2px); box-shadow: var(--shadow-lift); color: var(--white); }

.btn-whatsapp {
  background: var(--emerald);
  color: var(--white);
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s var(--ease);
  border: none;
}
.btn-whatsapp:hover { background: #13943F; color: var(--white); transform: translateY(-2px); }

/* Button sizing */
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* ================================================================
   HEADER - Mobile-first, fully responsive
   ================================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--navy);
  padding: 12px 0;
  transition: all 0.3s ease;
  min-height: 70px;
  border-bottom: 2px solid var(--gold);
}

/* Brand / Logo */
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-brand .brand-dot {
  color: var(--gold);
}

/* Navbar Toggle Button - Custom styled */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding: 8px 10px;
  border-radius: 6px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 28px;
  height: 28px;
}

/* Navigation Links */
.navbar-nav {
  gap: 4px;
  padding: px 0;
}

.nav-item .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 5px 10px !important;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-item .nav-link:hover {
  color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.08);
}

.nav-item .nav-link.active {
  color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.12);
}

.nav-item .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
  width: 60%;
}

/* CTA Button in Nav */
.nav-item .btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-item .btn-gold:hover {
  background: #C4A032;
  border-color: #C4A032;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ================================================================
   MOBILE RESPONSIVE FIXES
   ================================================================ */

/* Tablet and below */
@media (max-width: 991.98px) {
  .site-header {
    padding: 10px 0;
    min-height: 64px;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  /* Mobile menu background */
  .navbar-collapse {
    background: var(--navy);
    padding: 12px 16px 20px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
  }

  .navbar-nav {
    gap: 2px;
    padding: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item .nav-link {
    padding: 12px 16px !important;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
  }

  .nav-item .nav-link::after {
    display: none;
  }

  .nav-item .nav-link:hover {
    background: rgba(212, 175, 55, 0.06);
  }

  .nav-item .nav-link.active {
    background: rgba(212, 175, 55, 0.12);
  }

  /* CTA Button - full width on mobile */
  .nav-item .btn-gold {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin-top: 8px;
    justify-content: center;
  }

  .nav-item .btn-gold:hover {
    transform: none;
  }

  /* Remove margin on mobile */
  .nav-item .btn-gold.ms-lg-2 {
    margin-left: 0 !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .site-header {
    padding: 8px 0;
    min-height: 58px;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-toggler {
    padding: 6px 8px;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
  }

  .navbar-collapse {
    padding: 10px 12px 16px;
    margin-top: 8px;
  }

  .nav-item .nav-link {
    padding: 10px 14px !important;
    font-size: 0.9rem;
  }

  .nav-item .btn-gold {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Landscape phones */
@media (max-width: 767.98px) and (orientation: landscape) {
  .site-header {
    min-height: 54px;
    padding: 6px 0;
  }

  .navbar-collapse {
    max-height: 70vh;
    overflow-y: auto;
    padding: 8px 12px 12px;
  }

  .nav-item .nav-link {
    padding: 8px 14px !important;
  }
}

/* ================================================================
   HERO section margin fix (since header is fixed)
   ================================================================ */
body {
  padding-top: 70px;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 64px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 58px;
  }
}

/* ================================================================
   HERO - French inspired
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #001B3D 0%, var(--navy) 45%, #003366 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../images/herobanner.png');
  background-size: cover;
  pointer-events: none;
  opacity: 0.08;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.03; mix-blend-mode: overlay; pointer-events: none;
  background-image: url('./images/herobanner.png');
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.08; }
.hero h1 .text-gold { color: var(--gold) !important; }
.hero p.lead { color: rgba(255,255,255,0.86); max-width: 560px; font-size: 1.15rem; }

.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #001B3D 0%, var(--navy) 55%, #003366 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3.2rem); }
.page-hero .eyebrow { color: var(--gold); }

/* ================================================================
   PROVENANCE LINE
   ================================================================ */
.provenance-line { position: relative; padding: 20px 0; }
.provenance-line .track {
  position: absolute; top: 27px; left: 5%; right: 5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px);
}
.provenance-line .stops { display: flex; justify-content: space-between; position: relative; flex-wrap: wrap; }
.provenance-line .stop { text-align: center; flex: 1; min-width: 50px; }
.provenance-line .stop .node {
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
  margin: 0 auto 14px; position: relative; z-index: 2; border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}
.provenance-line.on-dark .node { border-color: #001B3D; }
.provenance-line .stop .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; }
.provenance-line .stop .icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 6px; display: block; }

@media (max-width: 575.98px) {
  .provenance-line .stop .label { font-size: 0.55rem; }
  .provenance-line .stop .icon { font-size: 1rem; }
  .provenance-line .stop .node { width: 10px; height: 10px; margin-bottom: 8px; }
  .provenance-line .track { top: 22px; }
}

/* ================================================================
   CARDS
   ================================================================ */
.card-lift { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.card-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.category-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--silver);
  height: 100%;
  transition: all 0.3s var(--ease);
}
.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.category-card .cat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--light-grey); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  margin-bottom: 18px;
}
.category-card .cat-body { padding: 30px 26px; }

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--silver);
  height: 100%;
  transition: all 0.3s var(--ease);
}
.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.product-card .product-img {
  height: 190px; background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--navy);
  position: relative; overflow: hidden;
}
.product-card .product-body { padding: 22px; }
.product-card .badge-cat {
  background: rgba(212, 175, 55, 0.12); color: var(--gold);
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em;
  border-radius: 50px; padding: 5px 12px; text-transform: uppercase;
}
.product-card .spec-row { font-size: 0.85rem; color: var(--charcoal); display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed var(--silver); }
.product-card .spec-row:last-of-type { border-bottom: none; }

.value-card { 
  padding: 32px 26px; 
  border-radius: var(--radius-md); 
  background: var(--light-grey); 
  height: 100%;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.value-card i { font-size: 1.8rem; color: var(--gold); }

/* ================================================================
   COUNTERS / STATS
   ================================================================ */
.stat-block { text-align: center; }
.stat-block .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--navy); }
.stat-block .cap { font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.on-dark .stat-block .num { color: var(--white); }
.on-dark .stat-block .cap { color: var(--gold); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-slide { background: var(--light-grey); border-radius: var(--radius-lg); padding: 46px; border: 1px solid var(--silver); }
.testimonial-slide .quote-mark { font-family: var(--font-display); font-size: 3.2rem; color: var(--gold); line-height: 0.6; }
.testimonial-slide .name { font-weight: 700; color: var(--navy); }
.testimonial-slide .role { font-size: 0.85rem; color: var(--charcoal); opacity: 0.7; }

/* ================================================================
   TIMELINE
   ================================================================ */
.timeline { position: relative; margin-left: 20px; }
.timeline::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold), var(--navy)); }
.timeline-item { position: relative; padding-left: 36px; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -6px; top: 4px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
}
.timeline-item .year { font-family: var(--font-display); color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #001B3D);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(212, 175, 55, 0.08);
}
.cta-band h2 { color: var(--white); }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1050;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--emerald); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float:hover { color: var(--white); transform: scale(1.08); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45), 0 8px 24px rgba(0,0,0,0.25); }
  70% { box-shadow: 0 0 0 14px rgba(22, 163, 74, 0), 0 8px 24px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0), 0 8px 24px rgba(0,0,0,0.25); }
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top-btn {
  position: fixed; bottom: 26px; left: 26px; z-index: 1050;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white); display: none; align-items: center; justify-content: center;
  border: none; box-shadow: var(--shadow-soft);
  transition: opacity 0.3s;
}
.scroll-top-btn.show { display: flex; }
.scroll-top-btn:hover { background: #001B3D; color: var(--gold); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #001B3D; color: rgba(255,255,255,0.82); }
.site-footer h6 { color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 700; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s ease; }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); }
.site-footer .brand .brand-dot { color: var(--gold); }
.site-footer .social-icon {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center; margin-right: 8px;
  transition: all 0.3s ease;
}
.site-footer .social-icon:hover { background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; }

/* ================================================================
   MISC
   ================================================================ */
.accordion-button:not(.collapsed) { background: var(--light-grey); color: var(--navy); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25); }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15); }
.form-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; }

a { text-decoration: none; color: var(--navy); transition: color 0.3s ease; }
a:hover { color: var(--gold); }

.divider-dot { 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--gold); 
  display: inline-block; 
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-main { 
  border-radius: var(--radius-md); 
  overflow: hidden; 
  height: 380px; 
  background: var(--light-grey); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 4rem; 
  color: var(--navy); 
  border: 1px solid var(--silver);
}
.gallery-thumb { 
  border-radius: var(--radius-sm); 
  overflow: hidden; 
  height: 84px; 
  background: var(--light-grey); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.6rem; 
  color: var(--navy); 
  cursor: pointer; 
  border: 2px solid transparent; 
  transition: all 0.3s ease;
}
.gallery-thumb.active { border-color: var(--gold); background: var(--white); }
.gallery-thumb:hover { border-color: var(--gold); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* ================================================================
   PRODUCT IMAGES
   ================================================================ */
.product-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.product-img .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img .product-image {
  transform: scale(1.05);
}

.product-img .product-image[src*="placeholder"] {
  opacity: 0.6;
  padding: 20px;
  object-fit: contain;
}

.gallery-main {
  width: 100%;
  height: 380px;
  background: var(--light-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main .bi {
  font-size: 5rem;
  color: var(--navy);
  opacity: 0.3;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
  overflow: hidden;
}

.gallery-thumb.active {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb .bi {
  font-size: 2rem;
  color: var(--navy);
  opacity: 0.4;
}

.gallery-thumb.active .bi {
  opacity: 1;
}

/* ================================================================
   SPECIAL FRENCH TOUCHES
   ================================================================ */
/* Subtle French flag accent stripe */
.french-stripe {
  display: inline-block;
  width: 20px;
  height: 3px;
  background: linear-gradient(to right, #002654 0%, #002654 33%, #FFFFFF 33%, #FFFFFF 66%, #ED2939 66%, #ED2939 100%);
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Gold accent borders on cards */
.category-card,
.product-card,
.value-card {
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.category-card:hover,
.product-card:hover,
.value-card:hover {
  border-top-color: var(--gold);
}

/* Add a subtle pattern for section backgrounds */
.bg-light-grey .section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-head.center .section-head h2::after {
  margin: 12px auto 0;
}