/* =============================================
   moroccancosmetic.com — Clean Static Site CSS
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --c-primary:       #2d5a27;
  --c-primary-lt:    #4a8740;
  --c-primary-dk:    #1e3d1b;
  --c-accent:        #c8a97e;
  --c-accent-dk:     #9b7a4c;
  --c-text:          #1a1a1a;
  --c-text-muted:    #6b7280;
  --c-bg:            #fafaf8;
  --c-bg-alt:        #f4f0eb;
  --c-bg-dark:       #1a2e1a;
  --c-white:         #ffffff;
  --c-border:        #e5e7eb;
  --c-overlay:       rgba(26,46,26,.62);

  --ff-head:   'Chivo', sans-serif;
  --ff-body:   'DM Sans', sans-serif;

  --fw-reg:    400;
  --fw-med:    500;
  --fw-bold:   700;

  --max-w:     1200px;
  --nav-h:     80px;

  --rad:       8px;
  --rad-lg:    16px;
  --rad-pill:  999px;

  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);

  --ease:      0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--c-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT HELPERS ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }
.section--lg { padding-block: 7rem; }
.section--dark { background: var(--c-bg-dark); color: var(--c-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--c-white); }
.section--alt { background: var(--c-bg-alt); }

.text-center { text-align: center; }
.text-muted { color: var(--c-text-muted); }

/* ===== EYEBROW / LABEL ===== */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent-dk);
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--c-accent); }

