/* ============================================
   PLORINA.COM - Design System
   Planet Organic Indonesia
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Light / white palette — natural, bright, clean */
  --black: #1a1a1a;           /* Near-black for text */
  --white: #ffffff;            /* Pure white background */
  --accent: #015198;          /* Plorina blue */
  --accent-light: #0267bf;
  --accent-glow: rgba(1, 81, 152, 0.12);
  --secondary: #C8102E;       /* Plorina red */
  --secondary-glow: rgba(200, 16, 46, 0.15);
  --green: #35AF6A;           /* Plorina green (from original) */
  --gray-1: #f5f5f3;          /* Lightest — card backgrounds */
  --gray-2: #e5e5e0;          /* Borders, separators */
  --gray-3: #c0c0b8;          /* Muted text */
  --gray-4: #888880;          /* Secondary text */
  --gray-5: #555550;          /* Body text */
  --gray-6: #333330;          /* Strong text */
  --off-white: #fafaf8;
  --cream: #f0ede6;

  /* Typography */
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'Fragment Mono', 'Roboto Mono', monospace;
  --font-accent: 'Inter', serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;
  --text-hero: clamp(3rem, 6vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 8rem;
  --space-20: 10rem;

  /* Layout */
  --max-width: 1440px;
  --content-width: 1200px;
  --narrow-width: 800px;
  --side-padding: clamp(1.5rem, 4vw, 4rem);

  /* Z-index */
  --z-nav: 100;
  --z-modal: 1000;
  --z-cart: 900;
  --z-overlay: 800;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--white); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  color: var(--gray-4);
  line-height: 1.7;
}

.label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-4);
}

/* ============================================
   HEADER / NAVIGATION
   BraveBrand style: fixed, transparent, blur on scroll
   Numbered nav links (Products01, About02, Contact03)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--gray-2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  /* Balanced 3-column grid: nav stays truly centered regardless of logo width,
     so the menu sits in the same position on every page */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

.logo {
  flex-shrink: 0;
}


.logo-dot {
  display: none;
}

/* Nav links - BraveBrand numbered style */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-5);
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  white-space: nowrap;
}

/* Tighter nav at narrower desktop */
@media (max-width: 1199px) {
  .nav-links {
    gap: 1.5rem;
  }
  .nav-link {
    font-size: var(--text-sm);
  }
}

.nav-link-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray-3);
  vertical-align: super;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
}

.nav-link:hover .nav-link-num,
.nav-link.active .nav-link-num {
  color: var(--accent);
}

.nav-link--home {
  display: flex;
}

/* Nav right side */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--gray-4);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--black);
}

.cart-icon {
  position: relative;
  color: var(--gray-5);
  transition: color 0.3s ease;
  display: none;
  align-items: center;
}

.cart-icon:hover { color: var(--black); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.header-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: #a50d26;
  transform: translateY(-1px);
}

/* Mobile menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 28px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

/* Full-screen mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-3);
  transition: color 0.3s ease;
  letter-spacing: -0.03em;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--black);
}

/* ============================================
   SECTION CONTAINERS
   ============================================ */
.section {
  padding: var(--space-16) 0;
  position: relative;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.container--narrow {
  max-width: var(--narrow-width);
}

.container--content {
  max-width: var(--content-width);
}

/* Separator line - BraveBrand style */
.separator {
  width: 100%;
  height: 1px;
  background: var(--gray-2);
}

/* ============================================
   HERO 1 - BraveBrand style
   Large statement heading, full viewport
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--space-10);
  position: relative;
  overflow: hidden;
}

/* Large emblem/seal background image behind hero text */
.hero-emblem {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-width: 550px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  overflow: hidden;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-emblem-mobile { display: none; }

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

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-8);
  color: var(--black);
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-2);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  padding: 0.5rem 0;
}

.btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1.1em;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Square icon with arrow - BraveBrand style CTA */
.square-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: color 0.3s ease;
}

.square-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.square-icon svg {
  transition: transform 0.3s ease;
}

