/* ============================================
   style.css — Ruscom Maple Products
   ============================================
   Sections:
   1.  Reset & Base
   2.  Layout Utilities
   3.  Typography
   4.  Buttons
   5.  Header & Navigation
   6.  Footer
   7.  Page Hero
   8.  Home: Hero Section
   9.  Home: Highlights Section
   10. Home: Featured Products Section
   11. Products Grid & Cards
   12. Product Filter Bar
   13. Single Product Page
   14. About Page
   15. Health Benefits Page
   16. Contact Page
   17. Forms (shared)
   18. Cart Page
   19. Responsive / Media Queries
   ============================================ */


/* ---- 1. Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}


/* ---- 2. Layout Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* ---- 3. Typography ---- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}


/* ---- 4. Buttons ---- */

/* Secondary — dark outline, used for supporting navigation */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-primary {
  background: #de9c21;
  color: #fff;
  border-color: #de9c21;
}

.btn-primary:hover {
  background: #c48a1c;
  border-color: #c48a1c;
  color: #fff;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}


/* ---- 5. Announcement Bar ---- */
.announcement-bar {
  background: #de9c21;
  border-bottom: 1px solid rgba(13, 13, 13, 0.18);
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}

.announcement-bar p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.18px;
  text-wrap: balance;
}

.announcement-bar p::before,
.announcement-bar p::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}


/* ---- 6. Header & Navigation ---- */
.site-header {
  background-color: #0d0d0d;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 16px;
}

/* Logo — swap .logo-placeholder contents with <img src="images/logo.png"> when ready */
.site-logo {
  flex-shrink: 0;
  display: block;
  cursor: pointer;
}

.site-logo:hover .logo-placeholder {
  opacity: 0.8;
  transition: opacity 0.2s;
}


/* Header logo */
.site-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo — slightly larger for the dark background */
.footer-logo .site-logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 12px;
}

/* Navigation links */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.site-nav li {
  display: flex;
  align-items: center;
}

/* Pipe separator between nav items */
.site-nav li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 18px;
  flex-shrink: 0;
}

.site-nav a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: none;
  transition: color 0.2s;
}

.site-nav .nav-fr {
  color: #E8960A;
}

/* Hover: English turns amber, French turns white — clear interaction feedback */
.site-nav a:hover {
  color: #E8960A;
}

.site-nav a:hover .nav-fr {
  color: #ffffff;
}

/* Active page: English gets amber underline, stays white — distinct from French amber */
.site-nav a.active {
  color: #ffffff;
}

.site-nav a.active .nav-en {
  display: inline-block;
  border-bottom: 2px solid #E8960A;
  padding-bottom: 1px;
  line-height: 1;
}

.site-nav a.active .nav-fr {
  color: #E8960A;
}

/* Cart icon */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cart-link {
  position: relative;
  color: #E8960A;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.cart-icon {
  display: block;
  width: 26px;
  height: 26px;
}

.cart-count {
  display: inline-block;
  position: absolute;
  top: -5px;
  right: -8px;
  background: #E8960A;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  text-align: center;
  line-height: 17px;
  padding: 0 2px;
}

/* Mobile hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #E8960A;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  line-height: 1;
}


/* ---- 6. Footer ---- */
.site-footer {
  background: #0d0d0d;
  border-top: none;
  padding: 0;
}

/* Newsletter strip */
.footer-newsletter {
  border-bottom: 1px solid #2a2a2a;
  padding: 56px 0;
}

.footer-newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading-en {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.newsletter-heading-fr {
  font-size: 22px;
  font-weight: 700;
  color: #de9c21;
  margin-bottom: 32px;
  line-height: 1.3;
}

.newsletter-label {
  display: block;
  font-size: 14px;
  color: #cccccc;
  text-align: left;
  margin-bottom: 10px;
}

.newsletter-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-bottom-color: #de9c21;
}

.newsletter-btn {
  background: #de9c21;
  color: #ffffff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #c48a1c;
}

/* Footer columns */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  column-gap: 48px;
  row-gap: 40px;
  padding: 56px 0 0;
}