/* ===== SECTION TITLE ===== */
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head p { color: var(--c-text-muted); max-width: 600px; }
.section-head.center p { margin-inline: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--rad-pill);
  font-weight: var(--fw-bold);
  font-size: .95rem;
  transition: var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border: 2px solid var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-lt);
  border-color: var(--c-primary-lt);
}
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  border: 2px solid var(--c-accent);
}
.btn-accent:hover { background: var(--c-accent-dk); border-color: var(--c-accent-dk); }
.btn-light {
  background: var(--c-white);
  color: var(--c-primary);
  border: 2px solid var(--c-white);
}
.btn-light:hover { background: var(--c-bg-alt); }
.btn svg, .btn i { font-size: 1rem; }

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: var(--c-white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.site-header.dark-header {
  background: var(--c-bg-dark);
}
/* Dark-header pages always stay dark — override the generic scrolled white background */
.site-header.dark-header.scrolled {
  background: var(--c-bg-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  gap: 1rem;
}

/* Logo */
.site-logo img { height: 50px; width: auto; }
.logo-dark { display: none; }
.logo-light { display: block; }
.site-header.scrolled .logo-dark { display: block; }
.site-header.scrolled .logo-light { display: none; }
.dark-header .logo-dark { display: block; }
.dark-header .logo-light { display: none; }
/* Inner pages only carry logo-dark — always invert it white on dark-header */
.site-header.dark-header .logo-dark { filter: brightness(0) invert(1); }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 0; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: var(--fw-med);
  color: var(--c-white);
  transition: color var(--ease);
  white-space: nowrap;
}
.site-header.scrolled .primary-nav > li > a { color: var(--c-text); }
.primary-nav > li > a:hover,
.primary-nav > li.active > a { color: var(--c-accent); }
.site-header.scrolled .primary-nav > li > a:hover { color: var(--c-primary); }
/* Dark-header nav: always white with accent hover — high specificity to guarantee it */
.site-header.dark-header .primary-nav > li > a { color: var(--c-white); }
.site-header.dark-header .primary-nav > li > a:hover { color: var(--c-accent); }
.site-header.dark-header .primary-nav > li.active > a { color: var(--c-accent); }
.site-header.dark-header .nav-toggle span { background: var(--c-white); }

/* Dropdown indicator */
.primary-nav .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--ease);
}
.primary-nav .has-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 230px;
  background: var(--c-white);
  border-radius: var(--rad);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 100;
  overflow: hidden;
}
.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  color: var(--c-text);
  transition: background var(--ease), color var(--ease);
  border-bottom: 1px solid var(--c-border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--c-bg-alt);
  color: var(--c-primary);
  padding-left: 1.5rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--rad-pill);
  font-size: .8rem;
  font-weight: var(--fw-med);
  color: var(--c-white);
  transition: var(--ease);
}
.site-header.scrolled .lang-switcher {
  border-color: var(--c-border);
  color: var(--c-text);
}
.site-header.dark-header .lang-switcher {
  border-color: rgba(255,255,255,.3);
  color: var(--c-white);
}
.lang-switcher img { width: 18px; height: 12px; border-radius: 2px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--c-text); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-bg-dark);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding-top: 4rem; }
.mobile-nav .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--c-white);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav ul > li > a {
  display: block;
  padding: .9rem 0;
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--c-white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav .sub-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav .sub-list { display: none; padding-left: 1rem; }
.mobile-nav .sub-list.open { display: block; }
.mobile-nav .sub-list a {
  display: block;
  padding: .6rem 0;
  font-size: 1rem;
  font-weight: var(--fw-reg);
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav .lang-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav .lang-row a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.mobile-nav .lang-row img { width: 18px; }
@media (max-width: 1280px) {
  .header-inner {
    padding-inline: 1rem;
    gap: .75rem;
  }

  .site-logo img {
    height: 46px;
  }

  .primary-nav > li > a {
    padding: .45rem .72rem;
    font-size: .84rem;
  }
}
@media (max-width: 900px) {
  .primary-nav, .lang-switcher { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--c-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-overlay);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--c-white);
  margin-bottom: .25rem;
  margin: 41px 0 7px 1px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badges span {
  font-size: .85rem;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.hero-badges .dot { color: var(--c-accent); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== PREMIUM HOMEPAGE HERO ===== */
.hero-premium {
  min-height: 84svh;
  background-position: center;
}
.hero-premium::before {
  background:
    linear-gradient(90deg, rgba(9,31,18,.88) 0%, rgba(20,57,31,.72) 42%, rgba(9,31,18,.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.42));
}
.hero-premium .hero-content {
  max-width: 680px;
  padding-top: 1.5rem;
}
.hero-premium .hero-eyebrow {
  padding: .38rem .72rem;
  border: 1px solid rgba(200,169,126,.42);
  border-radius: var(--rad-pill);
  background: rgba(255,255,255,.08);
  color: #f3d49d;
  backdrop-filter: blur(10px);
}
.hero-premium h1 {
  max-width: 700px;
  font-size: clamp(2.375rem, 4.7vw, 5.25rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.hero-premium .hero-sub {
  max-width: 590px;
  font-size: clamp(.98rem, 1.45vw, 1.12rem);
  font-weight: 400;
  color: rgba(255,255,255,.82);
}
.hero-trust-badges {
  gap: .5rem;
  margin-bottom: 1.55rem;
}
.hero-trust-badges span {
  padding: .42rem .66rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--rad-pill);
  background: rgba(255,255,255,.1);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(8px);
}
.hero-premium .btn {
  min-width: 150px;
  padding: .68rem 1.45rem;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.hero-premium .btn-primary {
  background: #d3aa6f;
  border-color: #d3aa6f;
  color: #142719;
}
.hero-premium .btn-primary:hover {
  background: #e7c48f;
  border-color: #e7c48f;
}
.hero-premium .btn-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.hero-premium .btn-light:hover {
  background: #fff;
  color: var(--c-primary-dk);
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--c-bg-dark);
  color: var(--c-white);
}
.page-hero h1 { color: var(--c-white); margin-bottom: .75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { opacity: .4; }

/* ===== INTRO / SPLIT SECTION ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-grid.reverse { direction: rtl; }
.intro-grid.reverse > * { direction: ltr; }
.intro-img { border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-text .eyebrow { display: block; }
.counter-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-primary);
  color: var(--c-white);
  padding: .5rem 1.25rem;
  border-radius: var(--rad-pill);
  font-size: .85rem;
  font-weight: var(--fw-bold);
  margin-top: 1.5rem;
}

/* ===== FEATURE BOXES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--c-white);
  border-radius: var(--rad-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform var(--ease), box-shadow var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 1.3rem;
}
.feature-icon.accent { background: var(--c-accent); }
.feature-card h4 { margin-bottom: .4rem; }
.feature-card p { font-size: .9rem; color: var(--c-text-muted); margin-bottom: 0; }

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--c-white);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-bg-alt);
  height: auto;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem; }
.product-card-cat {
  font-size: .75rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .4rem;
}
.product-card h3 {
  font-size: 1rem;
  margin-bottom: .75rem;
  line-height: 1.35;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  transition: gap var(--ease);
}
.product-card-link:hover { gap: .6rem; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail { padding-top: calc(var(--nav-h) + 2rem); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
.product-detail-img { border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-detail-img img { width: 100%; object-fit: cover; }
.product-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}
.product-meta-item {
  background: var(--c-bg-alt);
  border-radius: var(--rad);
  padding: .9rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.product-meta-item .icon { color: var(--c-primary); font-size: 1.1rem; }
.product-meta-item strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--c-text-muted); display: block; }
.product-meta-item span { font-size: .9rem; font-weight: var(--fw-bold); }
.product-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.info-card {
  background: var(--c-bg-alt);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
}
.info-card-num {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: .5rem;
}
.info-card h4 { font-size: .9rem; margin-bottom: .6rem; }
.info-card p { font-size: .875rem; color: var(--c-text-muted); }

/* ===== PRIVATE LABEL SECTION ===== */
.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pl-img { border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.pl-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}
.pl-service-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--c-bg-alt);
  border-radius: var(--rad);
  padding: .75rem;
  font-size: .9rem;
  font-weight: var(--fw-med);
}
.pl-service-item .icon { color: var(--c-primary); font-size: 1.1rem; flex-shrink: 0; }

/* ===== IMAGE CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding-block: .35rem;
  --carousel-card-w: clamp(250px, 19vw, 330px);
  --carousel-card-h: clamp(178px, 14vw, 230px);
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  padding-inline: max(1rem, calc((100vw - var(--max-w)) / 2));
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.carousel-track img {
  height: var(--carousel-card-h);
  width: var(--carousel-card-w);
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--c-white);
  border: 1px solid rgba(29, 55, 34, .08);
  box-shadow: 0 14px 30px rgba(20, 34, 24, .08);
  user-select: none;
  -webkit-user-drag: none;
  padding: .65rem;
}
@media (max-width: 768px) {
  .carousel-wrap {
    --carousel-card-w: 76vw;
    --carousel-card-h: 54vw;
  }
  .carousel-track { gap: .85rem; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { scroll-behavior: auto; }
}

/* ===== PROCESS / HOW TO ORDER ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  font-family: var(--ff-head);
  margin-bottom: .75rem;
  line-height: 1;
}
.process-step h4 { margin-bottom: .5rem; }
.process-step p { font-size: .875rem; color: var(--c-text-muted); }

/* ===== FAQ ACCORDION ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.accordion-item {
  border: 1px solid var(--c-border);
  border-radius: var(--rad);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .95rem;
  font-weight: var(--fw-bold);
  text-align: left;
  background: var(--c-white);
  color: var(--c-text);
  cursor: pointer;
  transition: background var(--ease);
}
.accordion-btn:hover { background: var(--c-bg-alt); }
.accordion-btn.active { background: var(--c-primary); color: var(--c-white); }
.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: transform var(--ease);
}
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 1.1rem 1.25rem;
  font-size: .9rem;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--c-white);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-size: .75rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .5rem;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-card-meta {
  font-size: .8rem;
  color: var(--c-text-muted);
}

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: .35rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-primary);
  border: 2px solid var(--c-white);
  box-shadow: 0 0 0 2px var(--c-primary);
}
.timeline-year {
  font-size: .8rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .3rem;
}
.timeline-item h4 { margin-bottom: .25rem; }
.timeline-item p { font-size: .9rem; color: var(--c-text-muted); margin-bottom: 0; }

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--c-bg-alt);
  border-radius: var(--rad-lg);
  padding: 2rem;
  text-align: center;
}
.value-card .icon {
  font-size: 2rem;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: var(--c-text-muted); margin-bottom: 0; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text-muted); margin-bottom: .25rem; }
.contact-info-text a:hover { color: var(--c-primary); }

.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: .85rem;
  font-weight: var(--fw-bold);
  margin-bottom: .4rem;
  color: var(--c-text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--rad);
  background: var(--c-white);
  font-size: .95rem;
  transition: border-color var(--ease);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--c-primary); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.rating-bar {
  background: var(--c-bg-alt);
  border-radius: var(--rad);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.rating-num {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; }
.rating-bar .count { font-size: .8rem; color: var(--c-text-muted); }

/* ===== SHIPPING / POLICY PAGES ===== */
.policy-content { max-width: 800px; }
.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--c-primary);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content ul li { margin-bottom: .4rem; }
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.policy-content th,
.policy-content td {
  text-align: left;
  padding: .75rem 1rem;
  border: 1px solid var(--c-border);
}
.policy-content th { background: var(--c-bg-alt); font-weight: var(--fw-bold); }
.policy-content tr:hover td { background: var(--c-bg-alt); }
.info-box {
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--rad) var(--rad) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.info-box p { margin-bottom: 0; font-size: .9rem; }

/* ===== BENEFITS PAGE ===== */
.benefits-collection { padding-top: 4rem; }
.benefits-collection .section-head { max-width: 760px; margin-inline: auto; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.benefit-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(18, 61, 49, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(18, 61, 49, 0.16);
}
.benefit-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f3ef;
  flex-shrink: 0;
}
.benefit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.benefit-card:hover .benefit-card-img img { transform: scale(1.05); }
.benefit-card-body {
  padding: 1.5rem 1.5rem 1.25rem;
  flex: 1;
}
.benefit-card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .6rem;
  text-transform: none;
  color: #111;
}
.benefit-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0;
}
.benefit-chip-panel {
  background: #eef5eb;
  padding: 1rem 1.5rem 1.1rem;
  margin-top: auto;
}
.benefit-chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
}
.benefit-chip-list li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #4b6358;
  font-size: .875rem;
}
.benefit-chip-list i { color: #123d31; font-size: .875rem; }
.section-head .eyebrow.eyebrow-icon { display: inline-flex; align-items: center; gap: .5rem; }
.section-head .eyebrow.eyebrow-icon i { font-size: .95rem; }
@media (max-width: 767px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .benefit-card h3 { font-size: 1.25rem; }
  .benefit-card-body { padding: 1.25rem 1.25rem 1rem; }
  .benefit-chip-panel { padding: .875rem 1.25rem; }
}

/* ===== BENEFIT DETAIL — ARTICLE LAYOUT ===== */
.article-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.article-hero-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.article-hero-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-primary);
  margin-bottom: .45rem;
}
.article-subtitle {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--c-text);
}
.article-intro {
  font-size: 1.075rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 1.75rem;
}
.article-facts {
  background: #f0f7ee;
  border-left: 4px solid var(--c-primary);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.75rem;
  margin-bottom: 2.5rem;
}
.article-facts-label {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-primary);
  margin-bottom: .65rem;
}
.article-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.article-facts li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: #374151;
  line-height: 1.55;
}
.article-facts li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
  margin-top: .42em;
}
.article-section-heading {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--c-border);
  margin: 2.75rem 0 1.25rem;
  color: var(--c-text);
}
.article-benefit-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.article-benefit-item:last-child { border-bottom: none; padding-bottom: .25rem; }
.article-benefit-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: .35rem;
  text-transform: none;
}
.article-benefit-item p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin: 0;
}
.article-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.article-how-item {
  background: var(--c-bg-alt);
  border-radius: 10px;
  padding: 1.2rem;
}
.article-how-item h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: .4rem;
  text-transform: none;
}
.article-how-item p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--c-text-muted);
  margin: 0;
}
.article-product-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}
[dir="rtl"] .article-facts {
  border-left: none;
  border-right: 4px solid var(--c-primary);
  border-radius: 8px 0 0 8px;
}
[dir="rtl"] .article-facts li::before { margin-top: .42em; }
@media (max-width: 767px) {
  .article-hero-img { border-radius: 8px; }
  .article-wrap { padding: 0; }
  .article-how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .article-how-grid { grid-template-columns: 1fr; }
}

