/* ============================================================
   HEALTHY SMILES — JABONES ARTESANALES
   Global Design System
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  /* Colors */
  --mint: #5BBFAD;
  --mint-light: #A8E6D7;
  --mint-pale: #E8F8F5;
  --sky: #7EC8E3;
  --sky-light: #D6F0F7;
  --coral: #FF6B6B;
  --coral-dark: #E05050;
  --coral-pale: #FFE8E8;
  --terra: #C8956C;
  --terra-light: #F5E6D8;
  --lavender: #9B7FBF;
  --lemon: #F9C74F;
  --honey: #E8A928;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --dark: #0F1923;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-serif: 'Lora', serif;

  /* Spacing */
  --section-gap: 6rem;
  --card-radius: 1.25rem;
  --btn-radius: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.13);
  --shadow-colored: 0 8px 30px rgba(91, 191, 173, 0.25);

  /* Transitions */
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================
   RESET & BASE
   ======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.lead {
  font-size: 1.2rem;
  font-weight: 400;
}

.serif {
  font-family: var(--font-serif);
}

.text-mint {
  color: var(--mint);
}

.text-coral {
  color: var(--coral);
}

.text-terra {
  color: var(--terra);
}

.text-lavender {
  color: var(--lavender);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

/* ========================
   LAYOUT UTILITIES
   ======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background: var(--gray-50);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--mint {
  background: var(--mint-pale);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .badge {
  display: inline-block;
  background: var(--mint-light);
  color: var(--mint);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header .badge--coral {
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.section-header .badge--terra {
  background: var(--terra-light);
  color: var(--terra);
}

.section-header .badge--lavender {
  background: #EDE5F5;
  color: var(--lavender);
}

.section-header .badge--sky {
  background: var(--sky-light);
  color: #4A8FA3;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint), var(--sky));
  margin: 1rem auto;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--mint), #4AADA0);
  color: var(--white);
  box-shadow: var(--shadow-colored);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91, 191, 173, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--secondary-dark {
  background: transparent;
  color: var(--mint);
  border: 2px solid var(--mint);
}

.btn--secondary-dark:hover {
  background: var(--mint-pale);
  transform: translateY(-2px);
}

.btn--coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.btn--coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 107, 0.4);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-group--center {
  justify-content: center;
}

/* ========================
   NAVIGATION
   ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  transition: color var(--ease);
}

.navbar.scrolled .navbar__brand {
  color: var(--dark);
}

.navbar__brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-text .brand-name {
  color: var(--mint-light);
  font-size: 1.1rem;
  transition: color var(--ease);
}

.navbar.scrolled .navbar__logo-text .brand-name {
  color: var(--mint);
}

.navbar__logo-text .brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.navbar.scrolled .navbar__logo-text .brand-sub {
  color: var(--gray-400);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__links a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  transition: all var(--ease);
  position: relative;
}

.navbar.scrolled .navbar__links a {
  color: var(--gray-800);
}

.navbar__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.navbar__links a.active {
  color: var(--mint-light);
  background: rgba(91, 191, 173, 0.15);
}

.navbar.scrolled .navbar__links a:hover,
.navbar.scrolled .navbar__links a.active {
  color: var(--mint);
  background: var(--mint-pale);
}

.navbar__links a.btn--nav-shop {
  background: linear-gradient(135deg, var(--mint), #4AADA0);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

.navbar__links a.btn--nav-shop:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-colored);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--gray-800);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  backdrop-filter: blur(16px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  padding: 0.5rem 2rem;
  border-radius: 12px;
  transition: all var(--ease);
}

.mobile-menu a:hover {
  color: var(--mint);
  background: var(--mint-pale);
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray-800);
  padding: 0.5rem;
}

/* Hamburger animation */
.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2a2a 50%, #0a1e1a 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.75) 0%,
      rgba(12, 45, 40, 0.6) 60%,
      rgba(15, 30, 25, 0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 8rem 0 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 191, 173, 0.2);
  border: 1px solid rgba(91, 191, 173, 0.5);
  color: var(--mint-light);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--mint-light);
}

.hero__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 2s 1.5s both;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ========================
   STATS STRIP
   ======================== */
.stats-strip {
  background: linear-gradient(135deg, var(--mint), #399e8e);
  padding: 2rem 0;
  color: var(--white);
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-item__label {
  font-size: 0.85rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ========================
   MISSION SECTION
   ======================== */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mission__icon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.mission__icon-item .icon {
  font-size: 1.3rem;
}

.mission__visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mission__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      rgba(91, 191, 173, 0.2),
      transparent);
  z-index: 1;
}

/* ========================
   PRODUCT CARDS
   ======================== */
.product-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  border: 1px solid var(--gray-100);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--mint);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mint);
}

.product-card__price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  display: block;
  line-height: 1;
}

.product-card__btn {
  background: var(--mint-pale);
  color: var(--mint);
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.3rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font-heading);
}

.product-card__btn:hover {
  background: var(--mint);
  color: var(--white);
  transform: scale(1.05);
}

