/* ============================================================
   TAK PHARMA — Core stylesheet (Premium V2)
   Tokens · reset · typography · buttons · header · footer · home
   Saffron-forward, premium, mobile-first.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --forest:    #1B4332;
  --forest-d:  #0F271D;
  --moss:      #2D6A4F;
  --fern:      #52B788;
  --fern-soft: #E8F2EC;

  /* Saffron (primary accent) */
  --saffron:   #F4882A;
  --saffron-d: #C96A12;   /* accessible on white */
  --saffron-l: #FDEBD8;
  --saffron-glow: rgba(244,136,42,0.35);
  --turmeric:  #C9991A;

  /* Surfaces */
  --bg:        #FFFFFF;
  --cream:     #FDF6E3;
  --sand:      #FAF1DE;
  --paper:     #FBFAF7;
  --dust:      #EDE0C4;
  --line:      #ECE7DA;
  --line-soft: #F2EEE4;

  /* Ink */
  --ink:       #1C2A22;
  --bark:      #5C3D1E;
  --muted:     #66716A;
  --white:     #FFFFFF;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --container: 1240px;
  --container-narrow: 880px;
  --header-h: 64px;

  /* Spacing */
  --space-section: clamp(1.5rem, 5vw, 4.5rem);

  /* Radius */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(27,67,50,0.05);
  --shadow-sm: 0 4px 14px rgba(27,67,50,0.07);
  --shadow:    0 14px 36px rgba(27,67,50,0.12);
  --shadow-lg: 0 28px 64px rgba(27,67,50,0.18);
  --shadow-saffron: 0 12px 28px var(--saffron-glow);

  --transition: 0.25s ease;
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; color: var(--forest); font-weight: 700; }

::selection { background: var(--saffron); color: #fff; }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }

/* Hide legacy Elementor / Astra chrome if plugins still active */
body.tak-pharma-theme .site-header,
body.tak-pharma-theme .site-footer,
body.tak-pharma-theme #masthead,
body.tak-pharma-theme #colophon,
body.tak-pharma-theme .elementor-location-header,
body.tak-pharma-theme .elementor-location-footer { display: none !important; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: var(--space-section) 0; }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 2.75rem; }
.section-head h2 {
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); margin-top: 0.85rem; font-size: 1.02rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-d);
}
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--saffron); }
.section-label--center { justify-content: center; }
.section-label--light { color: var(--saffron); }
.section-label--light::before { background: var(--saffron); }
.section-label--gold { color: var(--turmeric); }
.section-label--gold::before { background: var(--turmeric); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.9rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-saffron { background: var(--saffron); color: #fff; border-color: var(--saffron); box-shadow: var(--shadow-saffron); }
.btn-saffron:hover { background: var(--saffron-d); border-color: var(--saffron-d); box-shadow: 0 16px 32px var(--saffron-glow); }

.btn-forest { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-forest:hover { background: var(--forest-d); border-color: var(--forest-d); }

.btn-outline-white { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--forest); border-color: #fff; }

.btn-outline-forest { background: transparent; color: var(--forest); border-color: rgba(27,67,50,0.3); }
.btn-outline-forest:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.02rem; min-height: 54px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1001;
}
.announcement-bar strong { color: var(--saffron); font-weight: 700; }

/* ============================================================
   HEADER / NAV (solid)
   ============================================================ */
.tp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.tp-nav.scrolled { box-shadow: var(--shadow-sm); }

/* Fix for WordPress Admin Bar Overlap */
.admin-bar .tp-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .tp-nav { top: 46px; }
}

.tp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.25rem;
}

.tp-nav__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.tp-nav__logo img { height: 44px; width: auto; }

.tp-nav__links { display: flex; align-items: center; gap: 0.15rem; margin: 0 auto; }
.tp-nav__links a,
.tp-nav__links .menu-item a {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}
.tp-nav__links a:hover,
.tp-nav__links .menu-item a:hover,
.tp-nav__links .current-menu-item > a { color: var(--saffron-d); background: var(--saffron-l); }