/* ===== STATS / COUNTER ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-num {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  font-family: var(--ff-head);
  line-height: 1;
  display: block;
  margin-bottom: .25rem;
}
.stat-label { font-size: .85rem; color: var(--c-text-muted); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--c-primary);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-items {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: var(--fw-bold);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--c-primary);
  color: var(--c-white);
  padding-block: 5rem;
  text-align: center;
}
.cta-section h2 { color: var(--c-white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 48px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-contact-row {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--ease);
}
.footer-contact-row a:hover { color: var(--c-accent); }
.footer-col h5 {
  font-size: .8rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--c-accent); padding-left: 4px; }
.footer-bottom {
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--c-accent); }
.footer-langs { display: flex; gap: 1rem; align-items: center; }
.footer-langs a {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.footer-langs a:hover { color: rgba(255,255,255,.8); }
.footer-langs img { width: 16px; border-radius: 2px; }

/* ===== PREMIUM FOOTER ===== */
.premium-footer {
  background:
    radial-gradient(circle at top left, rgba(200,169,126,.14), transparent 34rem),
    linear-gradient(180deg, #172918 0%, #0e1e12 100%);
}
.premium-footer .footer-grid {
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 2rem;
}
.premium-footer .footer-brand p {
  max-width: 430px;
  color: rgba(255,255,255,.72);
}
.footer-trust-badges,
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-trust-badges {
  margin-top: 1.25rem;
}
.footer-trust-badges span,
.footer-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .62rem;
  border: 1px solid rgba(200,169,126,.28);
  border-radius: var(--rad-pill);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  font-weight: var(--fw-bold);
}
.footer-badge-panel {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-badge-panel h5 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.footer-badge-panel p {
  margin-top: .75rem;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
.footer-contact li {
  color: rgba(255,255,255,.62);
  font-size: .875rem;
  margin-bottom: .7rem;
}
.footer-bottom-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-bottom-links a {
  white-space: nowrap;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== UTILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .intro-grid, .pl-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .premium-footer .footer-grid,
  .footer-badge-panel { grid-template-columns: 1fr 1fr; }
  .hero-premium h1 {
    font-size: clamp(3.375rem, 6.2vw, 4rem);
    line-height: 1.01;
  }
  .hero-premium .hero-content {
    max-width: 640px;
  }
  .product-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding-block: 3.5rem; }
  .section--lg { padding-block: 4.5rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .pl-services { grid-template-columns: 1fr; }
  .product-meta-grid { grid-template-columns: 1fr; }
  .product-info-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-premium {
    min-height: 78svh;
    text-align: center;
    background-position: center;
  }
  .hero-premium::before {
    background: linear-gradient(180deg, rgba(9,31,18,.78), rgba(9,31,18,.72));
  }
  .hero-premium .hero-content {
    margin-inline: auto;
    padding-top: 1rem;
    max-width: 560px;
  }
  .hero-premium h1 {
    font-size: clamp(2.375rem, 9vw, 3rem);
    line-height: 1.02;
  }
  .hero-premium .hero-sub {
    font-size: .98rem;
  }
  .hero-trust-badges {
    gap: .4rem;
    margin-bottom: 1.25rem;
  }
  .hero-trust-badges span {
    padding: .36rem .56rem;
    font-size: .78rem;
  }
  .hero-premium .hero-badges,
  .hero-premium .hero-actions {
    justify-content: center;
    align-items: stretch;
  }
  .hero-premium .hero-actions .btn {
    width: 100%;
  }
  .premium-footer .footer-grid,
  .footer-badge-panel { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding-inline: 1rem; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .about-values { grid-template-columns: 1fr; }
}

/* ===== BREADCRUMB spacer for fixed header ===== */
.main-content { padding-top: var(--nav-h); }

/* ===== PRODUCT GRID 4-COL ===== */
.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ===== EQUAL-HEIGHT PRODUCT CARDS ===== */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card-img { display: block; }
.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 a { color: inherit; }
.product-card h3 a:hover { color: var(--c-primary); }
.product-card-actions {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.btn-sm {
  padding: .5rem 1.1rem;
  font-size: .82rem;
}

/* ===== PRODUCT DETAIL — NEW SECTIONS ===== */

/* Section 1: Hero split */
.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-block: 3rem 4rem;
}
.pd-hero-img {
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.pd-hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.pd-hero-content { padding-top: .5rem; }
.pd-hero-content h2 { margin-bottom: 1rem; }
.pd-intro {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.pd-benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}
.pd-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  font-size: .95rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--c-border);
}
.pd-benefits-list li:last-child { border-bottom: none; }
.pd-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.pd-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Section 2: Benefits grid */
.pd-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pd-ben-card {
  background: var(--c-white);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pd-ben-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pd-ben-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.pd-ben-card h4 { font-size: 1rem; margin-bottom: .4rem; }
.pd-ben-card p { font-size: .875rem; color: var(--c-text-muted); margin-bottom: 0; }

/* Section 3: Specs */
.pd-specs-list { max-width: 680px; }
.pd-spec-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  margin-bottom: .5rem;
  border-radius: var(--rad);
}
.pd-spec-row:nth-child(odd) { background: var(--c-bg-alt); }
.pd-spec-row:nth-child(even) { background: var(--c-white); border: 1px solid var(--c-border); }
.pd-spec-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-spec-label {
  flex: 0 0 130px;
  font-size: .8rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-muted);
}
.pd-spec-value { font-size: .95rem; font-weight: var(--fw-bold); }

/* Section 4: Steps */
.pd-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.pd-step {
  background: var(--c-white);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.pd-step-num {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  font-family: var(--ff-head);
  opacity: .2;
  line-height: 1;
  margin-bottom: .5rem;
}
.pd-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  color: var(--c-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
}
.pd-step h4 { font-size: .95rem; margin-bottom: .35rem; }
.pd-step p { font-size: .875rem; color: var(--c-text-muted); margin-bottom: 0; }

/* Section 5: Gallery */
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pd-gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pd-gallery-item {
  border-radius: var(--rad-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.pd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pd-gallery-item:hover img { transform: scale(1.06); }

/* Section 6: FAQ styled details */
.pd-faq-list { max-width: 800px; margin-inline: auto; }
.pd-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--rad);
  margin-bottom: .75rem;
  overflow: hidden;
}
.pd-faq-item summary {
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: var(--fw-bold);
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--c-white);
  transition: background var(--ease);
}
.pd-faq-item summary::-webkit-details-marker { display: none; }
.pd-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
}
.pd-faq-item[open] summary::after { transform: rotate(45deg); }
.pd-faq-item summary:hover { background: var(--c-bg-alt); }
.pd-faq-item[open] summary { background: var(--c-primary); color: var(--c-white); }
.pd-faq-item[open] summary::after { color: var(--c-white); }
.pd-faq-body {
  padding: 1.1rem 1.25rem;
  font-size: .9rem;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  line-height: 1.7;
}
.pd-faq-body p { margin-bottom: .5rem; }
.pd-faq-body p:last-child { margin-bottom: 0; }
.pd-faq-body ul { padding-left: 1.25rem; list-style: disc; }
.pd-faq-body ul li { margin-bottom: .3rem; }

