/* =============================================
   RESTORE ELECTROLYTES — Main Stylesheet
   ============================================= */

/* --- Fonts (update src paths when you add files to /fonts/) --- */
@font-face {
  font-family: 'BrandHeading';
  src: url('../fonts/heading-font.woff2') format('woff2'),
       url('../fonts/heading-font.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BrandBody';
  src: url('../fonts/body-font.woff2') format('woff2'),
       url('../fonts/body-font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --color-bg:             #FAF7F2;
  --color-primary:        #1E3A4A;
  --color-secondary:      #3D6B35;
  --color-accent-orange:  #E8924A;
  --color-accent-lime:    #A8C038;
  --color-accent-yellow:  #EDD95A;
  --color-text:           #2A2A2A;
  --color-text-light:     #6B7280;
  --color-white:          #FFFFFF;
  --color-card-bg:        #FFFFFF;
  --color-border:         #E5E0D8;
  --color-overlay:        rgba(30, 58, 74, 0.72);

  --font-heading: 'BrandHeading', Georgia, serif;
  --font-body:    'BrandBody', 'Segoe UI', Arial, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm: 0 2px 8px rgba(30, 58, 74, 0.08);
  --shadow-md: 0 6px 24px rgba(30, 58, 74, 0.12);
  --shadow-lg: 0 16px 48px rgba(30, 58, 74, 0.16);

  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* --- 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);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

.section-padding-sm {
  padding: 64px 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 48px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #152b38;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: #d4783a;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-orange);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--color-border);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-accent-lime);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.85rem;
  transition: background var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-accent-orange);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  font-size: 0.9rem;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d5268 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.page-hero .section-label {
  color: var(--color-accent-lime);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 540px;
}

/* =============================================
   HOME — HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2535 0%, #1E3A4A 50%, #243f2e 100%);
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 1;
}

.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-decor-circle:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(232, 146, 74, 0.15) 0%, transparent 70%);
}

.hero-decor-circle:nth-child(2) {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: 30%;
  background: radial-gradient(circle, rgba(168, 192, 56, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-text .section-label {
  color: var(--color-accent-lime);
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--color-accent-orange);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
}

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

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-product-img-wrap {
  position: relative;
  width: 320px;
  height: 420px;
}

.hero-product-img-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 74, 0.2) 0%, transparent 70%);
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
}

.hero-product-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.hero-product-placeholder span {
  font-size: 2.5rem;
}

/* =============================================
   HOME — BENEFITS STRIP
   ============================================= */
.benefits-strip {
  background: var(--color-primary);
  padding: 56px 0;
}

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  position: relative;
  transition: background var(--transition);
}

.benefit-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.benefit-item:last-child::after {
  display: none;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: background var(--transition);
}

.benefit-item:hover .benefit-icon {
  background: var(--color-accent-orange);
}

.benefit-item h3 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =============================================
   HOME — PRODUCT PREVIEW
   ============================================= */
.product-preview {
  background: var(--color-bg);
}

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

.flavor-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.flavor-card-top {
  padding: 40px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.flavor-card-top.lime {
  background: linear-gradient(135deg, #e8f5e2 0%, #f5f9f0 100%);
}

.flavor-card-top.orange {
  background: linear-gradient(135deg, #fdf0e3 0%, #fdf8f2 100%);
}

.flavor-img-wrap {
  width: 130px;
  height: 160px;
  flex-shrink: 0;
}

.flavor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flavor-img-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-text-light);
  font-size: 0.78rem;
}

.flavor-img-placeholder span {
  font-size: 1.8rem;
}

.flavor-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.flavor-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.flavor-tag.lime {
  background: rgba(168, 192, 56, 0.15);
  color: #5a7a00;
}

.flavor-tag.orange {
  background: rgba(232, 146, 74, 0.15);
  color: #c0601a;
}

.flavor-card-info p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.flavor-card-bottom {
  padding: 20px 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--color-border);
}

.flavor-weight {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: var(--color-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-lime), var(--color-accent-orange));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.step-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.step-item p {
  font-size: 0.9rem;
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-badges {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2d5228 100%);
  padding: 56px 0;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.badge-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.badge-item span:last-child {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3040 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 74, 0.12) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

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

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 16px;
}

.product-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card.coming-soon {
  opacity: 0.65;
  cursor: default;
}

.product-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.product-img-area {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.product-img-area.lime-bg {
  background: linear-gradient(135deg, #e4f2d8, #f2f8ec);
}

.product-img-area.orange-bg {
  background: linear-gradient(135deg, #fbe8d2, #fdf4eb);
}

.product-img-area.neutral-bg {
  background: linear-gradient(135deg, #f0eee8, #f8f6f2);
}

.product-img-area img {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.product-img-placeholder {
  width: 120px;
  height: 160px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 0.8rem;
  text-align: center;
}

.product-img-placeholder span {
  font-size: 2rem;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
}

.product-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-card-header h3 {
  font-size: 1.3rem;
}

.product-desc {
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.product-benefits {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 500;
}

.product-benefit::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-meta-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-bg);
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.product-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* --- Buy Now Button & Popup --- */
.buy-now-wrap {
  position: relative;
}

.btn-buy-now {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-buy-now:hover {
  background: #152b38;
  transform: translateY(-1px);
}

.buy-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}

.buy-popup.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.buy-popup-label {
  padding: 10px 16px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.buy-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.buy-option:hover {
  background: var(--color-bg);
}

.buy-option-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.buy-option.amazon .buy-option-icon {
  background: #FF9900;
  color: #131921;
}

.buy-option.flipkart .buy-option-icon {
  background: #2874f0;
  color: var(--color-white);
}

.buy-option-arrow {
  margin-left: auto;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
  background: var(--color-bg);
}

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

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f0ea, #f0f5f1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.about-img-placeholder span {
  font-size: 3rem;
}

.about-story-text .section-title {
  margin-bottom: 20px;
}

.about-story-text p {
  margin-bottom: 16px;
}

.about-mission {
  background: var(--color-white);
}

.mission-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a4d60 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 14rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
}

.mission-box h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.mission-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.about-pillars {
  background: var(--color-bg);
}

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

.pillar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.pillar-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--color-bg);
}

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

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-socials-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

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

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.contact-social-link:hover {
  background: var(--color-accent-orange);
  transform: translateY(-2px);
}

/* --- Contact Form --- */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-card > p {
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 74, 0.08);
  background: var(--color-white);
}

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

.form-group.error input,
.form-group.error textarea {
  border-color: #e05252;
}

.form-error-msg {
  font-size: 0.8rem;
  color: #e05252;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-error-msg {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-story-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
  .section-padding-sm { padding: 48px 0; }

  .nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 48px;
    text-align: center;
  }

  .hero-text p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }

  .hero-product-img-wrap {
    width: 220px;
    height: 290px;
  }

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

  .benefit-item::after { display: none; }

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

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

  .steps-grid::before { display: none; }

  .badges-row { gap: 32px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-img {
    height: 280px;
    order: -1;
  }

  .mission-box {
    padding: 40px 24px;
  }

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

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

  .contact-form-card {
    padding: 32px 24px;
  }

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

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .btn { padding: 12px 24px; font-size: 0.9rem; }

  .hero-product-img-wrap {
    width: 180px;
    height: 236px;
  }

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

  .hero-actions .btn { width: 100%; justify-content: center; }

  .flavor-card-top {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px 20px;
  }

  .flavor-img-wrap {
    width: 110px;
    height: 136px;
  }

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

  .buy-popup {
    bottom: auto;
    top: calc(100% + 8px);
  }
}