.square-icon-btn:hover .square-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.square-icon-btn:hover .square-icon svg {
  transform: translateX(2px) translateY(-2px);
}

/* ============================================
   HERO 2 - BraveBrand scroll text section
   Centered full-width, serif font, word-by-word reveal
   ============================================ */
.hero-2 {
  padding: var(--space-20) 0;
  position: relative;
}

.hero-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

/* Banner strip */
.banner-strip {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  border-radius: 0;
}


.banner-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scroll text section — natural flow, word-by-word reveal */
.scroll-text-section {
  padding: 10vh 0 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.scroll-text-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.scroll-text-paragraph {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--black);
}

/* Keep hero-2--centered for other pages that use the old structure */
.hero-2--centered {
  padding: 15vh 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-2--centered .hero-2-grid {
  display: block;
}

.hero-2--centered .scroll-reveal-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-2--centered .hero-2-text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: var(--black);
}

.hero-2-text {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
}

.hero-2-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-1);
}

.hero-2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-2-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e8e5dd, #d0cdc5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ============================================
   PROCESS / PILLARS - BraveBrand style
   Three items: Authority, Emotion, Leverage
   For us: Purity, Heritage, Transparency
   Large numbered items with descriptions
   ============================================ */
.process {
  padding: var(--space-16) 0;
}

.process-header {
  margin-bottom: var(--space-12);
}

.process-header--centered {
  text-align: center;
}

.process-header--centered h2 {
  margin: 0 auto;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 800px;
}

.process-header-image {
  max-width: 600px;
  margin: var(--space-8) auto 0;
  border-radius: 20px;
  overflow: hidden;
}

.process-header-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.process-tagline {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--black);
  white-space: nowrap;
  text-align: center;
}

.process-tagline em {
  font-style: italic;
  color: var(--secondary);
}

/* Smooth scroll underline */
.tagline-underline {
  position: relative;
  display: inline;
}
.tagline-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.1em;
  height: 3px;
  width: calc(var(--hl, 0) * 100%);
  background: var(--accent);
  border-radius: 2px;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--gray-2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.process-item:last-child {
  border-bottom: 1px solid var(--gray-2);
}

.process-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-3);
  padding-top: 0.5rem;
}

.process-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.process-item:hover .process-title {
  color: var(--accent);
}

.process-desc {
  font-size: var(--text-base);
  color: var(--gray-4);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-item.active .process-desc {
  max-height: 300px;
  opacity: 1;
  padding-top: var(--space-4);
}

.process-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.35em 0.75em;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

/* USP Cards — two-column layout with circle image */
.usp-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: var(--space-10);
  align-items: center;
  border-top: 1px solid var(--gray-2);
  padding: var(--space-10) 0;
}

.usp-card:last-child {
  border-bottom: 1px solid var(--gray-2);
}

.usp-card-content .process-badge {
  margin-top: var(--space-2);
}

.usp-card-content p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--gray-4);
  margin-top: var(--space-2);
}

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --beam-strength {
  syntax: '<number>';
  initial-value: 0;
  inherits: false;
}

.usp-card-image,
.process-header-image {
  --beam-angle: 0deg;
  --beam-light: rgb(175, 200, 170);
  --beam-strong: rgb(145, 185, 140);
  --beam-glow: rgba(100, 160, 100, 0.12);
  border: none;
  background: var(--gray-2);
  flex-shrink: 0;
  transition: padding 1s ease, box-shadow 1.5s ease;
}

.showcase-image,
.showcase-packaging,
.banner-strip {
  --beam-angle: 0deg;
  --beam-light: rgb(175, 200, 170);
  --beam-strong: rgb(145, 185, 140);
  --beam-glow: rgba(100, 160, 100, 0.12);
  border: none;
  background: transparent;
  padding: 0;
  transition: padding 1s ease, box-shadow 1.5s ease;
}

