﻿:root {
  --color-primary: #2B4C5F;
  --color-secondary: #C49A45;
  --color-accent: #3E6B86;
  --color-bg: #F2F5F8;
  --color-surface: #FFFFFF;
  --color-text: #1B2A32;
  --color-muted: #526773;
  --color-soft-bg: #E5ECF2;
  --color-dark: #182A35;
  --color-border: #D1DEE8;
  
  --purelement-teal-dark: #2B4C5F;
  --purelement-teal-muted: #526773;
  --purelement-mint-accent: #C49A45;
  --purelement-cream-bg: #F2F5F8;
  --purelement-gold: #C49A45;
  --purelement-primary: #2B4C5F;
  --purelement-surface: #FFFFFF;
  --purelement-border: #D1DEE8;
}
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-primary: #0E383B;
  --brand-secondary: #4E6E70;
  --brand-accent: #80C2AF;
  --brand-bg: #EAF4F2;
  --brand-surface: #FFFFFF;
  --brand-border: #E2ECE9;
  --brand-radius: 16px;
  --brand-font-head: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --brand-font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --purelement-bg-mint: #EAF4F2;
  --purelement-bg-hero: #E6F2EF;
  --purelement-bg-white: #FFFFFF;
  --purelement-teal-dark: #0E383B;
  --purelement-teal-muted: #4E6E70;
  --purelement-teal-light: #80C2AF;
  --purelement-btn-mint: #D8EEE9;
  --purelement-btn-mint-hover: #C5E5DD;
  --purelement-shadow-subtle: 0 8px 30px rgba(14, 56, 59, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--brand-font-body);
  background-color: var(--purelement-bg-mint);
  color: var(--purelement-teal-dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--purelement-teal-dark, #0E383B);
  color: #FFFFFF;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-pill-dark:hover {
  background-color: #164E52;
  color: #FFFFFF;
  transform: translateY(-1px);
}

button, input, select, textarea {
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* -------------------------------------------------------------
   1. HEADER
------------------------------------------------------------- */
.purelement-header {
  background-color: var(--purelement-bg-hero);
  padding: 24px 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 42px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--purelement-teal-dark);
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.header-nav a:hover {
  opacity: 1;
  color: var(--purelement-teal-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purelement-teal-dark);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: background 0.2s ease;
}

.header-cart-btn:hover {
  background: rgba(14, 56, 59, 0.05);
}

.header-cart-badge {
  background: var(--purelement-teal-dark);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none; /* Hidden by default when cart count is 0 */
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------
   2. HERO SECTION (FULL-WIDTH 3.56:1 BANNER)
------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  max-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--purelement-bg-hero);
  background-image: url('../assets/images/hero-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  padding: 40px 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-block {
  max-width: 580px;
}

.hero-brand-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0E383B;
  margin-bottom: 16px;
}

.hero-brand-subheading {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: #0E383B;
  margin-bottom: 36px;
}

.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-pillar-item {
  display: flex;
  flex-direction: column;
}

.hero-pillar-icon {
  margin-bottom: 12px;
  color: #0E383B;
  display: flex;
  align-items: center;
}

.hero-pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0E383B;
}

.hero-pillar-title {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0E383B;
  line-height: 1.25;
  margin-bottom: 4px;
}

.hero-pillar-desc {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #4E6E70;
  line-height: 1.35;
}
/* -------------------------------------------------------------
   3. TRUST BADGES STRIP (ANNOUNCEMENT STRIP)
------------------------------------------------------------- */
.trust-bar-section {
  background-color: var(--purelement-bg-white, #FFFFFF);
  border-top: 1px solid rgba(14, 56, 59, 0.08);
  border-bottom: 1px solid rgba(14, 56, 59, 0.08);
  padding: 16px 0;
  width: 100%;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px;
  border-right: 1px solid rgba(14, 56, 59, 0.08);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purelement-teal-dark, #0E383B);
  flex-shrink: 0;
}

.trust-bar-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--purelement-teal-dark, #0E383B);
  display: block;
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.trust-bar-title {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--purelement-teal-dark, #0E383B);
  line-height: 1.25;
  margin-bottom: 2px;
  display: block;
  white-space: nowrap;
}

.trust-bar-desc {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--purelement-teal-muted, #5C6F70);
  line-height: 1.25;
  display: block;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
  }
  .trust-bar-item {
    padding: 10px 12px;
  }
  .trust-bar-item:nth-child(2n) {
    border-right: none;
  }
  .trust-bar-item:nth-child(1),
  .trust-bar-item:nth-child(2) {
    border-bottom: 1px solid rgba(14, 56, 59, 0.08);
    padding-bottom: 16px;
  }
  .trust-bar-item:nth-child(3),
  .trust-bar-item:nth-child(4) {
    padding-top: 16px;
  }
}