/* ========================
   INGREDIENT TAGS
   ======================== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.tag--mint {
  background: var(--mint-pale);
  color: var(--mint);
}

.tag--coral {
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.tag--lavender {
  background: #EDE5F5;
  color: var(--lavender);
}

.tag--honey {
  background: #FEF3C7;
  color: #B45309;
}

/* ========================
   TESTIMONIAL CARDS
   ======================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--mint-light);
  opacity: 0.5;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gray-700, #374151);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ========================
   FAQ ACCORDION
   ======================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--ease);
}

.faq-item.open {
  border-color: var(--mint);
  box-shadow: 0 4px 20px rgba(91, 191, 173, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  user-select: none;
  transition: color var(--ease);
}

.faq-item.open .faq-question {
  color: var(--mint);
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--ease);
  color: var(--mint);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0.25rem 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* ========================
   IMPACT CARD
   ======================== */
.impact-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2e28 100%);
  border-radius: 2rem;
  padding: 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-banner::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 191, 173, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
}

.impact-banner h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.impact-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.impact-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(91, 191, 173, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
}

.impact-item__emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.impact-item__value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--mint-light);
}

.impact-item__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

/* ========================
   TIMELINE
   ======================== */
.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--mint), var(--sky));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item__dot {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--mint-light);
  z-index: 2;
}

.timeline-item__card {
  width: calc(50% - 2rem);
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.timeline-item__date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.timeline-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-item__text {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ========================
   IMAGE PLACEHOLDERS (product)
   ======================== */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.img-placeholder .emoji {
  font-size: 3rem;
}

.soap-lavender {
  background: linear-gradient(135deg, #9B7FBF, #C5A8E8);
}

.soap-citric {
  background: linear-gradient(135deg, #F9A825, #FF8F00);
}

.soap-oat {
  background: linear-gradient(135deg, #C8956C, #E8A928);
}

.soap-rose {
  background: linear-gradient(135deg, #F06292, #E91E8C);
}

.soap-aloe {
  background: linear-gradient(135deg, #66BB6A, #43A047);
}

.soap-charcoal {
  background: linear-gradient(135deg, #455A64, #263238);
}

/* ========================
   GALLERY GRID
   ======================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

/* ========================
   CONTACT FORM
   ======================== */
.contact-form {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: border-color var(--ease);
  background: var(--gray-50);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 191, 173, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .emoji {
  font-size: 3rem;
}

.form-success h3 {
  margin: 0.5rem 0;
  color: var(--mint);
}

/* ========================
   SOCIAL LINKS
   ======================== */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  color: var(--gray-800);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--ease);
}

.social-link:hover {
  background: var(--mint);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.tiktok:hover {
  background: #010101;
}

.social-link.youtube:hover {
  background: #FF0000;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  margin-bottom: 1rem;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__brand-logo img {
  width: 44px;
  border-radius: 10px;
}

.footer__brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--ease);
}

.footer__links a:hover {
  color: var(--mint);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer__badge {
  background: rgba(91, 191, 173, 0.1);
  border: 1px solid rgba(91, 191, 173, 0.25);
  color: var(--mint-light);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========================
   PAGE BANNER
   ======================== */
.page-banner {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628, #0d2a2a);
  color: var(--white);
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.8), rgba(12, 45, 40, 0.7));
}

.page-banner__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.7s ease both;
}

.fade-in-d1 {
  animation-delay: 0.1s;
}

.fade-in-d2 {
  animation-delay: 0.2s;
}

.fade-in-d3 {
  animation-delay: 0.3s;
}

.fade-in-d4 {
  animation-delay: 0.4s;
}

.fade-in-d5 {
  animation-delay: 0.6s;
}

/* Intersection Observer triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   CART ICON (mini)
   ======================== */
.cart-btn {
  position: relative;
  background: var(--mint-pale);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
}

.cart-btn:hover {
  background: var(--mint);
  color: var(--white);
}

.cart-count {
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -4px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  :root {
    --section-gap: 4rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .mission {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 3rem;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item__dot {
    left: 1rem;
    top: 0.5rem;
  }

  .timeline-item__card {
    width: 100%;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 7rem 0 3rem;
  }

  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .stats-strip__inner {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================
   JOURNEY ACCORDION
   ======================== */
.journey-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--ease);
  border: 1px solid var(--gray-100);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--mint-light);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.accordion-icon {
  font-size: 2rem;
  background: var(--mint-pale);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.accordion-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.accordion-summary {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

.accordion-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-toggle::before,
.accordion-toggle::after {
  content: '';
  position: absolute;
  background: var(--mint);
  border-radius: 2px;
  transition: transform var(--ease);
}

.accordion-toggle::before {
  top: 11px;
  left: 0;
  width: 24px;
  height: 3px;
}

.accordion-toggle::after {
  top: 0;
  left: 10.5px;
  width: 3px;
  height: 24px;
}

/* Active State */
.accordion-item.active {
  border-color: var(--mint);
  box-shadow: var(--shadow-colored);
}

.accordion-item.active .accordion-toggle::after {
  transform: rotate(90deg) scale(0);
}

.accordion-item.active .accordion-toggle::before {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-inner {
  padding: 0 2rem 2rem 5.25rem;
}

@media (max-width: 768px) {
  .accordion-inner {
    padding: 0 1.5rem 1.5rem;
  }
  
  .accordion-title-wrap {
    flex-direction: column;
    gap: 1rem;
  }
  
  .accordion-header {
    padding: 1.5rem;
  }
}