.usp-card-image {
  padding: 3px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.process-header-image {
  padding: 1.5px;
}

.usp-card:hover .usp-card-image {
  padding: 6px;
}

.process-header-image:hover,
.showcase-card:hover .showcase-image,
.showcase-card:hover .showcase-packaging,
.banner-strip:hover {
  padding: 3px;
  background: conic-gradient(
    from var(--beam-angle),
    var(--gray-2) 0%,
    var(--gray-2) 45%,
    var(--beam-light) 62%,
    var(--beam-strong) 75%,
    var(--beam-light) 90%,
    var(--gray-2) 100%
  );
  box-shadow: 0 0 12px 3px var(--beam-glow);
  animation: beam-spin 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes beam-spin {
  0%   { --beam-angle: 0deg; }
  10%  { --beam-angle: 15deg; }
  20%  { --beam-angle: 55deg; }
  30%  { --beam-angle: 120deg; }
  40%  { --beam-angle: 155deg; }
  50%  { --beam-angle: 170deg; }
  60%  { --beam-angle: 195deg; }
  70%  { --beam-angle: 250deg; }
  80%  { --beam-angle: 310deg; }
  90%  { --beam-angle: 340deg; }
  100% { --beam-angle: 360deg; }
}

.usp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.usp-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-1);
}

/* ============================================
   SELECTED WORK / PRODUCTS SHOWCASE
   BraveBrand: Large image cards with overlay text
   ============================================ */
.work {
  padding: var(--space-16) 0;
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.work-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/8;
  background: var(--gray-6);
  transition: transform 0.4s ease;
}

.work-card:hover {
  transform: scale(0.98);
}

.work-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.work-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
}

.work-card-tags {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.work-card-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(74, 158, 107, 0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.work-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.work-card-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  max-width: 70%;
  line-height: 1.2;
}

.work-card-subtitle {
  font-size: var(--text-sm);
  color: var(--gray-4);
  margin-top: var(--space-2);
  max-width: 70%;
}

/* Arrow button on cards - BraveBrand style */
.arrow-btn {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.work-card:hover .arrow-btn {
  background: var(--accent);
  border-color: var(--accent);
}

.arrow-btn svg {
  transition: transform 0.3s ease;
}

.work-card:hover .arrow-btn svg {
  transform: translateX(3px) translateY(-3px);
}

/* ============================================
   SERVICES / EXPERTISE - BraveBrand accordion
   Four services with expandable descriptions
   ============================================ */
.expertise {
  padding: var(--space-16) 0;
}

.expertise-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.expertise-intro h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.expertise-intro-text {
  font-size: var(--text-lg);
  color: var(--gray-4);
  line-height: 1.7;
  align-self: end;
}

.accordion-list {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-top: 1px solid var(--gray-2);
  overflow: hidden;
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--gray-2);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 100%;
  text-align: left;
}

.accordion-header:hover {
  color: var(--accent);
}

.accordion-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding-bottom: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.accordion-body p {
  font-size: var(--text-base);
  color: var(--gray-4);
  line-height: 1.7;
}

.accordion-body h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--black);
}

/* ============================================
   FAQS - BraveBrand style accordion
   ============================================ */
.faqs {
  padding: var(--space-16) 0;
}

.faqs-header {
  margin-bottom: var(--space-10);
}

.faqs-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.faq-item {
  border-top: 1px solid var(--gray-2);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--gray-2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  transition: color 0.3s ease;
  gap: var(--space-6);
}

.faq-question:hover { color: var(--accent); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  max-width: 700px;
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--gray-4);
  line-height: 1.7;
}

/* ============================================
   PRODUCT SHOWCASE
   Two-column card with ingredient + packaging
   ============================================ */
/* Per-card beam colors */
.showcase-card--turmeric .showcase-image,
.showcase-card--turmeric .showcase-packaging {
  --beam-light: rgb(220, 185, 120);
  --beam-strong: rgb(200, 155, 60);
  --beam-glow: rgba(200, 155, 60, 0.15);
}

.showcase-card--butterflypea .showcase-image,
.showcase-card--butterflypea .showcase-packaging {
  --beam-light: rgb(160, 170, 210);
  --beam-strong: rgb(120, 130, 190);
  --beam-glow: rgba(120, 130, 190, 0.15);
}