@media (max-width: 575px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(14, 56, 59, 0.08);
    justify-content: flex-start;
    padding: 12px 16px;
  }
  .trust-bar-item:last-child {
    border-bottom: none;
  }
  .trust-bar-title, .trust-bar-desc {
    white-space: normal;
  }
}

/* -------------------------------------------------------------
   4. BEST SELLERS SECTION
------------------------------------------------------------- */
.bestsellers-section {
  background-color: var(--purelement-bg-white);
  padding: 110px 0 100px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--purelement-teal-dark);
}

.bestsellers-row-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #E2ECE9;
  background: #FFFFFF;
  color: var(--purelement-teal-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(14, 56, 59, 0.12);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slider-nav-btn:not(:disabled):hover {
  background: var(--purelement-teal-dark);
  color: #FFFFFF;
  border-color: var(--purelement-teal-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(14, 56, 59, 0.22);
}

.slider-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #F4FAF8;
  border-color: #E2ECE9;
  color: #8CA7A1;
  box-shadow: none;
}

.slider-nav-btn:not(:disabled):active {
  transform: translateY(-50%) scale(0.96);
}

.slider-prev { left: -26px; }
.slider-next { right: -26px; }

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: 100%;
}

.bestseller-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bestseller-card-slide {
  flex: 0 0 calc(33.333% - 24px);
  min-width: calc(33.333% - 24px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bestseller-img-pad {
  background-color: #F2FAF8;
  border-radius: 20px;
  aspect-ratio: 1 / 1.15;
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 56, 59, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bestseller-card:hover .bestseller-img-pad,
.bestseller-card-slide:hover .bestseller-img-pad {
  box-shadow: 0 10px 28px rgba(14, 56, 59, 0.08);
}

.bestseller-img-pad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bestseller-card:hover .bestseller-img-pad img,
.bestseller-card-slide:hover .bestseller-img-pad img {
  transform: scale(1.04);
}

.bestseller-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 20px;
}

.bestseller-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--purelement-teal-dark);
  margin-bottom: 8px;
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  line-height: 1.35;
}

.bestseller-name a {
  color: var(--purelement-teal-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bestseller-name a:hover {
  color: #1A605B;
}

.bestseller-desc {
  font-size: 13.5px;
  color: var(--purelement-teal-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.bestseller-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.bestseller-add-btn {
  background-color: var(--purelement-btn-mint);
  color: var(--purelement-teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bestseller-add-btn:hover {
  background-color: var(--purelement-btn-mint-hover);
  transform: translateY(-1px);
}

.bestseller-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--purelement-teal-dark);
  white-space: nowrap;
}

.view-all-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purelement-teal-dark);
  border-bottom: 1.5px solid var(--purelement-teal-dark);
  padding-bottom: 4px;
  margin-top: 56px;
}

/* -------------------------------------------------------------
   5. ABOUT / BRAND SECTION
------------------------------------------------------------- */
.about-section {
  background-color: var(--purelement-bg-mint);
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 72px;
  align-items: center;
}

.about-visual-wrap {
  position: relative;
}

.about-arch-img {
  border-radius: 160px 160px 32px 32px;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 48% center;
  box-shadow: 0 16px 40px rgba(14, 56, 59, 0.06);
  display: block;
}

.about-decor-circle {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #A3D5C7;
  z-index: -1;
}

.about-decor-leaf {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  border-radius: 0 45px 0 45px;
  background-color: #80C2AF;
  opacity: 0.5;
  z-index: 2;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purelement-teal-muted);
  margin-bottom: 16px;
}

.editorial-heading {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--purelement-teal-dark);
  margin-bottom: 24px;
}