.tp-nav__actions { display: flex; align-items: center; gap: 0.2rem; flex-shrink: 0; }
.tp-nav__icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.tp-nav__icon-btn:hover { background: var(--saffron-l); color: var(--saffron-d); }
.tp-nav__icon-btn svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.tp-cart-badge {
  position: absolute;
  top: 3px; right: 3px;
  background: var(--saffron);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
}
.tp-cart-badge--empty[hidden] { display: none !important; }

.tp-nav__hamburger { display: none; }

/* Search panel */
.tp-search-panel {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.tp-search-panel.open { max-height: 140px; padding: 1.1rem 0; }
.tp-search-panel form { display: flex; gap: 0.6rem; max-width: 680px; margin: 0 auto; }
.tp-search-panel input[type="search"],
.tp-search-panel input[type="text"] {
  flex: 1; border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.85rem 1.25rem; font-size: 1rem; font-family: var(--font-body); background: var(--paper);
}
.tp-search-panel input:focus { border-color: var(--saffron); outline: none; }
.tp-search-panel button[type="submit"] {
  border: none; background: var(--saffron); color: #fff; border-radius: var(--radius-pill);
  padding: 0 1.6rem; font-weight: 600; cursor: pointer; transition: background var(--transition);
}
.tp-search-panel button[type="submit"]:hover { background: var(--saffron-d); }

/* ---------- Mobile drawer ---------- */
.tp-drawer { position: fixed; inset: 0; z-index: 2000; pointer-events: none; }
.tp-drawer__overlay { position: absolute; inset: 0; background: rgba(15,39,29,0.55); opacity: 0; transition: opacity 0.3s ease; }
.tp-drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(360px, 88vw); height: 100%;
  background: #fff;
  padding: 1.25rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.tp-drawer.open { pointer-events: all; }
.tp-drawer.open .tp-drawer__overlay { opacity: 1; }
.tp-drawer.open .tp-drawer__panel { transform: translateX(0); }
.tp-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.tp-drawer__head img { height: 38px; }
.tp-drawer__close { background: none; border: none; color: var(--forest); cursor: pointer; padding: 0.25rem; }
.tp-drawer__close svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.tp-drawer__search { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.tp-drawer__search input { flex: 1; border: 1.5px solid var(--line); border-radius: var(--radius-pill); padding: 0.75rem 1rem; font-family: var(--font-body); background: var(--paper); }
.tp-drawer__search button { border: none; background: var(--forest); color: #fff; border-radius: var(--radius-pill); padding: 0 1.1rem; cursor: pointer; min-width: 48px; }
.tp-drawer__links { display: flex; flex-direction: column; }
.tp-drawer__links li a,
.tp-drawer__links .menu-item a {
  display: block; color: var(--ink); font-size: 1.08rem; font-weight: 500;
  padding: 1rem; margin: 0 -1rem; border-bottom: 1px solid var(--line-soft);
  transition: color var(--transition), padding-left var(--transition), background var(--transition);
}
.tp-drawer__links li a:hover,
.tp-drawer__links .menu-item a:hover { color: var(--saffron-d); padding-left: 1.4rem; background: var(--paper); }

/* ============================================================
   HERO (image background)
   ============================================================ */
.hero {
  position: relative;
  background: var(--forest) url('../img/hero-bg.jpg') center right / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,39,29,0.92) 0%, rgba(15,39,29,0.72) 38%, rgba(15,39,29,0.18) 64%, rgba(253,246,227,0.05) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.hero__text { display: flex; flex-direction: column; gap: 1.3rem; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem; align-self: flex-start;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: var(--radius-pill);
}
.hero__headline {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -0.015em;
}
.hero__headline span { display: block; color: var(--saffron); font-style: italic; }
.hero__sub { color: rgba(255,255,255,0.82); font-size: clamp(1rem, 2.4vw, 1.12rem); max-width: 480px; line-height: 1.7; }
.hero__ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.4rem; }
.hero__trust { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.6rem; }
.hero__trust-stars { color: var(--saffron); font-size: 1rem; letter-spacing: 0.08em; }
.hero__trust-text { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }
.hero__trust-text strong { color: #fff; }
.hero__pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.hero__pill {
  padding: 0.4rem 0.95rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 0.76rem; font-weight: 500;
}

/* Hero product */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__visual::before {
  content: ''; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--saffron-glow), transparent 68%);
  filter: blur(4px);
}
.hero__img {
  position: relative; z-index: 2; width: 100%; max-width: 400px;
  background: #fff; border-radius: var(--radius-lg); padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.hero__img img { width: 100%; height: auto; border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: -0.75rem; left: -0.75rem; z-index: 4;
  background: #fff; border-radius: var(--radius); padding: 0.8rem 1.05rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.6rem;
}
.hero__badge-stars { color: var(--saffron); font-size: 0.82rem; letter-spacing: 0.05em; }
.hero__badge-text { font-size: 0.74rem; color: var(--muted); font-weight: 500; line-height: 1.4; }
.hero__badge-text strong { display: block; color: var(--forest); font-weight: 700; font-size: 0.88rem; }

/* ============================================================
   TRUST STRIP (marquee, saffron)
   ============================================================ */
.trust-strip { background: var(--saffron); padding: 0.85rem 0; overflow: hidden; }
.trust-strip__track { display: flex; align-items: center; animation: marquee 34s linear infinite; width: max-content; }
.trust-strip__item {
  display: flex; align-items: center; gap: 0.55rem;
  color: #fff; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em;
  white-space: nowrap; padding: 0 2rem;
}
.trust-strip__item span { font-size: 1.05rem; }
.trust-strip__dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.7); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CATEGORIES (kept for shop use; not on home)
   ============================================================ */