.showcase-card--rosella .showcase-image,
.showcase-card--rosella .showcase-packaging {
  --beam-light: rgb(210, 160, 170);
  --beam-strong: rgb(190, 120, 135);
  --beam-glow: rgba(190, 120, 135, 0.15);
}

.showcase-card--amla .showcase-image,
.showcase-card--amla .showcase-packaging {
  --beam-light: rgb(180, 200, 150);
  --beam-strong: rgb(140, 170, 100);
  --beam-glow: rgba(140, 170, 100, 0.15);
}

.showcase-card--ginger .showcase-image,
.showcase-card--ginger .showcase-packaging {
  --beam-light: rgb(210, 195, 150);
  --beam-strong: rgb(185, 160, 100);
  --beam-glow: rgba(185, 160, 100, 0.15);
}

.showcase-card--moringaroot .showcase-image,
.showcase-card--moringaroot .showcase-packaging {
  --beam-light: rgb(175, 190, 165);
  --beam-strong: rgb(130, 150, 120);
  --beam-glow: rgba(130, 150, 120, 0.15);
}

.showcase-card--jamu .showcase-image,
.showcase-card--jamu .showcase-packaging {
  --beam-light: rgb(210, 185, 120);
  --beam-strong: rgb(180, 150, 70);
  --beam-glow: rgba(180, 150, 70, 0.15);
}

.product-showcase {
  padding: var(--space-12) 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.showcase-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

/* Left: ingredient image */
.showcase-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.showcase-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.showcase-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-style: italic;
}

.showcase-desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Right: packaging image */
.showcase-packaging {
  border-radius: 14px;
  overflow: hidden;
}

.showcase-packaging img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 809px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase-card-inner {
    gap: var(--space-3);
  }

  .showcase-title {
    font-size: var(--text-base);
  }

  .showcase-desc {
    font-size: 0.65rem;
  }

  .showcase-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* ============================================
   TESTIMONIAL - BraveBrand style
   Large italic quote + author
   ============================================ */
.testimonial {
  position: relative;
  padding: var(--space-20) 0;
  background: #122a1a;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
}

.testimonial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.3);
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: var(--space-8);
}

.testimonial-quote-mark {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-4);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-10);
  quotes: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  justify-content: center;
}

.testimonial-author-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: #ffffff;
  letter-spacing: 0.02em;
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2em;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-6);
  min-height: 1.2em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: #ffffff;
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   CTA SECTION - BraveBrand "Start Learning" style
   ============================================ */
.cta-section {
  padding: var(--space-16) 0;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-5);
}

.cta-inner p {
  font-size: var(--text-lg);
  color: var(--gray-4);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-section {
  padding: var(--space-16) 0;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.blog-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.blog-card-img {
  aspect-ratio: 16/10;
  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-img-placeholder {
  width: 100%;
  height: 100%;
}

.blog-card-body {
  padding: var(--space-5);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.blog-card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.blog-card-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-3);
}

.blog-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-3);
}

.blog-card p {
  font-size: var(--text-sm);
  color: var(--gray-4);
  line-height: 1.6;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.04em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-4);
}

.stats-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
  margin: var(--space-10) auto 0;
}

.stats-cta {
  text-align: center;
  margin-top: var(--space-8);
}

/* ============================================
   FOOTER - BraveBrand style
   ============================================ */
.footer {
  padding: var(--space-12) 0 var(--space-6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--gray-4);
  max-width: 300px;
  margin-top: var(--space-4);
  line-height: 1.6;
}

.footer-col h5 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--black);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--gray-4);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-socials {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.footer-social {
  color: var(--gray-4);
  transition: color 0.3s ease;
}

.footer-social:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-2);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--gray-3);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--gray-2);
  z-index: var(--z-cart);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--gray-2);
}

.cart-header h3 {
  font-size: var(--text-xl);
}

.cart-close {
  color: var(--gray-4);
  transition: color 0.2s;
}

.cart-close:hover { color: var(--black); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5) var(--space-6);
}

.cart-empty {
  text-align: center;
  color: var(--gray-3);
  padding: var(--space-10) 0;
  font-size: var(--text-sm);
}