.editorial-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--purelement-teal-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

/* -------------------------------------------------------------
   6. TRUST / BENEFIT CARDS SECTION
------------------------------------------------------------- */
.trust-section {
  background-color: #F8FCFA;
  padding: 85px 0 95px;
  border-top: 1px solid rgba(14, 56, 59, 0.06);
  border-bottom: 1px solid rgba(14, 56, 59, 0.06);
}

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

.trust-card {
  background: #FFFFFF;
  border: 1px solid #E2ECE9;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(14, 56, 59, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(14, 56, 59, 0.07);
  border-color: #C2DFD7;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E8F5F2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purelement-teal-dark);
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.trust-card:hover .trust-icon-box {
  background: #D5ECE6;
}

.trust-icon {
  width: 26px;
  height: 26px;
  stroke: var(--purelement-teal-dark);
}

.trust-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--purelement-teal-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.trust-desc {
  font-size: 14px;
  color: #5C6F70;
  line-height: 1.55;
  margin: 0;
}

/* -------------------------------------------------------------
   7. SATISFACTION SECTION
------------------------------------------------------------- */
.satisfaction-section {
  background-color: var(--purelement-bg-white);
  padding: 110px 0;
}

.satisfaction-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 64px;
  align-items: center;
}

.satisfaction-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.satisfaction-visual-wrap img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 7 / 6;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 36px;
  display: block;
}

/* -------------------------------------------------------------
   8. FEATURED PRODUCT SECTION
------------------------------------------------------------- */
.featured-section {
  position: relative;
  background-color: #EBF3F1;
  background-image: url('../assets/images/featured-omega3-wide.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 90px 0 130px;
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 48px;
  align-items: center;
}

.featured-visual-space {
  min-height: 380px;
}

.featured-content {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.featured-action-wrap {
  margin-bottom: 24px;
}

.featured-content .floating-proof-badge {
  position: static;
  display: inline-flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(14, 56, 59, 0.06);
  min-width: 170px;
  border: 1px solid rgba(14, 56, 59, 0.05);
}

.proof-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--purelement-teal-dark);
}

.proof-stars {
  color: #D4A843;
  font-size: 14px;
  margin: 3px 0;
}

.proof-label {
  font-size: 11px;
  color: var(--purelement-teal-muted);
  line-height: 1.4;
}

/* -------------------------------------------------------------
   9. BETTER INGREDIENTS SECTION
------------------------------------------------------------- */
.ingredients-section {
  background-color: var(--purelement-bg-white);
  padding: 120px 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 56px;
  align-items: start;
}

.ingredients-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ingredient-tile {
  background: #F8FCFB;
  border: 1px solid #E6F1EE;
  border-radius: 16px;
  padding: 22px 26px;
  flex: 1 1 calc(50% - 20px);
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ingredient-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 56, 59, 0.04);
}

.ingredient-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}