/* Section 7: Strong CTA */
.pd-cta {
  background: linear-gradient(135deg, var(--c-primary-dk) 0%, var(--c-primary) 60%, var(--c-primary-lt) 100%);
  color: var(--c-white);
  padding-block: 5rem;
  text-align: center;
}
.pd-cta h2 { color: var(--c-white); margin-bottom: 1rem; }
.pd-cta p { color: rgba(255,255,255,.85); max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.pd-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PRODUCT DETAIL RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pd-hero-grid { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.5rem 3rem; }
  .pd-hero-img { position: static; }
  .pd-ben-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-gallery { grid-template-columns: repeat(2, 1fr); }
  .pd-gallery.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pd-ben-grid { grid-template-columns: 1fr; }
  .pd-steps { grid-template-columns: 1fr 1fr; }
  .pd-hero-actions { flex-direction: column; }
  .pd-hero-actions .btn { text-align: center; justify-content: center; }
  .pd-cta-actions { flex-direction: column; align-items: center; }
  .pd-cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 480px) {
  .products-grid-4 { grid-template-columns: 1fr; }
  .pd-steps { grid-template-columns: 1fr; }
  .pd-gallery { grid-template-columns: 1fr 1fr; }
  .pd-gallery.cols-3 { grid-template-columns: 1fr 1fr; }
  .pd-spec-label { flex: 0 0 100px; }
}