.cart-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-2);
}

.cart-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--gray-1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-4);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-4);
  transition: all 0.2s;
}

.cart-item-qty button:hover {
  border-color: var(--accent);
  color: var(--white);
}

.cart-item-qty span {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--gray-3);
  transition: color 0.2s;
  align-self: start;
}

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

.cart-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-lg);
  font-weight: 600;
}

.cart-total {
  font-family: var(--font-mono);
  color: var(--accent);
}

/* ============================================
   SCROLL TEXT REVEAL
   BraveBrand effect: text goes from dim to bold
   as user scrolls through it
   ============================================ */
.scroll-reveal-text {
  position: relative;
}

.scroll-word {
  display: inline;
  color: var(--gray-3);
  transition: color 0.15s ease, font-weight 0s;
  font-weight: 600;
}

.scroll-word.revealed {
  color: var(--accent);
}

/* ============================================
   FULL-WIDTH HERO IMAGE SECTION
   ============================================ */
.hero-image-section {
  width: 100%;
  overflow: hidden;
}

.hero-image-full {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   PRODUCT CARDS (for products page)
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.product-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 158, 107, 0.1);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(145deg, #0a1a0f, #1a3a25);
}

.product-card-content {
  padding: var(--space-4);
}

.product-card-cat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-1);
}

.product-card-name {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 2px;
}

.product-card-pills {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-4);
  margin-bottom: var(--space-3);
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-2);
}

.product-card-price {
  font-weight: 700;
  font-size: var(--text-base);
}

.product-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.product-add-btn:hover {
  background: var(--accent-light);
  transform: scale(1.1);
}

/* ============================================
   PRODUCT FILTER
   ============================================ */
.product-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-4);
  padding: 0.45rem 1rem;
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: var(--space-10);
}

.page-hero h1 {
  font-size: var(--text-hero);
  margin-bottom: var(--space-5);
}

.page-hero p {
  font-size: var(--text-xl);
  color: var(--gray-4);
  max-width: 650px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  padding: var(--space-12) 0;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-1);
}

.split-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0a1a0f, #1a3a25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.value-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  padding: var(--space-6);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.value-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--gray-4);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-4);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--black);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

/* ============================================
   BLOG POST PAGE
   ============================================ */
.post {
  max-width: var(--narrow-width);
  margin: 0 auto;
  padding-top: 140px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.post h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-8);
}

.post-body h2 { font-size: var(--text-2xl); margin: var(--space-8) 0 var(--space-4); }
.post-body h3 { font-size: var(--text-xl); margin: var(--space-6) 0 var(--space-3); }
.post-body p { margin-bottom: var(--space-4); line-height: 1.8; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: var(--space-4); }
.post-body li { margin-bottom: var(--space-2); color: var(--gray-4); list-style: disc; }
.post-body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > *:nth-child(2) { transition-delay: 80ms; }
[data-stagger] > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger] > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger] > *:nth-child(5) { transition-delay: 320ms; }
[data-stagger] > *:nth-child(6) { transition-delay: 400ms; }
[data-stagger] > *:nth-child(7) { transition-delay: 480ms; }
[data-stagger] > *:nth-child(8) { transition-delay: 560ms; }

/* Hero entry */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-anim-1 { animation: fadeUp 0.7s ease-out 0.1s both; }
.hero-anim-2 { animation: fadeUp 0.8s ease-out 0.3s both; }
.hero-anim-3 { animation: fadeUp 0.7s ease-out 0.6s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gray-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-4); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   PRODUCTS PAGE - Full product cards
   ============================================ */
.product-grid {
  /* List layout: one horizontal card per row keeps photos modest on desktop */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.product-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45, 138, 78, 0.08);
}

.product-card-image {
  /* Photo fills the full left edge of the card — flush top, left, and bottom */
  align-self: stretch;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-icon {
  font-size: 4rem;
}

.product-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  color: var(--white);
}

.product-card-body {
  padding: var(--space-6);
}