.circle-c { background-color: #FDF1D6; }
.circle-b3 { background-color: #DFEEF5; }
.circle-mg { background-color: #F7DFD4; }
.circle-ha { background-color: #F4EEDF; }
.circle-lacto { background-color: #E8E3F2; }

.ingredient-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--purelement-teal-dark);
}

.ingredient-sub {
  font-size: 13px;
  color: var(--purelement-teal-muted);
}

/* -------------------------------------------------------------
   10. TESTIMONIALS SECTION
------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--purelement-bg-mint);
  padding: 120px 0 140px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.review-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(14, 56, 59, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Stagger vertical offsets */
.review-card:nth-child(2) { transform: translateY(24px); }
.review-card:nth-child(4) { transform: translateY(18px); }

.review-stars {
  color: #D4A843;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--purelement-teal-muted);
  margin-bottom: 20px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EBF4F2;
  color: var(--purelement-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--purelement-teal-dark);
}

.reviewer-status {
  font-size: 11px;
  color: var(--purelement-teal-light);
}

/* -------------------------------------------------------------
   11. SOPHISTICATED MINIMAL FOOTER
------------------------------------------------------------- */
.purelement-footer {
  background-color: #0A2729;
  color: #E6F3F1;
  padding: 90px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 15px;
  color: #92B5B0;
  margin-top: 18px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #A6CBC5;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-legal-box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 1.7;
  color: #7A9E99;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7A9E99;
}

/* -------------------------------------------------------------
   CATALOG & PDP STYLING IN SAME AESTHETIC
------------------------------------------------------------- */
.catalog-header-banner {
  background-color: var(--purelement-bg-hero);
  padding: 60px 0 40px;
  text-align: center;
}

.catalog-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 60px 0 100px;
}

/* PDP */
.pdp-detail-layout {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 60px;
  align-items: start;
}

.pdp-visual-pad {
  background-color: #F2FAF8;
  border-radius: 24px;
  aspect-ratio: 1 / 1.15;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(14, 56, 59, 0.05);
}

.pdp-visual-pad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.4s ease;
}

.pdp-buy-box {
  background: #FFFFFF;
  border: 1px solid #E2ECE9;
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(14, 56, 59, 0.04);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.pdp-price-val {
  font-size: 36px;
  font-weight: 700;
  color: var(--purelement-teal-dark);
  line-height: 1;
}

.pdp-price-note {
  font-size: 13px;
  color: var(--purelement-teal-muted);
}

.pdp-actions-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.pdp-qty-control {
  display: inline-flex;
  align-items: center;
  background: #F4FAF8;
  border: 1px solid #D5E4E0;
  border-radius: 9999px;
  padding: 4px;
}

.pdp-qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #D5E4E0;
  color: var(--purelement-teal-dark);
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-qty-btn:hover {
  background: var(--purelement-btn-mint);
  border-color: var(--purelement-teal-light);
}

.pdp-qty-input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  color: var(--purelement-teal-dark);
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  padding: 0;
}

.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  display: none;
}

.pdp-buy-btn {
  flex: 1;
  justify-content: center;
  padding: 15px 28px;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(14, 56, 59, 0.12);
}

.pdp-trust-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #EBF3F1;
}

.pdp-trust-item {
  font-size: 13.5px;
  color: #34615E;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-trust-item svg {
  color: #2F856A;
  flex-shrink: 0;
}

.pdp-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.pdp-spec-card {
  background: #F8FCFA;
  border: 1px solid #E2ECE9;
  border-radius: 14px;
  padding: 14px 16px;
}

.pdp-spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--purelement-teal-muted);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.pdp-spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--purelement-teal-dark);
}

.lmiv-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.lmiv-table th, .lmiv-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #E2ECE9;
}

.lmiv-table th {
  background-color: #F8FCFA;
  font-weight: 600;
  color: var(--purelement-teal-dark);
}

.lmiv-table th {
  background-color: #EBF5F3;
  color: var(--purelement-teal-dark);
  font-weight: 600;
}

.nem-warning-box {
  background-color: #F8FCFB;
  border-left: 3px solid var(--purelement-teal-light);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--purelement-teal-muted);
  margin: 24px 0;
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-title { font-size: 56px; }
  .editorial-heading { font-size: 38px; }
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card:nth-child(2) { transform: none; }
  .review-card:nth-child(4) { transform: none; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-nav { display: none; }
  .hero-section { min-height: 520px; } 
  .hero-title { font-size: 44px; }
  .bestsellers-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .satisfaction-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .ingredients-grid { grid-template-columns: 1fr; gap: 40px; }
  .ingredients-tiles { flex-direction: column; }
  .ingredient-tile { min-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .pdp-detail-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* CAROUSEL SLIDER STYLING */
.bestsellers-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.bestsellers-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 36px;
}

.bestseller-card-slide {
  flex: 0 0 calc(33.333% - 24px);
  min-width: calc(33.333% - 24px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1080px) {
  .bestseller-card-slide {
    flex: 0 0 calc(50% - 18px);
    min-width: calc(50% - 18px);
  }
}

@media (max-width: 768px) {
  .bestseller-card-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* RICH ABOUT US STYLING */
.about-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 36px;
}

.about-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid #DDF0EB;
}

.about-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8F6F2;
  color: #0E383B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-badge-title {
  font-size: 15px;
  font-weight: 700;
  color: #0E383B;
  margin-bottom: 3px;
}