/* Brand column fills remaining space; nav columns shrink to content width */
.footer-col:first-child {
  padding-right: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.footer-col p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #aaaaaa;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 48px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #666;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col:first-child {
    padding-right: 0;
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-newsletter {
    padding: 40px 0;
  }

  .newsletter-heading-en,
  .newsletter-heading-fr {
    font-size: 18px;
  }

  .newsletter-btn {
    padding: 12px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ---- 7. Page Hero (inner pages) ---- */
/* TODO: Replace with final design from screenshots */
.page-hero {
  background: #f5f5f5;
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}


/* ---- 8. Home: Hero Section ---- */
/* TODO: Replace with final design from screenshots */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
              url('../images/hero/Hero.jpg') center center / cover no-repeat;
  min-height: 100vh;
  min-height: var(--hero-locked-height, 100vh);
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.hero-section .container {
  width: 100%;
}

.hero-section h1 {
  font-size: 52px;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .btn {
  margin: 0 8px;
}

/* Ghost secondary on hero dark background */
.hero-section .btn:not(.btn-primary) {
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.hero-section .btn:not(.btn-primary):hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}

/* Hero: scroll-down arrow */
.hero-scroll-arrow {
  display: block;
  width: 48px;
  height: 48px;
  margin: 60px auto 0;
  color: #de9c21;
  animation: hero-bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}

.hero-scroll-arrow:hover {
  color: #ffffff;
}

.hero-scroll-arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}


/* ---- 9. Home: Products Section ---- */
.home-products-section {
  background: #ffffff;
  padding: 96px 0;
  text-align: center;
}

.home-products-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 64px;
  color: #1a1a1a;
}

.home-products-title .title-fr {
  color: #de9c21;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto 64px;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-product-img {
  width: 260px;
  height: 260px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.home-product-name-en {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-product-name-fr {
  font-size: 14px;
  font-weight: 700;
  color: #de9c21;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.5;
}

.home-products-cta .btn-primary {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 40px;
}

.home-products-cta .btn-primary:hover {
  background: #333;
  border-color: #333;
}

@media (max-width: 768px) {
  .home-products-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-products-title {
    font-size: 22px;
  }

  /* French part drops to its own line so the slash stays with English */
  .home-products-title .title-fr {
    display: block;
  }
}

@media (max-width: 480px) {
  .home-product-img {
    width: 200px;
    height: 200px;
  }
}


/* ---- 9b. Home: About Intro Section ---- */
.about-intro-section {
  background: #ffffff;
  padding: 96px 0;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.about-intro-heading-en {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.about-intro-heading-fr {
  font-size: 32px;
  font-weight: 800;
  color: #de9c21;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.about-intro-body-en {
  font-size: 13px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-intro-body-fr {
  font-size: 13px;
  color: #de9c21;
  line-height: 1.9;
}

.about-intro-image {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Image always comes before text on mobile */
  .about-intro-image {
    order: -1;
    height: 340px;
    overflow: hidden;
  }

  .about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .about-intro-heading-en,
  .about-intro-heading-fr {
    font-size: 22px;
  }

  .about-intro-image {
    height: 260px;
  }
}


/* ---- 9c. Home: CBC Video Section ---- */
.cbc-video-section {
  background: #ffffff;
  padding: 96px 0;
}

.cbc-video-inner {
  max-width: 840px;
  margin: 0 auto;
}

.cbc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.cbc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cbc-wordmark {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.cbc-article-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Responsive 16:9 video container */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cbc-cta {
  text-align: center;
  margin-top: 32px;
}

.cbc-btn {
  display: inline-block;
  background: #de9c21;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 56px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.cbc-btn:hover {
  background: #c48a1c;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cbc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cbc-article-title {
    font-size: 16px;
  }

  .cbc-btn {
    padding: 14px 28px;
    white-space: normal;
    width: 100%;
    max-width: 380px;
  }
}


/* ---- 9d. Home: Contact Us Section ---- */
.home-contact-section {
  padding: 96px 0;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.home-contact-heading-en {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1a1a1a;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.home-contact-heading-fr {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #de9c21;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.home-contact-body-en {
  font-size: 15px;
  color: #444;
  max-width: 620px;
  margin: 0 auto 8px;
  line-height: 1.75;
}

.home-contact-body-fr {
  font-size: 15px;
  color: #de9c21;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.home-contact-btn {
  display: inline-block;
  background: #de9c21;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 56px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.home-contact-btn:hover {
  background: #c48a1c;
  color: #ffffff;
}

@media (max-width: 600px) {
  .home-contact-heading-en,
  .home-contact-heading-fr {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .home-contact-body-en,
  .home-contact-body-fr {
    font-size: 14px;
  }

  .home-contact-btn {
    padding: 14px 32px;
    width: 100%;
    max-width: 320px;
  }
}


/* ---- 9e. Home: Highlights Section ---- */
.highlights-section {
  padding: 96px 0;
}

.highlights-heading-en {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.highlights-heading-fr {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #de9c21;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .highlights-heading-en,
  .highlights-heading-fr {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.highlight-card {
  padding: 32px 24px;
  border: 1px solid #eee;
  text-align: center;
}

.highlight-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}


/* ---- 10. Home: Featured Products Section ---- */
/* TODO: Replace with final design from screenshots */
.featured-section {
  background: #f9f9f9;
  padding: 96px 0;
}

.featured-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .featured-section h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.featured-cta {
  text-align: center;
  margin-top: 48px;
}


/* ---- 11. Products Grid & Cards ---- */
/* TODO: Replace with final design from screenshots */
.products-section {
  padding: 72px 0 96px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.product-card {
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card-image {
  width: 100%;
  height: 260px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f0f0;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #de9c21;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  z-index: 1;
  white-space: nowrap;
}

/* Badge on product detail page */
.product-badge-lg {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

/* Clickable image link */
.product-card-img-link {
  display: block;
  text-decoration: none;
}

.product-card-img-link:hover .product-card-image img {
  opacity: 0.9;
  transition: opacity 0.2s;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: opacity 0.2s;
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Clickable product name */
.product-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.product-card-name a:hover {
  color: #de9c21;
}

/* ---- Variant selector (product detail page) ---- */
.variant-selector {
  margin-bottom: 20px;
}

.variant-label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.variant-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-btn {
  padding: 8px 16px;
  border: 2px solid #ddd;
  background: #fff;
  color: #333;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.variant-btn:hover {
  border-color: #de9c21;
  color: #de9c21;
}

.variant-btn.active {
  border-color: #de9c21;
  background: #de9c21;
  color: #ffffff;
}

.product-card-size {
  font-size: 12px;
  color: #de9c21;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.product-card-price {
  font-size: 18px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 12px;
  margin-bottom: 12px;
}

.product-card-variants {
  font-size: 12px;
  color: #de9c21;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.product-card-actions .btn {
  flex: 1;
  text-align: center;
  font-size: 12px;
  padding: 10px 8px;
  white-space: nowrap;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ---- 12. Product Filter Bar ---- */
/* TODO: Replace with final design from screenshots */
.product-filters {
  padding: 0 0 28px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}


/* ---- 13. Single Product Page ---- */
/* TODO: Replace with final design from screenshots */
.product-detail-section {
  padding: 72px 0 96px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-detail-image {
  width: 100%;
  min-height: 420px;
  background: #f9f9f9;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-detail-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  margin-bottom: 12px;
}

.product-detail-name {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-detail-size {
  font-size: 15px;
  color: #888;
  margin-bottom: 18px;
}

.product-detail-price {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.product-detail-description {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 36px;
}

.product-quantity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.product-quantity-row label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: none;
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #e0e0e0;
}

.qty-input {
  width: 52px;
  height: 36px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}

/* Hide native browser spinner arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-not-found {
  padding: 80px 0;
  text-align: center;
  color: #888;
}


/* ---- 14. About Page ---- */
/* TODO: Replace with final design from screenshots */
.about-story {
  padding: 96px 0;
}

.about-story h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.about-story p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 720px;
}

.about-values {
  background: #f9f9f9;
  padding: 96px 0;
}

.about-values h2 {
  font-size: 28px;
  margin-bottom: 48px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.value-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 32px 24px;
}

.value-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}


/* ---- About: Two-column feature cards ---- */
.about-two-col-section {
  padding: 96px 0;
}

.about-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-two-col-card {
  display: flex;
  flex-direction: column;
}

.about-two-col-image {
  width: 100%;
  margin-bottom: 36px;
  overflow: hidden;
}

.about-two-col-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-two-col-heading-en {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.about-two-col-heading-fr {
  font-size: 20px;
  font-weight: 800;
  color: #de9c21;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.35;
  margin-bottom: 28px;
}

.about-two-col-body-en {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-two-col-body-fr {
  font-size: 14px;
  color: #de9c21;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-two-col-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}


/* ---- About: Locations Section ---- */
.locations-section {
  padding: 96px 0;
  background: #fff;
}

.locations-heading-en {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.locations-heading-fr {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #de9c21;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.locations-subtitle {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  margin-bottom: 48px;
}

/* Unified panel — three columns side by side */
.locations-panel {
  display: flex;
  align-items: stretch;
  border: 1px solid #e8e8e8;
}

.loc-col {
  flex: 1;
  padding: 40px 36px;
}

.loc-col-wide {
  flex: 2;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
}

/* Column header: title + count on same row, amber bottom rule */
.loc-col-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid #de9c21;
}

.loc-col-title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
}

.loc-count {
  font-size: 11px;
  font-weight: 600;
  color: #de9c21;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Location list */
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loc-list li {
  border-bottom: 1px solid #f2f2f2;
}

.loc-list li:last-child {
  border-bottom: none;
}

.loc-list a {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}

.loc-list a:hover {
  color: #de9c21;
  padding-left: 6px;
}

/* County two-column internal list */
.loc-list-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}

.loc-list-two-col li {
  border-bottom: 1px solid #f2f2f2;
}

/* Mobile */
@media (max-width: 900px) {
  .locations-panel {
    flex-direction: column;
  }

  .loc-col-wide {
    border-left: none;
    border-right: none;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  }

  .locations-heading-en,
  .locations-heading-fr {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .loc-col {
    padding: 32px 24px;
  }

  .loc-list-two-col {
    grid-template-columns: 1fr;
  }
}


/* ---- About: Cooking Locations Section ---- */
.cooking-locations-section {
  padding: 96px 0;
  background: #f9f9f9;
  text-align: center;
}

.cooking-locations-heading {
  font-size: 26px;
  font-weight: 700;
  color: #de9c21;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 56px;
}

.cooking-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
}

.cooking-loc-item {
  padding: 20px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}

.cooking-loc-item:nth-child(even) {
  border-right: none;
}

.cooking-loc-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.cooking-loc-item:hover {
  background: #de9c21;
  color: #ffffff;
}

@media (max-width: 600px) {
  .cooking-locations-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .cooking-loc-item {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .cooking-loc-item:last-child {
    border-bottom: none;
  }

  .cooking-locations-heading {
    font-size: 20px;
  }
}


/* ---- About: OMSPA Section ---- */
.omspa-section {
  background: #ede8dc;
  padding: 56px 0;
  text-align: center;
}

.omspa-logo {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
  object-fit: contain;
}

.omspa-text {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .omspa-logo {
    height: 90px;
  }

  .omspa-text {
    font-size: 14px;
  }
}


/* ---- 15. Health Benefits Page ---- */

.benefits-grid {
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  padding-bottom: 0;
}

.benefit-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 40px;
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}

.benefit-card:last-child {
  border-bottom: none;
}

.benefit-card-number {
  font-size: 36px;
  font-weight: 800;
  color: #de9c21;
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
}

.benefit-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.benefit-col-en,
.benefit-col-fr {
  display: flex;
  flex-direction: column;
}

.benefit-heading-en {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 20px;
}

.benefit-heading-fr {
  font-size: 18px;
  font-weight: 700;
  color: #de9c21;
  line-height: 1.4;
  margin-bottom: 20px;
}

.benefit-body-en {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

.benefit-body-fr {
  font-size: 14px;
  color: #de9c21;
  line-height: 1.8;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .benefit-card {
    grid-template-columns: 40px 1fr;
    gap: 0 20px;
    padding: 36px 0;
  }

  .benefit-card-number {
    font-size: 28px;
  }

  .benefit-card-content {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
}

.benefit-disclaimer {
  padding: 12px 0 0;
  font-size: 13px;
  color: #aaa;
  font-style: italic;
}


/* ---- 16. Contact Page ---- */
/* TODO: Replace with final design from screenshots */
/* New contact page layout */
.contact-new-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 72px 0 56px;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-heading-en {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.contact-heading-fr {
  font-size: 32px;
  font-weight: 800;
  color: #de9c21;
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 36px;
}

.contact-details p {
  font-size: 15px;
  color: #444;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-details a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #de9c21;
}

.contact-image-col {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.contact-image-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .contact-new-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 0 40px;
  }

  .contact-image-col {
    min-height: 280px;
  }

  .contact-heading-en,
  .contact-heading-fr {
    font-size: 24px;
  }
}

/* Address + map section */
.contact-address-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: stretch;
  padding: 56px 0 96px;
  border-top: 1px solid #eee;
}

.contact-address-heading-en {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-address-heading-fr {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #de9c21;
  margin-bottom: 24px;
}

.contact-address-value {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  font-style: normal;
}

.contact-map-box {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-inner {
  text-align: center;
  padding: 40px 32px;
}

.contact-map-inner svg {
  width: 48px;
  height: 48px;
  color: #de9c21;
  margin-bottom: 20px;
}

.contact-map-address {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-map-btn {
  display: inline-block;
  background: #de9c21;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 36px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.contact-map-btn:hover {
  background: #c48a1c;
  color: #ffffff;
}

@media (max-width: 768px) {
  .contact-address-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 40px;
    padding-bottom: 64px;
  }
}


/* ---- 17. Forms (shared) ---- */
/* TODO: Replace with final design from screenshots */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #333;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-required {
  color: #c00;
}

.confirmation-message {
  display: none;
  padding: 16px 20px;
  background: #f5f5f5;
  border-left: 4px solid #333;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.6;
}


/* ---- 18. Cart Page ---- */
/* TODO: Replace with final design from screenshots */
.cart-section {
  padding: 72px 0 96px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.cart-items-section h2 {
  font-size: 22px;
  margin-bottom: 24px;
}

.cart-empty-msg {
  font-size: 15px;
  color: #888;
  padding: 48px 0;
}

.cart-empty-msg a {
  text-decoration: underline;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-size {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty .qty-control {
  transform: scale(0.9);
  transform-origin: left;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #333;
}

/* Cart Summary Sidebar */
.cart-sidebar {
  background: #f9f9f9;
  padding: 32px;
}

.cart-sidebar h2 {
  font-size: 18px;
  margin-bottom: 24px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 10px;
  color: #555;
}

.cart-summary-line.total {
  font-weight: 700;
  font-size: 18px;
  color: #333;
  border-top: 1px solid #ddd;
  padding-top: 14px;
  margin-top: 10px;
}

.cart-summary-note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  line-height: 1.6;
}

/* Order Form (on cart page) */
.order-form-section {
  margin-top: 32px;
  border-top: 1px solid #ddd;
  padding-top: 28px;
}

.order-form-section h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}


/* ---- 19. Responsive / Media Queries ---- */

@media (max-width: 600px) {
  .announcement-bar {
    padding: 8px 14px;
  }

  .announcement-bar p {
    display: block;
    font-size: 11px;
    line-height: 1.35;
  }

  .announcement-bar p::before,
  .announcement-bar p::after {
    display: none;
  }
}

@media (max-width: 960px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-section h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: #0d0d0d;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 4px 20px 12px;
    z-index: 99;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav li {
    width: 100%;
  }

  /* Hide pipe separators on mobile */
  .site-nav li + li::before {
    display: none;
  }

  .site-nav li + li {
    border-top: 1px solid #2a2a2a;
  }

  .site-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: none;
    white-space: normal;
  }

  .menu-toggle {
    display: block;
    order: 3;
    margin-left: 8px;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .site-logo {
    margin-right: auto;
  }

  .header-actions {
    order: 2;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .hero-section {
    min-height: 100vh;
    min-height: var(--hero-locked-height, 100vh);
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cart-item {
    grid-template-columns: 70px 1fr auto;
    grid-template-rows: auto auto;
  }

  .cart-item-remove {
    grid-row: 1;
    grid-column: 3;
  }

  .cart-item-price {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 100vh;
    min-height: var(--hero-locked-height, 100vh);
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .product-card-actions {
    flex-direction: column;
  }
}


/* ---- Section spacing scale ---- */
@media (max-width: 900px) {
  .home-products-section,
  .about-intro-section,
  .cbc-video-section,
  .home-contact-section,
  .highlights-section,
  .featured-section,
  .about-story,
  .about-values,
  .about-two-col-section,
  .locations-section,
  .cooking-locations-section {
    padding: 72px 0;
  }

  .omspa-section {
    padding: 48px 0;
  }

  .products-section,
  .product-detail-section,
  .cart-section {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .benefits-grid {
    padding-top: 56px;
  }

}

@media (max-width: 600px) {
  .home-products-section,
  .about-intro-section,
  .cbc-video-section,
  .home-contact-section,
  .highlights-section,
  .featured-section,
  .about-story,
  .about-values,
  .about-two-col-section,
  .locations-section,
  .cooking-locations-section {
    padding: 56px 0;
  }

  .omspa-section {
    padding: 36px 0;
  }

  .products-section,
  .product-detail-section,
  .cart-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .benefits-grid {
    padding-top: 48px;
  }

  .product-filters {
    padding-bottom: 24px;
    margin-bottom: 32px;
  }


  .site-footer {
    padding-top: 40px;
  }
}