.product-card-category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.product-card-name {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.product-card-desc {
  font-size: var(--text-base);
  color: var(--gray-4);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.product-card-benefits {
  /* Single line of checkmarked benefits (wraps only when space runs out) */
  margin-bottom: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: var(--space-5);
  row-gap: var(--space-2);
}

.product-card-benefits li {
  font-size: var(--text-sm);
  color: var(--gray-5);
  padding-left: 1.2rem;
  position: relative;
}

.product-card-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.product-card-ingredient {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: var(--space-3) var(--space-4);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin-bottom: var(--space-5);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-2);
}

.product-card-price {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--black);
}

.btn--sm {
  font-size: var(--text-sm);
  padding: 0.6rem 1.2rem;
}

/* ============================================
   CONTACT PAGE - Info cards
   ============================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  padding: var(--space-5);
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: var(--accent);
}

.contact-info-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.contact-info-card p {
  font-size: var(--text-sm);
  color: var(--gray-4);
  line-height: 1.6;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a9a85' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================
   BLOG POST - Article layout
   ============================================ */
.blog-post-header {
  padding-top: 140px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-4);
  margin-bottom: var(--space-6);
  transition: color 0.2s;
}

.blog-post-back:hover { color: var(--accent); }

.blog-post-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.blog-post-excerpt {
  font-size: var(--text-lg);
  color: var(--gray-4);
  line-height: 1.6;
  max-width: 640px;
}

.blog-post-hero {
  margin-bottom: var(--space-10);
}

.blog-post-body {
  padding: var(--space-8) 0 var(--space-16);
}

.blog-post-body h2 {
  font-size: var(--text-2xl);
  margin: var(--space-10) 0 var(--space-4);
}

.blog-post-body h2:first-child {
  margin-top: 0;
}

.blog-post-body p {
  font-size: var(--text-base);
  color: var(--gray-5);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.blog-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Brand pages & direct contact channels
   (Selor / Primitiva / Multifarm restructure)
   ============================================ */

/* --- Direct contact channel buttons (Telegram / WhatsApp / Tokopedia) --- */
.channel-btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.channel-btns--center {
  justify-content: center;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.channel-btn svg {
  flex-shrink: 0;
}

.channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}

.channel-btn--telegram { background: #229ED9; }
.channel-btn--whatsapp { background: #25D366; }
.channel-btn--tokopedia { background: #03AC0E; }

/* --- Best-seller line inside brand USP cards (homepage) --- */
.usp-bestsellers {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: var(--space-4) 0;
}

.usp-card-cta {
  margin-top: var(--space-4);
}

/* --- Production sites list (contact page) --- */
.production-sites {
  list-style: none;
  margin: 0;
  padding: 0;
}

.production-sites li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-2);
  font-size: var(--text-sm);
}

.production-sites li:last-child {
  border-bottom: none;
}

.production-sites .site-brand {
  font-weight: 700;
  color: var(--black);
}

.production-sites .site-location {
  color: var(--gray-4);
  text-align: right;
}

/* --- Brand page intro note (bulk powders / bulk quantities) --- */
.brand-note {
  max-width: var(--narrow-width);
  margin: 0 auto;
  padding: var(--space-6);
  background: var(--gray-1);
  border-left: 3px solid var(--accent);
  font-size: var(--text-base);
  color: var(--gray-5);
  line-height: 1.7;
}

/* --- Best sellers grid (homepage, per PDF: 1-2 per brand, linked to brand pages) --- */
.bestsellers-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.bestsellers-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.bestsellers-header p {
  color: var(--gray-4);
  max-width: 560px;
  margin: 0 auto;
}

.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.bestseller-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease;
}

.bestseller-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.12);
}

/* Square frame; lifestyle photos fill it (cover) */
.bestseller-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.bestseller-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

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

/* Packaging shots: show the WHOLE package on a soft studio backdrop (no crop) */
.bestseller-img--pack {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: radial-gradient(120% 100% at 50% 30%, #f1f6ef 0%, #e6efe3 100%);
}

.bestseller-img--pack img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(40, 70, 40, 0.18));
}