.about-badge-desc {
  font-size: 13px;
  color: #4E6E70;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .hero-section { min-height: 420px; }
  .hero-main-title { font-size: 32px; }
  .hero-left-content { max-width: 440px; }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    max-height: none;
    padding: 40px 0;
    background-position: 80% center;
  }
  .hero-left-content {
    max-width: 100%;
    background: rgba(230, 242, 239, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 24px;
  }
  .hero-main-title { font-size: 26px; }
}

@media (max-width: 390px) {
  .hero-main-title { font-size: 22px; }
  .hero-features-list { gap: 10px; }
}

/* RESPONSIVE STYLES FOR UPDATED SECTIONS */
@media (max-width: 1080px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .featured-section {
    background-position: 25% center;
    padding: 80px 0;
  }
  .featured-grid {
    grid-template-columns: 44% 56%;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pdp-specs-grid {
    grid-template-columns: 1fr;
  }
  .about-arch-img {
    max-width: 420px;
    margin: 0 auto;
    object-position: 48% 20%;
  }
  .satisfaction-visual-wrap img {
    max-width: 100%;
    object-position: center 20%;
  }
  .featured-section {
    background-position: 27% 20px;
    background-size: auto 340px;
    padding: 20px 0 50px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .featured-visual-space {
    min-height: 320px;
  }
  .featured-content {
    padding: 20px 0;
  }
}

@media (max-width: 390px) {
  .about-arch-img {
    border-radius: 120px 120px 24px 24px;
  }
  .satisfaction-visual-wrap img {
    border-radius: 20px;
  }
  .featured-section {
    background-position: 27% 15px;
    background-size: auto 300px;
    padding: 15px 0 40px;
  }
  .featured-visual-space {
    min-height: 300px;
  }
}

/* GERMAN COMPLIANCE & LEGAL PRODUCT DETAILS (NemV & LMIV) */
.pdp-base-price {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--purelement-teal-muted);
}

.pdp-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.pdp-legal-card {
  background: #FFFFFF;
  border: 1px solid #E2ECE9;
  border-radius: 18px;
  padding: 24px 28px;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(14, 56, 59, 0.03);
}

.pdp-legal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--purelement-teal-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-legal-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4A5F5E;
  margin: 0;
}

.pdp-legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: #4A5F5E;
}

.pdp-legal-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.pdp-legal-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2F856A;
}

/* MOBILE OPTIMIZATIONS FOR PDP BUY BOX & SPECS */
@media (max-width: 640px) {
  .pdp-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .pdp-qty-control {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
  }
  .pdp-buy-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 15px;
  }
  .pdp-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .pdp-price-row {
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
  }
}

/* -------------------------------------------------------------
   GOOGLE MERCHANT CENTER COMPLIANCE & TRUST STYLES
------------------------------------------------------------- */
.header-brand-desc {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--purelement-teal-muted);
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0E383B;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
  height: 26px;
  line-height: 1;
}

.pay-badge-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EBF5F3;
  color: #0E383B;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #D5E7E2;
  letter-spacing: 0.4px;
  height: 25px;
  line-height: 1;
}

.carrier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D40511;
  color: #FFCC00;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  height: 26px;
  line-height: 1;
}

.pdp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EAF6F3;
  color: #0E383B;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.pdp-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27AE60;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.footer-trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-contact-info {
  margin-top: 20px;
  font-size: 13.5px;
  color: #C1DFD9;
  line-height: 1.7;
}