.categories { padding: var(--space-section) 0; background: var(--bg); }
.categories__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  padding: 1.6rem 0.85rem 1.4rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.cat-card:hover { border-color: transparent; background: #fff; box-shadow: var(--shadow); transform: translateY(-5px); }
.cat-card__icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--saffron-l);
  display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}
.cat-card__icon img { width: 44px; height: 44px; object-fit: contain; }
.cat-card__name { font-family: var(--font-display); font-size: 0.94rem; font-weight: 700; color: var(--forest); line-height: 1.3; }
.cat-card__arrow { font-size: 0.74rem; color: var(--saffron-d); font-weight: 600; opacity: 0; transform: translateY(-4px); transition: opacity var(--transition), transform var(--transition); }
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRODUCT CARD (shared)
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; list-style: none; margin: 0; padding: 0; }

.prod-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.prod-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.prod-card__img { aspect-ratio: 1 / 1; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--paper), var(--saffron-l)); }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease, transform 0.5s ease; mix-blend-mode: multiply; }
.prod-card__img img.img-hover { position: absolute; inset: 0; opacity: 0; }
.prod-card:hover .img-hover { opacity: 1; }
.prod-card:hover .img-primary { opacity: 0; }
.prod-card:hover .prod-card__img img { transform: scale(1.04); }
.prod-card__badge {
  position: absolute; top: 0.7rem; left: 0.7rem; padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; z-index: 2;
}
.badge-sale { background: var(--saffron); color: #fff; }
.badge-new  { background: var(--forest); color: #fff; }
.prod-card__body { padding: 0.95rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.prod-card__cat { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron-d); }
.prod-card__name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--forest); line-height: 1.25; }
.prod-card__tagline { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }
.prod-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.8rem; gap: 0.5rem; }
.prod-card__price { font-size: 0.98rem; font-weight: 700; color: var(--forest); }
.prod-card__price del { color: var(--muted); font-weight: 400; font-size: 0.82rem; margin-right: 0.3rem; }
.prod-card__price ins { text-decoration: none; color: var(--saffron-d); }
.prod-card__link {
  color: #fff; background: var(--forest); width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.prod-card:hover .prod-card__link { background: var(--saffron); transform: rotate(-45deg); }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured { background: var(--paper); padding: var(--space-section) 0; }

/* ============================================================
   BESTSELLER SPOTLIGHT (editorial)
   ============================================================ */
.bestseller { padding: var(--space-section) 0; background: var(--bg); }
.bestseller__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.bestseller__media {
  position: relative; min-height: 460px;
  background: var(--saffron) url('../img/bestseller-bg.jpg') center / cover no-repeat;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.bestseller__media img { position: relative; z-index: 1; max-width: 78%; height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.3)); }
