/* =========================
   Fonts / Base
========================= */
.product-detail-page {
  --product-primary: #cf9f28;
  --product-primary-dark: #7c330e;
  --product-bg: #fcf9f4;
  --product-soft-bg: #f6f3ee;
}

.product-detail-page.product-family-essential_plant {
  --product-primary: #86be1b;
  --product-primary-dark: #2f6e1e;
  --product-bg: #fcf9f4;
  --product-soft-bg: #f3f7ea;
}

.product-detail-page.product-family-olive_oil {
  --product-primary: #cf9f28;
  --product-primary-dark: #7c330e;
  --product-bg: #fcf9f4;
  --product-soft-bg: #f6f3ee;
}
:root {
  color-scheme: light;
}
body {
  font-family: 'Work Sans', sans-serif;
  background-color: #fcf9f4;
  color: #1c1c19;
  margin: 0;
  overflow-x: hidden;
  padding-top: 100px;
}

.font-serif,
.site-logo,
.main-menu a {
  font-family: 'Noto Serif', serif;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-logo img,
.custom-logo {
  max-height: 60px;
  width: auto;
  display: block;
}

.site-branding a {
  display: inline-flex;
  align-items: center;
}

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.top-nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 48px;
  background: rgba(252, 249, 244, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-branding {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.site-logo {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #86be1b;
  text-decoration: none;
  font-family: 'Noto Serif', serif;
  font-weight: 400;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  max-height: 54px;
  width: auto;
  display: block;
}

.nav-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin: 0;
  padding: 0;
}

.main-menu a {
  text-decoration: none;
  color: #7c5730;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.4s ease, border-color 0.4s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu .current_page_item > a,
.main-menu .current-menu-ancestor > a {
  color: #86be1b;
  border-bottom-color: #86be1b;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #86be1b;
  margin: 5px 0;
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .top-nav {
    justify-content: space-between;
    padding: 20px 24px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .nav-wrapper {
  position: fixed !important;
  top: 84px !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;

  width: 100% !important;
  background: #fcf9f4 !important;

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

  padding: 28px 24px;
  box-sizing: border-box;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 999999;
}

.nav-wrapper.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .site-logo {
    font-size: 26px;
  }

  .custom-logo {
    max-height: 44px;
  }
}
/* =========================
   Footer
========================= */
.site-footer {
  background: #fcf9f4;
  padding: 80px 48px 32px;
  border-top: 0.5px solid rgba(20, 85, 4, 0.1);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

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

.footer-logo-text {
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  color: #86be1b;
  text-decoration: none;
}

.footer-description {
  color: #7c5730;
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
  margin: 0;
}

.footer-column h5 {
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  color: #7c5730;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.35s ease;
}

.footer-column a:hover {
  color: #7c330e;
}

.footer-newsletter-text {
  color: #7c5730;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(20, 85, 4, 0.12);
  background: #ffffff;
  padding: 14px 16px;
  color: #86be1b;
  font-size: 14px;
  outline: none;
  font-family: 'Work Sans', sans-serif;
}

.footer-newsletter-form input::placeholder {
  color: rgba(124, 87, 48, 0.6);
}

.footer-newsletter-form input:focus {
  border-color: #86be1b;
  box-shadow: 0 0 0 1px #86be1b;
}

.footer-newsletter-form button {
  width: fit-content;
  border: none;
  background: #86be1b;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background 0.35s ease;
}

.footer-newsletter-form button:hover {
  background: #2f6e1e;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(20, 85, 4, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #7c5730;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #7c5730;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.footer-bottom-links a:hover {
  color: #86be1b;
}

/* =========================
   Footer Responsive
========================= */
@media (max-width: 991px) {
  .site-footer {
    padding: 64px 24px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-bottom {
    margin-top: 56px;
  }
}

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

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   Global Helpers
========================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label,
.story-label,
.hero-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-primary {
  background: #86be1b;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #2f6e1e;
}

.btn-link-light {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
}

.btn-link-light:hover {
  border-bottom-color: #ffffff;
}

/* =========================
   Hero
========================= */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -100px;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-kicker {
  color: #ffffff;
  margin-bottom: 24px;
}

.home-hero h1 {
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* =========================
   Story Cards
========================= */
.story-cards {
  padding: 96px 0;
}

.story-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.story-card-offset {
  margin-top: 0px;
}

.story-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 32px;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

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

.story-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-label {
  color: #7c330e;
}

.story-card-content h2 {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-size: 44px;
  color: #86be1b;
}

.story-card-content p {
  margin: 0;
  color: #7c5730;
  line-height: 1.8;
  max-width: 520px;
}

.story-card-content a {
  display: inline-block;
  width: fit-content;
  color: #86be1b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(20, 85, 4, 0.2);
  padding-bottom: 4px;
}

.story-card-content a:hover {
  border-bottom-color: #86be1b;
}

/* =========================
   Editorial Section
========================= */
.editorial-section {
  background: #f6f3ee;
  padding: 128px 0;
  overflow: hidden;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

.editorial-text h2 {
  margin: 0 0 32px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(42px, 5vw, 72px);
  color: #86be1b;
  line-height: 1.1;
}

.editorial-line {
  width: 80px;
  height: 2px;
  background: rgba(124, 51, 14, 0.3);
  margin-bottom: 32px;
}

.editorial-text p {
  margin: 0 0 24px;
  color: #7c5730;
  font-size: 18px;
  line-height: 1.9;
}

.editorial-link {
  display: inline-block;
  margin-top: 16px;
  color: #7c330e;
  text-decoration: none;
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 28px;
}

.editorial-link:hover {
  color: #86be1b;
}

.editorial-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.editorial-gallery-col-offset {
  padding-top: 0px;
}

.editorial-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.editorial-quote-box {
  position: absolute;
  right: 0px;
  bottom: 0px;
	transform: translatey(100%);
  background: #fcf9f4;
  padding: 32px;
  max-width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.editorial-quote-box p {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-style: italic;
  color: #86be1b;
}

.editorial-quote-box span {
  display: inline-block;
  margin-top: 16px;
  color: #7c330e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* =========================
   Featured Products
========================= */
.featured-products {
  padding: 128px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 64px;
}

.section-label {
  color: #7c330e;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-size: 44px;
  color: #86be1b;
}

.section-link {
  color: #7c5730;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 87, 48, 0.2);
  padding-bottom: 4px;
}

.section-link:hover {
  color: #86be1b;
}

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

.product-card {
  cursor: pointer;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: #f0ede8;
  margin-bottom: 24px;
}

.product-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20, 85, 4, 0.1);
  color: #86be1b;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  color: #86be1b;
}

.product-card p {
  margin: 0;
  color: #7c5730;
  font-size: 14px;
}

/* =========================
   Values
========================= */
.values-section {
  padding: 128px 0;
  background: #86be1b;
  color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.value-card {
  text-align: center;
}

.value-card .material-symbols-outlined {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.value-card h3 {
  margin: 0 0 20px;
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  color: #ffffff;
}

.value-card p {
  max-width: 320px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

/* =========================
   CTA
========================= */
.cta-section {
  position: relative;
  padding: 160px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(252, 249, 244, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.cta-content h2 {
  margin: 0 0 32px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(40px, 5vw, 72px);
  color: #86be1b;
  line-height: 1.15;
}

.cta-content p {
  margin: 0 auto 40px;
  max-width: 700px;
  color: #7c5730;
  font-size: 22px;
  line-height: 1.8;
}

.cta-form {
  display: flex;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.6);
  color: #86be1b;
  font-size: 16px;
}

.cta-form input::placeholder {
  color: rgba(20, 85, 4, 0.45);
}

.cta-form input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 1px #86be1b;
}

.cta-form button {
  border: none;
  background: #86be1b;
  color: #ffffff;
  padding: 18px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.35s ease;
}

.cta-form button:hover {
  background: #7c330e;
}

.cta-note {
  display: inline-block;
  margin-top: 24px;
  color: rgba(124, 87, 48, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .editorial-quote-box {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .home-hero {
    margin-top: -80px;
  }

  .story-cards,
  .editorial-section,
  .featured-products,
  .values-section {
    padding: 96px 0;
  }

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

  .story-card-offset {
    margin-top: 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section {
    padding: 120px 24px;
  }
}

@media (max-width: 767px) {
  .home-hero h1 {
    margin-bottom: 24px;
  }

  .story-card-content h2,
  .section-head h2 {
    font-size: 34px;
  }

  .editorial-gallery {
    grid-template-columns: 1fr;
  }

  .editorial-gallery-col-offset {
    padding-top: 0;
  }

  .editorial-quote-box {
    position: static;
    max-width: 100%;
    margin-top: 24px;
  }

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

  .cta-form {
    flex-direction: column;
  }

  .cta-content p {
    font-size: 18px;
  }
}
/* =========================
   Contact Section
========================= */
.contact-section {
  padding: 128px 0;
  background: #f6f3ee;
}

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

.contact-content h2 {
  margin: 0 0 32px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.12;
  color: #86be1b;
}

.contact-content p {
  margin: 0 0 24px;
  color: #7c5730;
  line-height: 1.9;
  font-size: 18px;
}

.contact-infos {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.contact-info-item h4 {
  margin: 0 0 8px;
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  color: #86be1b;
}

.contact-info-item p {
  margin: 0;
  color: #7c5730;
  font-size: 16px;
  line-height: 1.7;
}

.contact-form-wrapper {
  background: #fcf9f4;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* =========================
   Luxury Editorial List - Home
========================= */

.editorial-text ul{
    
    list-style:none;
    margin:55px 0;
    padding:45px 0 45px 55px;

    position:relative;

    border-top:1px solid rgba(134,190,27,.30);
    border-bottom:1px solid rgba(134,190,27,.30);
}

/* Ligne verticale signature */
.editorial-text ul::before{
    content:"";
    
    position:absolute;
    
    left:0;
    top:0;
    bottom:0;
    
    width:2px;

    background:linear-gradient(
      to bottom,
      transparent,
      #86be1b,
      #bfd97f,
      #86be1b,
      transparent
    );
}


/* Items */
.editorial-text li{

    position:relative;

    padding:24px 0 24px 68px;

    font-size:20px;
    line-height:1.7;

    color:#7c5730;

    letter-spacing:.02em;

    border-bottom:1px solid rgba(134,190,27,.10);

    transition:all .45s ease;
}

.editorial-text li:last-child{
    border-bottom:none;
}


/* Medaillon premium */
.editorial-text li::before{

    content:"✦";

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    width:34px;
    height:34px;

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

    border-radius:50%;

    background:
      radial-gradient(circle at 30% 30%, #d8ef9b, #86be1b);

    color:#fff;

    font-size:14px;

    box-shadow:
      0 6px 18px rgba(134,190,27,.25),
      inset 0 2px 3px rgba(255,255,255,.35);
}


/* Hover */
.editorial-text li:hover{
    padding-left:78px;
    color:#86be1b;
}
.form-row input,
.form-row textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(20, 85, 4, 0.12);
  background: #ffffff;
  padding: 18px 20px;
  font-size: 16px;
  color: #86be1b;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Work Sans', sans-serif;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(124, 87, 48, 0.6);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #86be1b;
  box-shadow: 0 0 0 1px #86be1b;
}

.form-row textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-submit-btn {
  width: fit-content;
  border: none;
  background: #86be1b;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.35s ease;
}

.contact-submit-btn:hover {
  background: #7c330e;
}

/* =========================
   FAQ Section
========================= */
.faq-section {
  padding: 128px 0;
  background: #fcf9f4;
}

.faq-container {
  max-width: 980px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 56px;
}

.faq-heading h2 {
  margin: 16px 0 20px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(38px, 5vw, 62px);
  color: #86be1b;
  line-height: 1.12;
}

.faq-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #7c5730;
  line-height: 1.9;
  font-size: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-top: 1px solid rgba(20, 85, 4, 0.12);
  border-bottom: 1px solid rgba(20, 85, 4, 0.12);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #86be1b;
}

.faq-question span:first-child {
  max-width: calc(100% - 40px);
  line-height: 1.6;
  font-weight: 500;
}

.faq-icon {
  font-size: 28px;
  color: #7c330e;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  display: none;
  padding: 0 28px 26px;
}

.faq-answer p {
  margin: 0;
  color: #7c5730;
  line-height: 1.9;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================
   Contact + FAQ Responsive
========================= */
@media (max-width: 991px) {
  .contact-section,
  .faq-section {
    padding: 96px 0;
  }

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

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 24px;
  }

  .faq-question {
    padding: 22px 20px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px 22px;
  }
}
/* =========================
   Contact Page
========================= */
.contact-page-main {
  padding-top: 32px;
  padding-bottom: 96px;
}

.contact-page-hero {
  padding: 64px 0 80px;
}

.contact-page-hero-inner {
  text-align: center;
}

.contact-page-kicker {
  margin: 0 0 16px;
  color: #7c330e;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-page-hero h1 {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #86be1b;
}

.contact-page-section {
  padding-bottom: 64px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.contact-page-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-page-image-wrap {
  position: relative;
  overflow: hidden;
}

.contact-page-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 1s ease;
}

.contact-page-image-wrap:hover img {
  transform: scale(1.05);
}

.contact-page-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(252, 249, 244, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-page-image-badge p {
  margin: 0;
  color: #7c330e;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-style: italic;
}

.contact-page-details {
  padding-left: 16px;
  border-left: 1px solid rgba(20, 85, 4, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item h3 {
  margin: 0 0 8px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

.contact-detail-item p {
  margin: 0;
  color: #41493c;
  line-height: 1.9;
}

.contact-page-socials {
  display: flex;
  gap: 16px;
}

.contact-page-socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(20, 85, 4, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #86be1b;
  text-decoration: none;
  transition: all 0.4s ease;
}

.contact-page-socials a:hover {
  background: #86be1b;
  color: #ffffff;
}

.contact-page-form-box {
  background: #f6f3ee;
  padding: 32px 32px 40px;
}

.contact-page-form-box h2 {
  margin: 0 0 32px;
  font-family: 'Noto Serif', serif;
  font-size: 40px;
  color: #86be1b;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-page-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #7c5730;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c1c9b8;
  padding: 10px 0;
  color: #1c1c19;
  font-size: 16px;
  outline: none;
  font-family: 'Work Sans', sans-serif;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(65, 73, 60, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: #86be1b;
}

.form-field textarea {
  resize: none;
}

.contact-page-form-bottom {
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-page-submit {
  border: none;
  background: #86be1b;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-page-submit:hover {
  background: #2f6e1e;
}

.contact-page-form-bottom span {
  color: #41493c;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
}

/* Map */
.contact-map-section {
  margin-top: 64px;
}

.contact-map-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  filter: grayscale(0.6) sepia(0.3);
  opacity: 0.8;
  transition: opacity 1s ease;
}

.contact-map-wrap:hover {
  opacity: 1;
}

.contact-map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 85, 4, 0.05);
  z-index: 1;
}

.contact-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.contact-map-pin-outer {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(20, 85, 4, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sarayaPulse 2s infinite;
}

.contact-map-pin-inner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #86be1b;
}

.contact-map-label {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  background: #fcf9f4;
  padding: 12px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-map-label p {
  margin: 0;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-style: italic;
}

/* Newsletter */
.contact-newsletter-section {
  margin-top: 96px;
  padding: 96px 0;
  border-top: 1px solid rgba(20, 85, 4, 0.05);
  border-bottom: 1px solid rgba(20, 85, 4, 0.05);
  background: #ffffff;
}

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

.contact-newsletter-inner h2 {
  margin: 0 0 24px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 48px;
  font-style: italic;
}

.contact-newsletter-inner p {
  margin: 0 auto 40px;
  max-width: 620px;
  color: #7c5730;
  line-height: 1.9;
}

.contact-newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
}

.contact-newsletter-form input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid #717a6b;
  background: #fcf9f4;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
}

.contact-newsletter-form input:focus {
  border-bottom-color: #86be1b;
}

.contact-newsletter-form button {
  border: none;
  background: #86be1b;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-newsletter-form button:hover {
  background: #2f6e1e;
}

@keyframes sarayaPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.15);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .contact-newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-page-main {
    padding-bottom: 72px;
  }

  .contact-page-hero {
    padding: 40px 0 56px;
  }

  .contact-page-form-box {
    padding: 24px;
  }

  .contact-page-form-box h2 {
    font-size: 32px;
  }

  .contact-map-wrap {
    height: 300px;
  }

  .contact-map-label {
    right: 16px;
    bottom: 16px;
    padding: 10px 16px;
  }

  .contact-newsletter-inner h2 {
    font-size: 38px;
  }
}
/* =========================
   About Heritage Page
========================= */
.about-heritage-hero {
  padding: 56px 0 0;
  min-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-heritage-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  
  width: 100%;
}

.about-heritage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-heritage-kicker {
  margin: 0 0 24px;
  color: #7c330e;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-heritage-hero h1 {
  margin: 0 0 32px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(52px, 5vw, 108px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.about-heritage-intro {
  max-width: 520px;
  margin: 0;
  color: #41493c;
  font-size: 20px;
  line-height: 1.8;
}

.about-heritage-hero-image {
  position: relative;
  min-height: 920px;
}

.about-heritage-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Narrative section */
.about-narrative-section {
  padding: 128px 0;
  background: #fcf9f4;
}

.about-narrative-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}

.about-narrative-image-wrap {
  position: relative;
}

.about-narrative-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.about-narrative-quote-box {
  position: absolute;
  right: -32px;
  bottom: -32px;
  background: #7c330e;
  color: #ffffff;
  padding: 32px;
  max-width: 320px;
  display: none;
}

.about-narrative-quote-box p {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.4;
}

.about-narrative-content h2 {
  margin: 0 0 32px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.3;
}

.about-narrative-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-narrative-text p {
  margin: 0;
  color: #41493c;
  font-size: 20px;
  line-height: 1.8;
}

/* Elements section */
.about-elements-section {
  padding: 96px 0;
  background: #f6f3ee;
}

.about-elements-head {
  text-align: center;
  margin-bottom: 64px;
}

.about-elements-head h2 {
  margin: 0 0 16px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 48px;
}

.about-elements-head p {
  margin: 0;
  color: #7c5730;
  font-size: 18px;
}

.about-elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-element-card {
  background: #fcf9f4;
  padding: 4px;
  overflow: hidden;
}

.about-element-card-offset {
  margin-top: 0px;
}

.about-element-image {
  overflow: hidden;
  margin-bottom: 24px;
  height: 320px;
}

.about-element-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

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

.about-element-content {
  padding: 0 24px 24px;
}

.about-element-content h3 {
  margin: 0 0 16px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 30px;
}

.about-element-content p {
  margin: 0;
  color: #41493c;
  line-height: 1.8;
}

/* Break section */
.about-break-section {
  padding: 160px 24px;
  background: #2f6e1e;
  color: #a8ee8e;
  text-align: center;
}

.about-break-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-break-inner .material-symbols-outlined {
  font-size: 56px;
  margin-bottom: 32px;
  opacity: 0.5;
}

.about-break-inner blockquote {
  margin: 0 0 32px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.3;
  font-style: italic;
}

.about-break-inner cite {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-style: normal;
  opacity: 0.8;
}

/* Team section */
.about-team-section {
  padding: 128px 0;
  background: #fcf9f4;
}

.about-team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 80px;
}

.about-team-head-text {
  max-width: 760px;
}

.about-team-head-text h2 {
  margin: 0 0 24px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(40px, 5vw, 64px);
}

.about-team-head-text p {
  margin: 0;
  color: #41493c;
  font-size: 20px;
  line-height: 1.8;
}

.about-team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7c330e;
  text-decoration: none;
  font-weight: 500;
}

.about-team-link .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.about-team-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.about-team-card-offset {
  margin-top: 64px;
}

.about-team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
  margin-bottom: 24px;
}

.about-team-card:hover img {
  filter: grayscale(0);
}

.about-team-card h4 {
  margin: 0 0 8px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

.about-team-card p {
  margin: 0;
  color: #7c5730;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Final CTA */
.about-final-cta-section {
  padding: 0 0 128px;
  background: #fcf9f4;
}

.about-final-cta-box {
  background: #f0ede8;
  padding: 48px 32px;
  text-align: center;
}

.about-final-cta-box h2 {
  margin: 0 0 24px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(38px, 5vw, 62px);
}

.about-final-cta-box p {
  max-width: 760px;
  margin: 0 auto 40px;
  color: #41493c;
  font-size: 20px;
  line-height: 1.8;
}

.about-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.about-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ebe8e3;
  color: #86be1b;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.about-secondary-btn:hover {
  background: #e5e2dd;
}

/* Responsive */
@media (min-width: 768px) {
  .about-narrative-quote-box {
    display: block;
  }
}

@media (max-width: 1100px) {
  .about-heritage-hero-grid,
  .about-narrative-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-heritage-hero {
    min-height: auto;
  }

  .about-heritage-hero-image {
    min-height: 500px;
  }

  .about-team-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-team-card-offset,
  .about-element-card-offset {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .about-elements-grid {
    grid-template-columns: 1fr;
  }

  .about-narrative-section,
  .about-team-section {
    padding: 96px 0;
  }

  .about-break-section {
    padding: 120px 24px;
  }
}

@media (max-width: 767px) {
  .about-heritage-hero {
    padding: 32px 0 0;
  }

  .about-heritage-intro,
  .about-narrative-text p,
  .about-team-head-text p,
  .about-final-cta-box p {
    font-size: 17px;
  }

  .about-elements-head h2,
  .about-final-cta-box h2 {
    font-size: 38px;
  }

  .about-element-content {
    padding: 0 20px 20px;
  }

  .about-final-cta-box {
    padding: 40px 24px;
  }
}
/* =========================
   Olive Oil Page
========================= */
.olive-page-main {
  overflow: hidden;
}

.page-template-page-olive-oil .olive-page-main{
    margin-top:-100px;
}
.page-template-page-cosmetic {
	margin-top:-100px;
}

/* Hero */
.olive-hero-section {
  position: relative;
  min-height: 100vh;
 
  display: flex;
  flex-direction: column;
  align-items: center;
  
  overflow: hidden;
}

.olive-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.olive-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.olive-hero-logo {
  display: flex;
  justify-content: center; /* centre horizontal */
  align-items: center;
  margin-bottom: 24px;
	margin-top:100px;
}

.olive-hero-logo img {
  max-width: 220px; /* ajuste selon ton design */
  width: 100%;
  height: auto;
  display: block;
}

/* H1 gardé pour SEO/accessibilité, mais non utilisé visuellement */
.olive-hero-seo-title {
  position: absolute;
  z-index: -1;
  opacity: 0.01;
  pointer-events: none;
  font-size: 1px;
  line-height: 1;
	color: transparent;
}

/* Titre visible */
.olive-hero-visual-title {
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}

.olive-hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: center;
  padding: 0 24px;
}

.olive-hero-kicker {
  margin: 0 0 16px;
  color: #000000;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
}



.olive-hero-text {
  margin: 0 auto;
  max-width: 760px;
  color: #000000;
  font-size: 22px;
  line-height: 1.8;
  font-style: italic;
}

.olive-hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: #CF9F28;
  z-index: 1;
  animation: oliveBounce 1.8s infinite;
}

.olive-hero-scroll .material-symbols-outlined {
  font-size: 42px;
}

@keyframes oliveBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
/* =========================
   Luxury Editorial Lists
========================= */

.olive-story-text ul,
.olive-lifestyle-text-col ul{
    
    list-style:none;
    margin:50px 0;
    padding:40px 0 40px 50px;

    position:relative;

    border-top:1px solid rgba(207,159,40,.35);
    border-bottom:1px solid rgba(207,159,40,.35);
}

/* Ligne verticale luxe */
.olive-story-text ul::before,
.olive-lifestyle-text-col ul::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:2px;

    background:linear-gradient(
        to bottom,
        transparent,
        #CF9F28,
        #e6c46b,
        #CF9F28,
        transparent
    );
}

/* Items */
.olive-story-text li,
.olive-lifestyle-text-col li{
    
    position:relative;
    
    padding:22px 0 22px 65px;
    
    font-size:20px;
    line-height:1.7;
    color:#7c5730;

    letter-spacing:.02em;

    border-bottom:1px solid rgba(207,159,40,.12);

    transition:all .45s ease;
}

.olive-story-text li:last-child,
.olive-lifestyle-text-col li:last-child{
    border-bottom:none;
}


/* Médaillon doré */
.olive-story-text li::before,
.olive-lifestyle-text-col li::before{
    content:"✦";

    position:absolute;
    left:18px;
    top:50%;

    transform:translateY(-50%);

    width:34px;
    height:34px;

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

    border-radius:50%;

    background:
      radial-gradient(circle at 30% 30%, #f6dc9a, #CF9F28);

    color:white;

    font-size:14px;

    box-shadow:
      0 6px 18px rgba(207,159,40,.25),
      inset 0 2px 3px rgba(255,255,255,.4);
}


/* Hover premium */
.olive-story-text li:hover,
.olive-lifestyle-text-col li:hover{
    padding-left:75px;
    color:#CF9F28;
}
/* Story */
.olive-story-section {
  padding: 128px 0;
}

.olive-story-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

.olive-story-image-wrap {
  position: relative;
}

.olive-story-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.olive-story-quote-box {
  position: absolute;
  right: 48px;
  bottom: -32px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  display: none;
}

.olive-story-quote-box p {
  margin: 0;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.4;
}

.olive-story-quote-box span {
  display: inline-block;
  margin-top: 16px;
  color: #000000;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.olive-story-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.olive-story-content h2 {
  margin: 0;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.15;
}

.olive-story-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.olive-story-text p {
  margin: 0;
  color: #7c5730;
  line-height: 1.85;
  font-size: 19px;
}

.olive-story-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.olive-story-link:hover {
  gap: 22px;
}

/* Products */
.olive-products-section {
  background: #f6f3ee;
  padding: 128px 0;
}

.olive-products-head {
  margin-bottom: 80px;
}

.olive-products-head h2 {
  margin: 0 0 16px;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 48px;
}

.olive-products-head p {
  margin: 0;
  color: #000000;
  font-size: 18px;
}

.olive-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}
.olive-products-grid .olive-product-card:nth-child(2),
.olive-products-grid .olive-product-card:nth-child(5) {
  margin-top: 0px;
}



.olive-product-image-box {
  position: relative;
  background: #fcf9f4;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.olive-product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.7s ease;
}

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

.olive-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.olive-product-badge-tertiary {
  background: rgba(124, 51, 14, 0.1);
  color: #CF9F28;
}

.olive-product-badge-primary {
  background: rgba(20, 85, 4, 0.1);
  color: #86be1b;
}

.olive-product-badge-secondary {
  background: rgba(124, 87, 48, 0.1);
  color: #7c5730;
}

.olive-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.olive-product-meta h3 {
  margin: 0 0 8px;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

.olive-product-meta p {
  margin: 0;
  color: #000000;
  font-size: 14px;
}

.olive-product-meta > span {
  color: #86be1b;
  font-weight: 500;
  white-space: nowrap;
}

/* Lifestyle */
.olive-lifestyle-section {
  padding: 128px 0;
}

.olive-lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.olive-lifestyle-text-col h2 {
  margin: 0 0 32px;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 48px;
  line-height: 1.2;
}

.olive-lifestyle-text-col > p {
  margin: 0 0 40px;
  color: #000000;
  line-height: 1.85;
  font-size: 18px;
}

.olive-lifestyle-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.olive-lifestyle-small-card {
  height: 160px;
  overflow: hidden;
  background: #f0ede8;
}

.olive-lifestyle-small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.olive-lifestyle-main-image-wrap {
  position: relative;
  background: #f0ede8;
  aspect-ratio: 1 / 1;
}

.olive-lifestyle-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.olive-lifestyle-badge {
  position: absolute;
  left: -16px;
  bottom: -16px;
  background: #7c330e;
  color: #ffffff;
  padding: 24px;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  max-width: 220px;
}
.olive-oil-faq-section {
  padding: 128px 0;
  background: #fcf9f4;
}

.olive-oil-faq-container {
  max-width: 980px;
}

.olive-oil-faq-heading {
  text-align: center;
  margin-bottom: 56px;
}

.olive-oil-faq-heading h2 {
  margin: 16px 0 20px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(38px, 5vw, 62px);
  color: #CF9F28;
  line-height: 1.12;
}

.olive-oil-faq-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #000000;
  line-height: 1.9;
  font-size: 18px;
}

.olive-oil-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.olive-oil-faq-item {
  border-top: 1px solid rgba(20, 85, 4, 0.12);
  border-bottom: 1px solid rgba(20, 85, 4, 0.12);
  background: #ffffff;
}

.olive-oil-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #CF9F28;
}

.olive-oil-faq-question span:first-child {
  max-width: calc(100% - 40px);
  line-height: 1.6;
  font-weight: 500;
}

.olive-oil-faq-icon {
  font-size: 28px;
  color: #CF9F28;
  flex-shrink: 0;
  margin-left: 16px;
}

.olive-oil-faq-answer {
  display: none;
  padding: 0 28px 26px;
}

.olive-oil-faq-answer p {
  margin: 0;
  color: #000000;
  line-height: 1.9;
  font-size: 16px;
}

.olive-oil-faq-item.active .olive-oil-faq-answer {
  display: block;
}


/* Newsletter */
.olive-newsletter-section {
  padding: 128px 0;
  background: #86be1b;
  color: #ffffff;
}

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

.olive-newsletter-inner .material-symbols-outlined {
  font-size: 56px;
  margin-bottom: 32px;
}

.olive-newsletter-inner h2 {
  margin: 0 0 24px;
  font-family: 'Noto Serif', serif;
  font-size: clamp(38px, 5vw, 62px);
}

.olive-newsletter-inner p {
  margin: 0 auto 40px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.olive-newsletter-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}

.olive-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 16px;
  font-size: 14px;
  outline: none;
}

.olive-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.olive-newsletter-form input:focus {
  box-shadow: 0 0 0 1px #ffffff;
}

.olive-newsletter-form button {
  background: #fcf9f4;
  color: #86be1b;
  border: none;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.olive-newsletter-form button:hover {
  background: #ffffff;
}

/* Responsive */
@media (min-width: 768px) {
  .olive-story-quote-box {
    display: block;
  }
}

@media (max-width: 1100px) {
  .olive-story-grid,
  .olive-lifestyle-grid,
  .olive-products-grid {
    grid-template-columns: 1fr;
  }

 .olive-products-grid .olive-product-card:nth-child(2),
.olive-products-grid .olive-product-card:nth-child(5) {
  margin-top: 96px;
}

@media (max-width: 1100px) {
  .olive-products-grid .olive-product-card:nth-child(2),
  .olive-products-grid .olive-product-card:nth-child(5) {
    margin-top: 0;
  }
}

  .olive-lifestyle-badge {
    left: 16px;
  }
}

@media (max-width: 991px) {
  .olive-story-section,
  .olive-products-section,
  .olive-lifestyle-section,
  .olive-newsletter-section {
    padding: 96px 0;
  }

  .olive-hero-text,
  .olive-story-text p,
  .olive-lifestyle-text-col > p,
  .olive-newsletter-inner p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .olive-hero-section {
    padding-top: 72px;
  }
	.olive-hero-logo{
		margin-top:0;
	}
	.olive-hero-logo img{
		max-width:120px;
	}

  .olive-products-head h2,
  .olive-lifestyle-text-col h2 {
    font-size: 38px;
  }

  .olive-product-image-box {
    padding: 32px;
  }

  .olive-product-meta {
    flex-direction: column;
  }

  .olive-lifestyle-small-grid {
    grid-template-columns: 1fr;
  }

  .olive-newsletter-form {
    flex-direction: column;
  }

  .olive-lifestyle-badge {
    position: static;
    max-width: 100%;
  }
}
/* Bouton détails produit */

.olive-product-button{
    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    background:#CF9F28;
    color:#000000;

    padding:12px 22px;

    font-size:12px;
    font-weight:600;

    text-transform:uppercase;
    letter-spacing:.16em;

    transition:all .35s ease;
}

.olive-product-button:hover{
    background:#CF9F28;
    gap:16px;
}

.olive-product-button .material-symbols-outlined{
    font-size:18px;
    transition:transform .3s ease;
}

.olive-product-button:hover .material-symbols-outlined{
    transform:translateX(4px);
}
.single-product-page {
  padding: 80px 0 120px;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.single-product-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.single-product-thumbs img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.single-product-line {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--product-primary-dark);
  margin-bottom: 12px;
}

.single-product-info h1 {
  font-family: 'Noto Serif', serif;
  font-size: 52px;
  color: #86be1b;
  margin: 0 0 16px;
}

.single-product-info h2 {
  font-size: 24px;
  color: var(--product-primary-dark);
  margin: 0 0 20px;
}

.single-product-short-description,
.single-product-extra p,
.single-product-reference {
  color: #41493c;
  line-height: 1.8;
}

.single-product-sizes {
  margin-top: 32px;
}

.single-product-sizes h3,
.single-product-characteristics h3,
.single-product-description h3 {
  font-family: 'Noto Serif', serif;
  color: #86be1b;
  margin-bottom: 20px;
}

.single-product-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.single-product-size-item {
  padding: 10px 18px;
  border: 1px solid rgba(20,85,4,.15);
  background: #f6f3ee;
}

.single-product-content-section {
  margin-top: 80px;
}

.single-product-content-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 64px;
}

.single-product-characteristics ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-product-characteristics li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,85,4,.08);
  color: #41493c;
}

@media (max-width: 991px) {
  .single-product-grid,
  .single-product-content-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Essential Plant Specs
========================= */
.plant-specs-section {
  padding: 80px 0;
  background: var(--product-soft-bg);
}

.plant-specs-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.plant-specs-head p {
  margin: 0 0 14px;
  color: var(--product-primary-dark);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.plant-specs-head h2 {
  margin: 0;
  color: var(--product-primary);
  font-family: 'Noto Serif', serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
}

.plant-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plant-spec-card {
  background: #fcf9f4;
  padding: 28px;
  border: 1px solid rgba(20, 85, 4, 0.08);
}

.plant-spec-card h3 {
  margin: 0 0 12px;
  color: var(--product-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.plant-spec-card p {
  margin: 0;
  color: #7c5730;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .plant-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .plant-specs-section {
    padding: 56px 0;
  }

  .plant-specs-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Product Detail Page - Static Maquette
========================= */
.product-detail-page {
 
  background: #fcf9f4;
  color: #1c1c19;
}

.product-hero-section {
	margin-top:50px;
  margin-bottom: 80px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}

.product-gallery-main-full {
  width: 100%;
  min-width: 0;
}

.product-gallery-main-full img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}
.product-info-panel {
  min-width: 0;
}

.product-subtitle {
  font-family: 'Noto Serif', serif;
  color: #7c330e;
  font-size: 28px;
  font-style: italic;
  margin: 0 0 24px;
}

.product-size-item {
  border: 1px solid rgba(20,85,4,.15);
  background: #f6f3ee;
  padding: 12px 18px;
  color: #CF9F28;
  cursor: pointer;
  transition: all .3s ease;
}

.product-size-item.active,
.product-size-item:hover {
  background: #CF9F28;
  color: #fff;
  border-color: #CF9F28;
}

@media (max-width: 767px) {
 .product-gallery-main-full img {
  height: 520px;
}
}

.product-info-panel {
  display: flex;
  flex-direction: column;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7c5730;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 32px;
}

.product-breadcrumb .material-symbols-outlined {
  font-size: 14px;
}

.product-breadcrumb span:last-child {
  color: #CF9F28;
  font-weight: 600;
}

.product-info-panel h1 {
  margin: 0 0 24px;
  font-family: 'Noto Serif', serif;
  color: var(--product-primary);
  
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-intro {
  max-width: 520px;
 
  color: #7c5730;
  font-size: 18px;
  line-height: 1.85;
}

.product-size-line {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
}

.product-size-line span {
  color: #717a6b;
  font-size: 15px;
  font-style: italic;
}

.product-actions {
  margin-bottom: 48px;
}

.product-main-btn {
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: var(--product-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.product-main-btn:hover {
  background: var(--product-primary);
}

.product-service-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #7c5730;
  font-size: 14px;
}

.product-service-note .material-symbols-outlined {
  font-size: 18px;
}

.product-attributes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
	margin-top:40px;
}

.product-attribute-card {
  background: #f6f3ee;
  padding: 24px;
}

.product-attribute-card h4 {
  margin: 0 0 8px;
  color: var(--product-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.product-attribute-card p {
  margin: 0;
  color: #7c5730;
  font-size: 14px;
  line-height: 1.6;
}

/* Lifestyle break */
.product-lifestyle-break {
  position: relative;
  width: 100%;
  height: 716px;
  margin-bottom: 128px;
  overflow: hidden;
}

.product-lifestyle-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 85, 4, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.product-lifestyle-overlay > div {
  max-width: 760px;
}

.product-lifestyle-overlay h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.2;
}

.product-lifestyle-overlay p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Detail blocks */
.product-details-blocks {
  margin-bottom: 80px;
	padding-top: 80px;
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.product-detail-column h3 {
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 85, 4, 0.1);
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 30px;
}

.product-detail-item {
  margin-bottom: 28px;
}

.product-detail-item h4,
.product-benefit-item h4 {
  margin: 0 0 8px;
  color: #CF9F28;
  font-size: 16px;
  font-weight: 600;
}

.product-detail-item p,
.product-benefit-item p,
.product-ritual-text {
  margin: 0;
  color: #7c5730;
  font-size: 14px;
  line-height: 1.8;
}

.product-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.product-benefit-item .material-symbols-outlined {
  color: #7c330e;
}

.product-taste-box {
  background: #ebe8e3;
  padding: 32px;
  margin-top: 28px;
}

.product-taste-box h4 {
  margin: 0 0 18px;
  color: #7c330e;
  font-family: 'Noto Serif', serif;
  font-style: italic;
}

.product-taste-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-taste-box li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7c5730;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 0;
}

.product-taste-box li span {
  text-transform: uppercase;
}

.product-taste-box li strong {
  text-align: center;
  font-weight: 500;
}

/* Related */
.product-related-section {
  background: #f6f3ee;
  padding: 128px 0;
}

.product-related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
}

.product-related-head h2 {
  margin: 0 0 16px;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 44px;
}

.product-related-head p {
  margin: 0;
  color: #7c5730;
}

.product-related-head a {
  color: #7c330e;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 51, 14, 0.25);
  padding-bottom: 4px;
  font-weight: 500;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.product-related-card {
  cursor: pointer;
}

.product-related-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
}

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

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

.product-related-card p {
  margin: 0 0 8px;
  color: #7c5730;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-related-card h4 {
  margin: 0;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

/* Responsive */
@media (max-width: 1100px) {
  .product-hero-grid,
  .product-details-grid,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

 .product-gallery-main-full img {
  height: 420px;
}

  .product-related-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
 

  .product-hero-section,
  .product-lifestyle-break {
    margin-bottom: 50px;
  }

  .product-gallery-main img {
    height: 420px;
  }

  .product-gallery-small img {
    height: 220px;
  }

  .product-gallery-small-right {
    margin-top: 16px;
  }

  .product-attributes-grid {
    grid-template-columns: 1fr;
  }

  .product-lifestyle-break {
    height: 520px;
  }

  .product-details-blocks {
	  padding-top:40px;
    margin-bottom: 40px;
  }

  .product-related-section {
    padding: 96px 0;
  }
}
/* =========================
   Product FAQ
========================= */
.product-faq-section {
  padding: 50px 0;
  background: #fcf9f4;
  border-top: 1px solid rgba(20, 85, 4, 0.08);
}

.product-faq-inner {
  max-width: 920px;
}

.product-faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.product-faq-head p {
  margin: 0 0 14px;
  color: #7c330e;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-faq-head h2 {
  margin: 0;
  font-family: 'Noto Serif', serif;
  color: var(--product-primary);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}

.product-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-faq-item {
  background: #f6f3ee;
  border: 1px solid rgba(20, 85, 4, 0.08);
}

.product-faq-question {
  width: 100%;
  padding: 26px 30px;
  border: none;
  background: transparent;
  color: var(--product-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.product-faq-question strong {
  color: #7c330e;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.product-faq-answer {
  display: none;
  padding: 0 30px 28px;
}

.product-faq-answer p {
  margin: 0;
  color: #7c5730;
  line-height: 1.85;
  font-size: 15px;
}

.product-faq-item.active .product-faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .product-faq-section {
    padding: 20px 0;
  }

  .product-faq-question {
    padding: 22px 20px;
    font-size: 16px;
  }

  .product-faq-answer {
    padding: 0 20px 22px;
  }
}
/* =========================
   Product Sizes
========================= */

.product-sizes-block {
  margin: 32px 0 48px;
}

.product-sizes-block h3 {
  font-family: 'Noto Serif', serif;
  color: #CF9F28;
  font-size: 18px;
  margin-bottom: 20px;
}

.product-sizes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-size-item {
  padding: 12px 18px;
  border: 1px solid rgba(20,85,4,.15);
  background: #f6f3ee;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #CF9F28;
}

.product-size-item:hover {
  border-color: #CF9F28;
  background: #ece7df;
}

.product-size-item.active {
  background: #CF9F28;
  color: #ffffff;
  border-color: #CF9F28;
}

.product-size-dimensions {
  margin-top: 20px;
}

.product-size-dimensions p {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #7c5730;
  margin: 0 0 6px;
}

.product-size-dimensions strong {
  font-size: 14px;
  color: #CF9F28;
}
/* =========================
   Product Sizes Table
========================= */
.product-sizes-block {
  margin: 32px 0 48px;
}

.product-sizes-block h3 {
  font-family: 'Noto Serif', serif;
  color: #CF9F28;
  font-size: 22px;
  margin: 0 0 20px;
}

.product-sizes-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(20, 85, 4, 0.12);
}

.product-size-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20, 85, 4, 0.12);
  align-items: center;
}

.product-size-label {
  color: #CF9F28;
  font-weight: 600;
  font-size: 15px;
}

.product-size-dim {
  color: #7c5730;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .product-size-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
/* =========================
   Infused Collection Section
========================= */
.product-infused-section {
  padding: 80px 0;
  background: #f6f3ee;
}

.product-infused-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.product-infused-head p {
  margin: 0 0 14px;
  color: #7c330e;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-infused-head h2 {
  margin: 0;
  font-family: 'Noto Serif', serif;
  color: #CF9F28;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
}

.product-infused-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-infused-card {
  background: #fcf9f4;
  padding: 32px;
  border: 1px solid rgba(20, 85, 4, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.product-infused-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 85, 4, 0.25);
}

.product-infused-card h3 {
  margin: 0 0 14px;
  font-family: 'Noto Serif', serif;
  color: #CF9F28;
  font-size: 26px;
}

.product-infused-card p {
  margin: 0;
  color: #7c5730;
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 991px) {
  .product-infused-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .product-infused-section {
    padding: 88px 0;
  }

  .product-infused-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Artisan Series / MOHRA
========================= */
.product-artisan-section {
  padding: 40px 0;
  background: #fcf9f4;
  border-top: 1px solid rgba(20, 85, 4, 0.08);
}

.product-artisan-intro,
.product-artisan-experience-head {
  max-width: 820px;
  margin-bottom: 56px;
}

.product-artisan-intro > p,
.product-artisan-split-head > p,
.product-artisan-experience-head > p {
  margin: 0 0 14px;
  color: #7c330e;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-artisan-intro h2,
.product-artisan-split-head h2,
.product-artisan-experience-head h2 {
  margin: 0 0 16px;
  font-family: 'Noto Serif', serif;
  color: #CF9F28;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
}

.product-artisan-intro h3,
.product-artisan-split-head h3,
.product-artisan-experience-head h3 {
  margin: 0;
  color: #7c5730;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
}

.product-artisan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-artisan-card {
  background: #f6f3ee;
  padding: 34px;
  border: 1px solid rgba(20, 85, 4, 0.08);
}

.product-artisan-card h4 {
  margin: 0 0 14px;
  color: #CF9F28;
  font-family: 'Noto Serif', serif;
  font-size: 26px;
  line-height: 1.25;
}

.product-artisan-card p {
  margin: 0;
  color: #7c5730;
  font-size: 14px;
  line-height: 1.85;
}

.product-artisan-split {
  margin-top: 110px;
  padding: 72px;
  background: #CF9F28;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.product-artisan-split-head h2,
.product-artisan-split-head h3,
.product-artisan-split-head > p {
  color: #ffffff;
}

.product-artisan-split-head h3 {
  opacity: 0.82;
}

.product-artisan-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-artisan-list-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.product-artisan-list-item span {
  color: rgba(255,255,255,0.55);
  font-family: 'Noto Serif', serif;
  font-size: 26px;
}

.product-artisan-list-item h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  font-size: 26px;
}

.product-artisan-list-item p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  font-size: 14px;
}

.product-artisan-experience {
  margin-top: 110px;
}

.product-artisan-grid-light .product-artisan-card {
  background: #ebe8e3;
}

@media (max-width: 1100px) {
  .product-artisan-grid,
  .product-artisan-split {
    grid-template-columns: 1fr;
  }

  .product-artisan-split {
    padding: 48px;
  }
}

@media (max-width: 640px) {
  .product-artisan-section {
    padding: 50px 0;
  }

  .product-artisan-split {
    padding: 32px 24px;
    margin-top: 72px;
  }

  .product-artisan-experience {
    margin-top: 72px;
  }

  .product-artisan-card {
    padding: 28px 24px;
  }
}
/* =========================
   Export & Shipping Page
========================= */
.export-shipping-page {
  background: #fcf9f4;
  color: #1c1c19;
}

.export-hero-section {
  padding: 100px 0 100px;
}

.export-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.export-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #7c330e;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.export-hero-content h1,
.export-section-head h2,
.export-text-box h2 {
  margin: 0 0 28px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.1;
}

.export-hero-content p {
  max-width: 620px;
  margin: 0 0 36px;
  color: #7c5730;
  font-size: 20px;
  line-height: 1.8;
}

.export-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #86be1b;
  color: #ffffff;
  padding: 16px 34px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.35s ease;
}

.export-main-btn:hover {
  background: #2f6e1e;
}

.export-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Services */
.export-services-section {
  padding: 110px 0;
  background: #f6f3ee;
}

.export-section-head {
  max-width: 780px;
  margin-bottom: 64px;
}

.export-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.export-service-card {
  background: #fcf9f4;
  padding: 32px 24px;
  border: 1px solid rgba(20, 85, 4, 0.08);
}

.export-service-card .material-symbols-outlined {
  color: #86be1b;
  font-size: 38px;
  margin-bottom: 20px;
}

.export-service-card h3 {
  margin: 0 0 14px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

.export-service-card p {
  margin: 0;
  color: #7c5730;
  line-height: 1.75;
  font-size: 14px;
}

/* Text */
.export-text-section {
  padding: 110px 0 130px;
}

.export-text-box {
  max-width: 920px;
}

.export-text-box p {
  margin: 0 0 24px;
  color: #7c5730;
  font-size: 19px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 1200px) {
  .export-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .export-hero-grid {
    grid-template-columns: 1fr;
  }

  .export-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .export-hero-section,
  .export-services-section,
  .export-text-section {
    padding: 50px 0;
  }
}

@media (max-width: 640px) {
  .export-services-grid {
    grid-template-columns: 1fr;
  }

  .export-hero-content p,
  .export-text-box p {
    font-size: 17px;
  }
}
/* =========================
   Cosmetic Page
========================= */
.cosmetic-page-main {
  background: #fcf9f4;
  color: #1c1c19;
  overflow: hidden;
}

/* Hero */
.cosmetic-hero-section {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 100px;
}

.cosmetic-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cosmetic-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cosmetic-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fcf9f4 0%,
    rgba(252, 249, 244, 0.72) 42%,
    rgba(252, 249, 244, 0.08) 100%
  );
}

.cosmetic-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
	margin-top:150px;
	margin-left:100px;
}

.cosmetic-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: #7c330e;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cosmetic-hero-content h1 {
  margin: 0 0 32px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cosmetic-hero-content p {
  max-width: 560px;
  margin: 0 0 40px;
  color: white;
  font-size: 18px;
  line-height: 1.8;
}

.cosmetic-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cosmetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.35s ease;
}

.cosmetic-btn-primary {
  background: #86be1b;
  color: #ffffff;
}

.cosmetic-btn-primary:hover {
  background: #2f6e1e;
}

.cosmetic-btn-secondary {
  background: #ebe8e3;
  color: #86be1b;
}

.cosmetic-btn-secondary:hover {
  background: #e5e2dd;
}

/* Bento */
.cosmetic-bento-section {
  padding: 128px 0;
}

.cosmetic-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cosmetic-bento-feature {
 
  background: #f6f3ee;
  padding: 4px;
  overflow: hidden;
}

.cosmetic-bento-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.cosmetic-bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.cosmetic-bento-feature:hover img {
  transform: scale(1.05);
}

.cosmetic-bento-image span {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  color: #7c330e;
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cosmetic-bento-text {
 grid-column: span 2;
  display: flex;
  flex-direction: column;
 
}

.cosmetic-bento-text h2 {
  margin: 0 0 24px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 44px;
  font-style: italic;
}

.cosmetic-bento-text p {
  margin: 0 0 32px;
  color: #7c5730;
  line-height: 1.8;
}

.cosmetic-bento-text a {
  color: #7c330e;
  text-decoration: none;
  border-bottom: 1px solid #7c330e;
  width: fit-content;
  padding-bottom: 4px;
}
.cosmetic-products-head {
  margin-bottom: 80px;
}

.cosmetic-products-head h2 {
  margin: 0 0 16px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 48px;
}

.cosmetic-products-head p {
  margin: 0;
  color: #000000;
  font-size: 18px;
}

.cosmetic-product-card {
 
  background: #f0ede8;
  padding: 24px;
}

.cosmetic-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 24px;
  filter: grayscale(0.2);
}

.cosmetic-product-card h3 {
  margin: 0 0 8px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

.cosmetic-product-card p {
  margin: 0 0 18px;
  color: #7c5730;
  line-height: 1.7;
  font-size: 14px;
}

.cosmetic-product-link {
  color: #86be1b;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Narrative */
.cosmetic-narrative-section {
  padding: 128px 0;
  background: #f6f3ee;
}

.cosmetic-narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cosmetic-narrative-image {
  position: relative;
}

.cosmetic-narrative-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cosmetic-quote-box {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: #fcf9f4;
  max-width: 320px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.cosmetic-quote-box p {
  margin: 0;
  color: #7c5730;
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
}

.cosmetic-narrative-content h2 {
  margin: 0 0 48px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.15;
}

.cosmetic-values-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cosmetic-value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.cosmetic-value-item .material-symbols-outlined {
  color: #7c330e;
  font-size: 34px;
}

.cosmetic-value-item h3 {
  margin: 0 0 10px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
}

.cosmetic-value-item p {
  margin: 0;
  color: #7c5730;
  line-height: 1.8;
}

/* Essentials */
.cosmetic-essentials-section {
  padding: 128px 0;
}

.cosmetic-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
}

.cosmetic-section-head h2 {
  margin: 0;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 48px;
}

.cosmetic-section-head > a {
  color: #7c5730;
  text-decoration: none;
  border-bottom: 1px solid rgba(124,87,48,0.3);
  padding-bottom: 4px;
}

.cosmetic-essentials-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
}

.cosmetic-essential-card {
  cursor: pointer;
	  flex: 0 0 280px;
}

.cosmetic-essential-image {
  background: #f0ede8;
  overflow: hidden;
  margin-bottom: 24px;
}

.cosmetic-essential-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cosmetic-essential-card:hover img {
  transform: scale(1.05);
}

.cosmetic-essential-card h3 {
  margin: 0 0 8px;
  color: #86be1b;
  font-family: 'Noto Serif', serif;
  font-size: 22px;
}

.cosmetic-essential-card p {
  margin: 0;
  color: #7c5730;
  line-height: 1.6;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
	
	.cosmetic-hero-content{
		margin-top:10px;
		margin-left: 20px;
	}
	.cosmetic-bento-grid{
		grid-template-columns: repeat(1, 1fr);
	}
  .cosmetic-bento-feature,
  .cosmetic-bento-text,
   {
    grid-column: span 12;
  }

  .cosmetic-narrative-grid,
  .cosmetic-essentials-grid {
    grid-template-columns: 1fr;
  }

  .cosmetic-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .cosmetic-hero-section {
    min-height: 720px;
    padding-top: 120px;
  }

  .cosmetic-bento-section,
  .cosmetic-narrative-section,
  .cosmetic-essentials-section {
    padding: 88px 0;
  }

  .cosmetic-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cosmetic-quote-box {
    position: static;
    margin-top: 24px;
  }

  .cosmetic-section-head h2 {
    font-size: 38px;
  }
}