/* ===== RTL / Arabic support ===== */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .primary-nav { direction: rtl; }
[dir="rtl"] .primary-nav > li > a { padding: .5rem 1rem; }
[dir="rtl"] .dropdown {
  left: auto;
  right: 0;
}
[dir="rtl"] .primary-nav .has-dropdown > a::after {
  margin-left: 0;
  margin-right: .25rem;
}
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .site-logo { margin-right: 0; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { justify-content: flex-start; }
[dir="rtl"] .hero-badges { justify-content: flex-start; }
[dir="rtl"] .intro-grid { direction: rtl; }
[dir="rtl"] .intro-grid.reverse { direction: ltr; }
[dir="rtl"] .intro-grid.reverse .intro-text { direction: rtl; }
[dir="rtl"] .feature-card { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .footer-col ul { text-align: right; }
[dir="rtl"] .breadcrumb { direction: rtl; }
[dir="rtl"] .pl-grid { direction: rtl; }
[dir="rtl"] .product-detail-grid { direction: rtl; }
[dir="rtl"] .product-meta-grid { direction: rtl; }
[dir="rtl"] .mobile-nav { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .mobile-nav.open { transform: translateX(0); }
[dir="rtl"] .mobile-nav-inner { direction: rtl; text-align: right; }
[dir="rtl"] .accordion-btn { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .accordion-icon { margin-left: 0; margin-right: auto; }
[dir="rtl"] .timeline-item { text-align: right; }
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .contact-info-item { direction: rtl; }
[dir="rtl"] .section-head { direction: rtl; }
[dir="rtl"] .section-head.center { direction: rtl; text-align: center; }
[dir="rtl"] .lang-switcher { direction: ltr; }
[dir="rtl"] .cta-section { direction: rtl; }
[dir="rtl"] .stats-row { direction: rtl; }
[dir="rtl"] .products-grid { direction: rtl; }
[dir="rtl"] .product-card-body { text-align: right; }
[dir="rtl"] .blog-grid { direction: rtl; }
[dir="rtl"] .blog-card-body { text-align: right; }
[dir="rtl"] .faq-grid { direction: rtl; }
[dir="rtl"] .policy-content { direction: rtl; text-align: right; }
[dir="rtl"] .policy-content table { direction: rtl; }
[dir="rtl"] .trust-bar .trust-items { direction: rtl; }

/* ===== PUBLIC MOBILE RESPONSIVE AUDIT FIXES ===== */
html,
body {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

p,
li,
a,
span,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.policy-content table,
.product-detail table,
.pd-specs-list,
.contact-form,
.order-form,
.order-form-wrap,
.sidebar-card,
.product-card,
.blog-card,
.value-card,
.pd-ben-card,
.pd-step,
.pd-faq-item {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .products-grid,
  .blog-grid,
  .features-grid,
  .product-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .product-card-img {
    aspect-ratio: 1 / 1;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100%, var(--max-w));
  }

  .section {
    padding-block: 3rem;
  }

  .section-head {
    margin-bottom: 1.8rem;
  }

  .section-head h2,
  .page-hero h1,
  .product-detail h1,
  .pd-hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.08;
  }

  .intro-grid,
  .intro-grid.reverse,
  .pl-grid,
  .contact-grid,
  .faq-grid,
  .product-detail-grid,
  .product-meta-grid,
  .products-grid,
  .blog-grid,
  .features-grid,
  .about-values,
  .footer-grid,
  .premium-footer .footer-grid,
  .footer-badge-panel {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .intro-grid.reverse,
  [dir="rtl"] .intro-grid.reverse {
    direction: ltr;
  }

  [dir="rtl"] .intro-grid.reverse > *,
  [dir="rtl"] .intro-grid.reverse .intro-text {
    direction: rtl;
  }

  .timeline {
    padding-left: 0;
    padding-right: 0;
  }

  .timeline::before,
  .timeline-item::before {
    display: none;
  }

  .timeline-item {
    display: block !important;
    margin-bottom: 1rem !important;
    padding: 1.1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--rad);
    background: var(--c-white);
    box-shadow: 0 10px 24px rgba(0,0,0,.04);
  }

  .timeline-year {
    display: inline-flex;
    margin-bottom: .5rem;
  }

  .value-card {
    padding: 1.35rem !important;
    min-width: 0;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .pd-hero-grid {
    min-width: 0;
  }

  .pd-hero-content,
  .pd-intro,
  .pd-benefits-list,
  .pd-benefits-list li {
    min-width: 0;
  }

  .pd-spec-row {
    display: grid;
    grid-template-columns: auto minmax(88px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: .55rem .75rem;
    padding: .85rem;
  }

  .pd-spec-icon {
    width: 32px;
    height: 32px;
  }

  .pd-spec-label {
    flex: initial;
    min-width: 0;
    font-size: .72rem;
    line-height: 1.25;
  }

  .pd-spec-value {
    min-width: 0;
    font-size: .92rem;
    line-height: 1.45;
  }

  .pd-steps,
  .pd-ben-grid {
    grid-template-columns: 1fr !important;
  }

  .product-detail-img img,
  .pd-hero-img img,
  .intro-img img,
  .blog-card-img img {
    width: 100%;
    height: auto;
  }

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

  .policy-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-actions,
  .pd-hero-actions,
  .product-card-actions,
  .pd-cta-actions,
  .footer-contact-row,
  .footer-bottom,
  .footer-bottom-links,
  .footer-trust-badges,
  .footer-pills {
    flex-wrap: wrap;
  }

  .hero-actions .btn,
  .pd-hero-actions .btn,
  .pd-cta-actions .btn,
  .product-card-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav {
    width: 100%;
    overflow-y: auto;
  }

  .mobile-nav-inner {
    max-width: 100%;
    padding-inline: 1.25rem;
  }

  .mobile-nav ul > li > a,
  .mobile-nav .sub-list a {
    overflow-wrap: anywhere;
  }

  .footer-pills span,
  .footer-trust-badges span,
  .footer-bottom-links a {
    white-space: normal;
  }
}

@media (max-width: 414px) {
  .container {
    padding-inline: .95rem;
  }

  .page-hero {
    padding-block: calc(var(--nav-h) + 1.5rem) 2rem;
  }

  .pd-spec-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .pd-spec-value {
    grid-column: 2;
  }

  .stats-row {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom-links {
    align-items: center;
    justify-content: center;
    gap: .7rem;
  }
}

@media (max-width: 360px) {
  .section {
    padding-block: 2.5rem;
  }

  .btn {
    padding-inline: 1rem;
  }

  .pd-spec-row {
    grid-template-columns: 1fr;
  }

  .pd-spec-value {
    grid-column: auto;
  }

  .pd-spec-icon {
    margin-bottom: .15rem;
  }
}

@media (max-width: 768px) {
  [dir="rtl"] .timeline,
  [dir="rtl"] .pd-spec-row,
  [dir="rtl"] .pd-step,
  [dir="rtl"] .value-card,
  [dir="rtl"] .footer-grid,
  [dir="rtl"] .footer-bottom {
    text-align: right;
  }

  [dir="rtl"] .mobile-nav-inner {
    padding-inline: 1.25rem;
  }

  [dir="rtl"] .hero-actions,
  [dir="rtl"] .pd-hero-actions,
  [dir="rtl"] .pd-cta-actions {
    justify-content: stretch;
  }
}

/* Product specification cards: argan oil and prickly pear mobile fix */
.pd-details-grid {
  min-width: 0;
}

.pd-details-grid > * {
  min-width: 0;
}

.pd-details-grid .pd-specs-list-simple {
  max-width: none;
}

.pd-details-grid .pd-specs-list-simple .pd-spec-row {
  display: grid;
  grid-template-columns: minmax(120px, .55fr) minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
}

.pd-details-grid .pd-specs-list-simple .pd-spec-row > span:last-child {
  min-width: 0;
  color: var(--c-text);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .pd-details-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }

  .pd-details-grid > div:last-child {
    padding-top: .25rem;
  }
}

@media (max-width: 768px) {
  .pd-details-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .pd-details-grid .section-head {
    margin-bottom: 1.25rem;
  }

  .pd-specs-list {
    max-width: none;
    display: grid;
    gap: .75rem;
  }

  .pd-details-grid .pd-specs-list-simple .pd-spec-row,
  .pd-details-grid .pd-specs-list-simple .pd-spec-row:nth-child(odd),
  .pd-details-grid .pd-specs-list-simple .pd-spec-row:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: .3rem;
  }

  .pd-details-grid .pd-specs-list-simple .pd-spec-label {
    grid-area: auto;
    letter-spacing: .04em;
  }

  .pd-details-grid .pd-specs-list-simple .pd-spec-row > span:last-child {
    grid-area: auto;
  }

  .pd-spec-row,
  .pd-spec-row:nth-child(odd),
  .pd-spec-row:nth-child(even) {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-areas:
      "icon label"
      "icon value";
    align-items: start;
    gap: .15rem .75rem;
    margin-bottom: 0;
    padding: 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--rad);
    background: var(--c-white);
    box-shadow: 0 12px 28px rgba(0,0,0,.05);
  }

  .pd-spec-icon {
    grid-area: icon;
    width: 34px;
    height: 34px;
    margin-top: .1rem;
  }

  .pd-spec-label {
    grid-area: label;
    flex: initial;
    min-width: 0;
    font-size: .72rem;
    line-height: 1.2;
    letter-spacing: .05em;
  }

  .pd-spec-value {
    grid-area: value;
    min-width: 0;
    font-size: .98rem;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .pd-spec-row,
  .pd-spec-row:nth-child(odd),
  .pd-spec-row:nth-child(even) {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: .9rem;
  }

  .pd-spec-icon {
    width: 32px;
    height: 32px;
  }
}