/* Jamu gets a warm amber backdrop instead of green */
.bestseller-img--jamu {
  background: radial-gradient(120% 100% at 50% 30%, #faf4e8 0%, #f1e6cf 100%);
}

.bestseller-img--jamu img {
  filter: drop-shadow(0 14px 22px rgba(120, 90, 30, 0.2));
}

/* Packaging renders with baked-in white studio background: contain, no tint */
.bestseller-img--white {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
}

.bestseller-img--white img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bestseller-info {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.bestseller-brand {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.bestseller-info h3 {
  font-size: var(--text-xl);
  margin: var(--space-2) 0;
  color: var(--black);
}

.bestseller-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
}

.bestseller-link::after {
  content: ' →';
}

@media (max-width: 1024px) {
  .bestseller-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* --- Combined Primitiva cards: showcase visual + shop info in one card --- */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.combo-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.combo-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: var(--space-6);
}

.combo-body .product-card-footer {
  margin-top: auto;
}

.showcase-card-inner--single {
  grid-template-columns: 1fr;
}

.showcase-card-inner--single .showcase-image img {
  aspect-ratio: 2 / 1;
}

@media (max-width: 809px) {
  .combo-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* --- Dark header variant (Selor page) — same layout/heights, dark skin --- */
.header--dark .nav-link {
  color: rgba(255, 255, 255, 0.72);
}

.header--dark .nav-link:hover {
  color: #fff;
}

.header--dark .nav-link.active {
  color: #f3af06;
}

.header--dark.scrolled {
  background: rgba(8, 8, 8, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

.header--dark .lang-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.header--dark .lang-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.header--dark .cart-icon {
  color: #fff;
}

.header--dark .menu-btn span {
  background: #fff;
}

.mobile-nav--dark {
  background: #0c0c0c;
}

.mobile-nav--dark .mobile-nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.mobile-nav--dark .mobile-nav-link.active {
  color: #f3af06;
}

/* --- Expandable product details (Multifarm growing-media docs) --- */
.pdetail {
  margin: 0 0 var(--space-4);
  border-top: 1px solid var(--gray-2);
}

.pdetail-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) 0 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.pdetail-summary::-webkit-details-marker { display: none; }

.pdetail-chev {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.pdetail[open] .pdetail-chev { transform: rotate(180deg); }

.pdetail-body {
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pdetail-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pdetail-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-4);
}

.pdetail-block p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-5);
}

.pdetail-analysis {
  font-family: var(--font-mono);
  font-size: var(--text-xs) !important;
  line-height: 1.8 !important;
}

.pdetail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.pdetail-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-4);
  font-weight: 600;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--gray-2);
}

.pdetail-table td {
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--gray-2);
  color: var(--gray-5);
  line-height: 1.5;
  vertical-align: top;
}

.pdetail-table tr:last-child td { border-bottom: none; }

.pdetail-note {
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--gray-4);
}

/* --- Product group section headings (grouped grids) --- */
.product-group-heading {
  margin: var(--space-8) 0 var(--space-2);
}
.product-group-heading:first-child { margin-top: 0; }
.product-group-heading h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
}
.product-group-heading p {
  margin-top: var(--space-1);
  font-size: var(--text-sm);
  color: var(--gray-4);
}

/* Price unit (e.g. "/ 100 g") */
.product-card-unit {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-4);
  letter-spacing: 0;
}

/* --- Language dropdown selector --- */
.lang-select {
  position: relative;
}

.lang-select .lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.lang-chev {
  transition: transform 0.3s ease;
  opacity: 0.6;
}
.lang-select.open .lang-chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: calc(var(--z-nav) + 1);
}

.lang-select.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.8rem;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: var(--text-sm);
  color: var(--gray-5);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover {
  background: var(--gray-1);
  color: var(--black);
}

/* The currently-active language is hidden from the menu (per request:
   trigger shows current, dropdown lists the others) */
.lang-option.active {
  display: none;
}

/* Dark variant (Selor page) */
.header--dark .lang-menu {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.header--dark .lang-option {
  color: rgba(255, 255, 255, 0.7);
}
.header--dark .lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