.bestseller__body { background: var(--forest); color: #fff; padding: clamp(1.25rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
.bestseller__body h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.bestseller__body p { color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 460px; }
.bestseller__stats { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.bestseller__stat { font-size: 0.8rem; font-weight: 600; color: var(--saffron); }
.bestseller__stat + .bestseller__stat { padding-left: 1.2rem; border-left: 1px solid rgba(255,255,255,0.2); }
.bestseller__price { font-size: 1.4rem; font-weight: 700; color: #fff; }
.bestseller__price span { color: var(--saffron); }

/* Legacy indigo banner (alias to bestseller look if used) */
.indigo-banner { display: grid; grid-template-columns: 1fr 1fr; background: var(--forest); color: #fff; overflow: hidden; border-radius: var(--radius-lg); }
.indigo-banner__img { position: relative; min-height: 420px; }
.indigo-banner__img img { width: 100%; height: 100%; object-fit: cover; }
.indigo-banner__text { padding: clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
.indigo-banner__text h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
.indigo-banner__text p { color: rgba(255,255,255,0.78); max-width: 460px; line-height: 1.75; }
.indigo-banner__stats { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.indigo-stat { font-size: 0.8rem; font-weight: 600; color: var(--saffron); }
.indigo-stat + .indigo-stat { padding-left: 1.2rem; border-left: 1px solid rgba(255,255,255,0.18); }

/* ============================================================
   STORY — farm to ritual
   ============================================================ */
.story { padding: var(--space-section) 0; background: var(--cream) url('../img/leaf-texture.jpg') center / cover; }
.story__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.story-step {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(2px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.25rem 1.75rem; text-align: center;
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.story-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.story-step__icon {
  width: 78px; height: 78px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: var(--saffron-l); display: flex; align-items: center; justify-content: center;
}
.story-step__icon svg { width: 40px; height: 40px; stroke: var(--saffron-d); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.story-step__num {
  position: absolute; top: 1rem; right: 1.2rem; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--saffron-l);
}
.story-step h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 0.5rem; }
.story-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   WHY US
   ============================================================ */
.why { padding: var(--space-section) 0; background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.7rem; transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.why-card__icon { width: 58px; height: 58px; border-radius: 14px; background: var(--saffron-l); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.1rem; }
.why-card__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); margin-bottom: 0.55rem; }
.why-card__text { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: var(--space-section) 0; background: var(--paper); }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 0.9rem;
  box-shadow: var(--shadow-xs);
}
.testi-card__stars { color: var(--saffron); letter-spacing: 0.08em; }
.testi-card__quote { color: var(--ink); line-height: 1.7; font-size: 0.96rem; }
.testi-card__author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--fern-soft); color: var(--forest);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display);
}
.testi-card__name { font-weight: 700; color: var(--forest); font-size: 0.9rem; }
.testi-card__role { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   NEW ARRIVALS
   ============================================================ */
.new-arrivals { padding: var(--space-section) 0; background: var(--bg); }
.new-arrivals__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.25rem; gap: 1rem; }
.new-arrivals__head h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); margin-top: 0.4rem; }
.new-arrivals__head a { font-size: 0.88rem; font-weight: 600; color: var(--saffron-d); display: inline-flex; align-items: center; gap: 0.3rem; flex-shrink: 0; white-space: nowrap; }
.new-arrivals__head a:hover { color: var(--saffron); }