.footer-contact-info a {
  color: #FFFFFF;
}

.footer-contact-info a:hover {
  color: #80C2AF;
}

.policy-content-card {
  background: #FFFFFF;
  border: 1px solid #E2ECE9;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(14, 56, 59, 0.03);
  line-height: 1.8;
  color: var(--purelement-teal-dark);
}

.policy-content-card h2 {
  font-size: 22px;
  color: var(--purelement-teal-dark);
  margin-top: 32px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E8F2F0;
}

.policy-content-card h2:first-child {
  margin-top: 0;
}

.policy-content-card h3 {
  font-size: 17px;
  color: var(--purelement-teal-dark);
  margin-top: 22px;
  margin-bottom: 10px;
}

.policy-content-card p, .policy-content-card ul, .policy-content-card ol {
  font-size: 15px;
  color: #3D5A58;
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-content-card ul, .policy-content-card ol {
  padding-left: 24px;
}

.policy-content-card li {
  margin-bottom: 8px;
}

.policy-highlight-box {
  background: #F3F9F8;
  border-left: 4px solid #80C2AF;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  color: #1B4547;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.policy-table th, .policy-table td {
  padding: 12px 16px;
  border: 1px solid #E2ECE9;
  text-align: left;
}

.policy-table th {
  background: #F8FCFB;
  color: var(--purelement-teal-dark);
  font-weight: 700;
}

/* -------------------------------------------------------------
   MOBILE POLISH & HIGH-RESOLUTION RESPONSIVENESS
------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    max-height: none;
    padding: 60px 0 40px;
    background-position: 80% center;
  }
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 245, 243, 0.95) 0%, rgba(235, 245, 243, 0.90) 60%, rgba(235, 245, 243, 0.50) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-brand-heading {
    font-size: 34px !important;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero-brand-subheading {
    font-size: 16px !important;
    margin-bottom: 24px;
    line-height: 1.45;
  }
  .hero-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .pdp-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .header-brand-desc {
    display: none !important;
  }
  .editorial-heading {
    font-size: 28px !important;
  }
  .pdp-price-val {
    font-size: 30px !important;
  }
  .pdp-specs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
}

/* =============================================================
   PDP TABS & FOOTER FIX STYLES
   ============================================================= */
.pdp-tabs-section {
  margin-top: 50px;
  border-top: 1px solid var(--color-border, #E2ECE9);
  padding-top: 36px;
}
.pdp-tabs-nav {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--color-border, #E2ECE9);
  margin-bottom: 28px;
  overflow-x: auto;
}
.pdp-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted, #4E6E70);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-bottom: -2px;
  font-family: inherit;
  border-radius: 8px 8px 0 0;
}
.pdp-tab-btn:hover {
  color: var(--color-primary, #0E383B);
  background-color: rgba(0, 0, 0, 0.02);
}
.pdp-tab-btn.active {
  color: var(--color-primary, #0E383B);
  border-bottom-color: var(--color-accent, #80C2AF);
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.015);
}
.pdp-tab-pane {
  display: none;
  line-height: 1.7;
}
.pdp-tab-pane.active {
  display: block;
}

/* Fail-safe footer grid rules */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-col-brand {
  grid-column: auto;
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* PDP QUANTITY CONTROLS STYLING */
.pdp-qty-control, .cart-qty-pill {
  display: inline-flex !important;
  align-items: center !important;
  background: #F4FAF8 !important;
  border: 1px solid #D5E4E0 !important;
  border-radius: 9999px !important;
  padding: 4px !important;
}
.pdp-qty-btn, .cart-qty-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1px solid #D5E4E0 !important;
  color: #0E383B !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  line-height: 1 !important;
  padding: 0 !important;
}
.pdp-qty-btn:hover, .cart-qty-btn:hover {
  background: #D8EEE9 !important;
  border-color: #80C2AF !important;
}
.pdp-qty-input, input#pdpQty {
  width: 44px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0E383B !important;
  user-select: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  padding: 0 !important;
  margin: 0 !important;
}