/* ============================================================
   SOCIAL CTA
   ============================================================ */
.ig-cta { background: var(--forest); padding: var(--space-section) 1.25rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.ig-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(244,136,42,0.22), transparent 60%); }
.ig-cta > * { position: relative; z-index: 1; }
.ig-cta__handle { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.4rem); font-style: italic; margin: 0.6rem 0 1rem; color: #fff; }
.ig-cta__handle span { color: var(--saffron); }
.ig-cta p { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 540px; margin: 0 auto 1.6rem; }
.ig-cta__btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--saffron); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.95rem 2.1rem; border-radius: var(--radius-pill);
  transition: background var(--transition), transform 0.15s ease; box-shadow: var(--shadow-saffron);
}
.ig-cta__btn:hover { background: var(--saffron-d); transform: translateY(-2px); }
.ig-cta__note { margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   FOOTER
   ============================================================ */
.tp-footer { background: var(--forest-d); color: rgba(255,255,255,0.72); padding: clamp(1.25rem, 3vw, 2.5rem) 0 0; }
.tp-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.tp-footer__logo {
  margin-bottom: 1.1rem;
}
.tp-footer__logo img { width: auto; height: 44px; display: block; border-radius: var(--radius-sm); }
.tp-footer__tagline { font-size: 0.86rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.35rem; }
.tp-footer__socials { display: flex; gap: 0.6rem; }
.tp-footer__social {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.tp-footer__social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.tp-footer__social:hover { border-color: var(--saffron); color: #fff; background: var(--saffron); transform: translateY(-2px); }
.tp-footer h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.tp-footer ul { display: flex; flex-direction: column; gap: 0.65rem; }
.tp-footer ul a { font-size: 0.88rem; color: rgba(255,255,255,0.66); transition: color var(--transition), padding-left var(--transition); }
.tp-footer ul a:hover { color: var(--saffron); padding-left: 0.25rem; }
.tp-footer__contact-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.86rem; color: rgba(255,255,255,0.66); margin-bottom: 0.85rem; }
.tp-footer__contact-item > span:first-child { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 20px; height: 20px; color: var(--saffron); margin-top: 2px; }
.tp-footer__contact-item > span:first-child svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.tp-footer__contact-item a { color: rgba(255,255,255,0.66); transition: color var(--transition); }
.tp-footer__contact-item a:hover { color: var(--saffron); }
.tp-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.35rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 0.75rem; }
.tp-footer__bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.tp-footer__bottom-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.tp-footer__bottom-links a:hover { color: var(--saffron); }
.tp-footer__pay { display: flex; align-items: center; gap: 0.5rem; }
.tp-footer__pay span { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.tp-footer__pay strong { color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.82rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-fade.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .anim-fade { opacity: 1; transform: none; transition: none; }
  .trust-strip__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE  (desktop refinements down to mobile-first base)
   ============================================================ */
@media (max-width: 1100px) {
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .tp-footer__grid { grid-template-columns: 1fr 1fr; }
  .story__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testi__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .tp-nav__links { display: none; }
  .tp-nav__hamburger { display: flex; }
  .tp-nav__inner { height: 64px; }
  .hero::before { background: linear-gradient(180deg, rgba(15,39,29,0.86) 0%, rgba(15,39,29,0.78) 100%); }
  .hero__inner { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem 0 2rem; text-align: center; }
  .hero__eyebrow { align-self: center; }
  .hero__ctas, .hero__trust, .hero__pills { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img { max-width: 260px; }
  .hero__badge { display: none; }
  .bestseller__inner { grid-template-columns: 1fr; }
  .bestseller__media { min-height: 240px; }
  .indigo-banner { grid-template-columns: 1fr; }
  .indigo-banner__img { min-height: 240px; }
  .why__grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .announcement-bar { padding: 0.3rem 0.5rem; font-size: 0.7rem; line-height: 1.35; }
  .tp-nav__inner { height: 50px; }
  .tp-nav__logo img { height: 32px; width: auto; }
  .container { padding: 0 0.75rem; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  
  /* Footer Mobile UX Optimization */
  .tp-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 1.5rem; }
  .tp-footer > .container > .tp-footer__grid > div:nth-child(2),
  .tp-footer > .container > .tp-footer__grid > div:nth-child(3) { display: none; }
  .tp-footer > .container > .tp-footer__grid > div:first-child { display: grid; grid-template-columns: auto 1fr; gap: 0 1rem; align-items: center; }
  .tp-footer__logo { margin-bottom: 0 !important; }
  .tp-footer__logo img { height: 42px; }
  .tp-footer__tagline { font-size: 0.75rem; line-height: 1.4; margin-bottom: 0; max-width: none; }
  .tp-footer__socials { grid-column: 1 / -1; margin-top: 1rem; }
  .tp-footer__social { width: 36px; height: 36px; }
  .tp-footer__social svg { width: 16px; height: 16px; }
  .tp-footer h4 { margin-bottom: 0.75rem; font-size: 0.75rem; }
  .tp-footer__contact-item { font-size: 0.8rem; margin-bottom: 0.5rem; gap: 0.5rem; }
  .tp-footer__bottom { flex-direction: column; text-align: center; gap: 0.5rem; padding: 1rem 0; font-size: 0.75rem; }
  .tp-footer__bottom-links { justify-content: center; gap: 0.75rem; }
  .tp-footer__pay span { font-size: 0.65rem; }
  .tp-footer__pay strong { font-size: 0.75rem; }

  .new-arrivals__head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .hero__ctas { width: 100%; flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .prod-card__body { padding: 0.5rem 0.5rem 0.75rem; gap: 0.15rem; }
  .prod-card__cat { font-size: 0.55rem; }
  .prod-card__name { font-size: 0.85rem; line-height: 1.2; }
  .prod-card__tagline { display: none; }
  .prod-card__link { display: none; }
  .prod-card__footer { padding-top: 0.4rem; }
  .prod-card__price { font-size: 0.82rem; line-height: 1.2; }
  .prod-card__price del { font-size: 0.7rem; }

  /* Custom Global Rule for Chat Plugins (Mobile) */
  .njt-wa-btn, .joinchat, .ht-ctc-chat, .qlwapp, .wa-chat-box, .wa-chat-widget, .chatapp-widget, #tawk-mcb, iframe#tawkchat-minified-iframe-element, .wa__btn_popup, [id*='whatsapp'], [class*='whatsapp'] {
    transform: scale(0.75) !important;
    transform-origin: bottom right !important;
    margin-bottom: env(safe-area-inset-bottom, 10px) !important;
  }
}



 / *   C u s t o m   G l o b a l   R u l e   f o r   C h a t   P l u g i n s   ( M o b i l e )   * / 
 @ m e d i a   ( m a x - w i d t h :   6 0 0 p x )   { 
     . n j t - w a - b t n ,   . j o i n c h a t ,   . h t - c t c - c h a t ,   . q l w a p p ,   . w a - c h a t - b o x ,   . w a - c h a t - w i d g e t ,   . c h a t a p p - w i d g e t ,   # t a w k - m c b ,   i f r a m e # t a w k c h a t - m i n i f i e d - i f r a m e - e l e m e n t ,   . w a _ _ b t n _ p o p u p ,   [ i d * = ' w h a t s a p p ' ] ,   [ c l a s s * = ' w h a t s a p p ' ]   { 
         t r a n s f o r m :   s c a l e ( 0 . 7 5 )   ! i m p o r t a n t ; 
         t r a n s f o r m - o r i g i n :   b o t t o m   r i g h t   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   e n v ( s a f e - a r e a - i n s e t - b o t t o m ,   1 0 p x )   ! i m p o r t a n t ; 
     } 
 }  
 