/* ================= Miss Chemist — Design System ================= */
:root {
  --lemon: #ffd60a;
  --lemon-deep: #f5b700;
  --teal: #0e8074;
  --teal-deep: #0a4f49;
  --green: #3bb273;
  --orange: #ff8a3d;
  --ink: #16302b;
  --muted: #5b6b66;
  --cream: #fffdf4;
  --paper: #ffffff;
  --line: rgba(14, 128, 116, 0.14);
  --shadow: 0 24px 60px -20px rgba(10, 79, 73, 0.28);
  --shadow-sm: 0 10px 30px -12px rgba(10, 79, 73, 0.25);
  --radius: 22px;
  --maxw: 1180px;
  --font-h: "Poppins", sans-serif;
  --font-b: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, #fff6c9 0%, transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, #e6f6f1 0%, transparent 55%),
    var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-h);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
section {
  position: relative;
  z-index: 2;
}

.grad {
  background: linear-gradient(
    100deg,
    var(--teal) 0%,
    var(--green) 55%,
    var(--lemon-deep) 110%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lemon-deep);
  border-radius: 2px;
}
.kicker.light {
  color: #fff;
}
.kicker.light::before {
  background: var(--lemon);
}

/* ================= 3D canvas ================= */
#bottle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 54px);
  transition: 0.35s;
}
.nav.scrolled {
  background: rgba(255, 253, 244, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -18px rgba(10, 79, 73, 0.4);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark .brand-fallback {
  display: none;
}
.brand-mark.no-img {
  background: linear-gradient(150deg, var(--lemon), var(--lemon-deep));
  box-shadow: 0 8px 20px -8px rgba(245, 183, 0, 0.7);
}
.brand-mark.no-img .brand-fallback {
  display: grid;
  place-items: center;
}
.nav.scrolled .brand-mark {
  width: 48px;
  height: 48px;
}
.footer-brand .brand-mark {
  width: 64px;
  height: 64px;
  background: #fff;
  padding: 4px;
}
.footer-brand .brand-mark.no-img {
  background: linear-gradient(150deg, var(--lemon), var(--lemon-deep));
}
.brand-text {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.05;
  color: var(--teal-deep);
  display: flex;
  flex-direction: column;
}
.brand-text .brand-name {
  white-space: nowrap;
}
.brand-text b {
  font-weight: 800;
  color: var(--teal);
}
.brand-text small {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: 12px;
  transition: 0.2s;
}
.nav-links a:hover {
  color: var(--teal);
  background: rgba(14, 128, 116, 0.08);
}
.nav-cta {
  background: var(--teal);
  color: #fff !important;
}
.nav-cta:hover {
  background: var(--teal-deep) !important;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: 0.3s;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 40px;
  cursor: pointer;
  border: 0;
  transition: 0.25s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--teal), var(--green));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(14, 128, 116, 0.6);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -10px rgba(14, 128, 116, 0.7);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-deep);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: #fff;
  transform: translateY(-3px);
}
.btn.full {
  width: 100%;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px clamp(18px, 5vw, 54px) 80px;
  position: relative;
}
.hero-inner {
  max-width: 640px;
  flex: 1 1 420px;
  min-width: 0;
  position: relative;
  z-index: 3;
}
.eyebrow {
  display: inline-block;
  background: rgba(255, 214, 10, 0.25);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(245, 183, 0, 0.4);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.hero-badges b {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1.1;
}
.hero-badges span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero-bubbles::before,
.hero-bubbles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}
.hero-bubbles::before {
  width: 120px;
  height: 120px;
  right: 14%;
  top: 26%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 214, 10, 0.5));
  animation: float1 9s ease-in-out infinite;
}
.hero-bubbles::after {
  width: 70px;
  height: 70px;
  right: 34%;
  top: 60%;
  background: radial-gradient(
    circle at 30% 30%,
    #fff,
    rgba(59, 178, 115, 0.45)
  );
  animation: float1 7s ease-in-out infinite reverse;
}
@keyframes float1 {
  50% {
    transform: translateY(-26px);
  }
}

/* Static hero product showcase — always visible on the right side of the
   hero (guaranteed, no JS/WebGL dependency). The floating 3D bottle fades
   in starting from the About section onward on wide screens, so the two
   never compete for the same space. */
.hero-visual {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: min(420px, 42vw);
  z-index: 2;
}
.hero-visual-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.4),
    rgba(255, 214, 10, 0) 70%
  );
  filter: blur(4px);
}
.hero-visual-img {
  position: relative;
  max-width: 280px;
  width: 70%;
  height: auto;
  filter: drop-shadow(0 24px 26px rgba(10, 79, 73, 0.22));
}
.hero-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--teal-deep);
  padding: 9px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.hero-chip.chip-top {
  top: 8%;
  right: 2%;
}
.hero-chip.chip-bottom {
  bottom: 10%;
  left: -4%;
}

/* Product lineup variant — a wide basket photo of the full range, so it
   needs a much wider container and a softer, wider glow behind it. Chips
   sit just outside the busy composition instead of over the bottles. */
.hero-visual-lineup {
  width: min(560px, 48vw);
}
.hero-visual-lineup .hero-visual-glow {
  width: 420px;
  height: 340px;
  background: radial-gradient(
    ellipse,
    rgba(255, 214, 10, 0.35),
    rgba(255, 214, 10, 0) 70%
  );
}
.hero-visual-lineup .hero-visual-img {
  max-width: 560px;
  width: 100%;
  filter: drop-shadow(0 22px 24px rgba(10, 79, 73, 0.2));
}
.hero-visual-lineup .hero-chip.chip-top {
  top: -16%;
  right: -2%;
}
.hero-visual-lineup .hero-chip.chip-bottom {
  bottom: -12%;
  left: 2%;
}

/* ================= MARQUEE ================= */
.marquee {
  background: linear-gradient(100deg, var(--teal), var(--teal-deep));
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  animation: scrollx 24s linear infinite;
}
.marquee-track span {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.marquee-track i {
  color: var(--lemon);
  font-style: normal;
  font-size: 1.3rem;
}
@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* ================= Section head ================= */
.section-head {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-top: 16px;
}
.section-sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ================= ABOUT ================= */
.about {
  padding: 100px clamp(18px, 5vw, 54px) 60px;
}
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-copy p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.06rem;
}
.about-copy b {
  color: var(--ink);
}
.about-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.about-list li:first-child {
  padding-top: 0;
}
.about-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.about-ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(14, 128, 116, 0.08);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.about-list li b {
  display: block;
  font-family: var(--font-h);
  font-size: 0.96rem;
  color: var(--ink);
  margin-bottom: 1px;
}
.about-list li p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Brand visual — just the logo with a soft glow behind it, no card frame. */
.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.about-visual-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.35),
    rgba(255, 214, 10, 0) 70%
  );
  filter: blur(4px);
}
.about-visual-img {
  position: relative;
  max-width: 320px;
  width: 85%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(10, 79, 73, 0.18));
}
.about-visual .emblem-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  color: var(--teal);
  font-family: var(--font-h);
  font-weight: 800;
}
.about-visual.no-img .emblem-fallback {
  display: flex;
}

/* Founder spotlight — a personal quote card for a genuine "meet the
   founder" feel, instead of a plain stats strip. */
.founder-spotlight {
  max-width: var(--maxw);
  margin: 64px auto 0;
  background: linear-gradient(125deg, var(--teal), var(--teal-deep));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px clamp(24px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
}
.founder-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.9rem;
  flex: 0 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.25);
}
.founder-label {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: 12px;
}
.founder-content blockquote {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.founder-name-row b {
  display: block;
  font-family: var(--font-h);
  font-size: 1.02rem;
}
.founder-name-row span {
  font-size: 0.84rem;
  opacity: 0.85;
}

/* ================= PRODUCTS ================= */
.products {
  padding: 60px clamp(18px, 5vw, 54px) 100px;
}
.product-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(14, 128, 116, 0.35);
}
.product-card.featured {
  border: 2px solid var(--lemon-deep);
  background: linear-gradient(180deg, #fffdf0, #fff);
}
.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lemon);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}
.product-visual {
  position: relative;
  height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 16px;
}
.product-visual::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.22),
    rgba(255, 214, 10, 0) 72%
  );
  filter: blur(2px);
}
.size-chip {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.product-card p {
  color: var(--muted);
  font-size: 0.94rem;
  min-height: 44px;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--teal);
}
.mini-btn {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 20px;
  transition: 0.2s;
  white-space: nowrap;
}
.mini-btn:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
}
.product-card a.product-visual,
.product-card a.product-visual:hover {
  color: inherit;
}
.product-card h3 a {
  color: inherit;
}

/* Real product photo cards */
.product-photo {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(10, 79, 73, 0.2));
  transition: 0.4s;
}
.product-card:hover .product-photo {
  transform: translateY(-6px) scale(1.03);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-now {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--teal);
  font-size: 1.05rem;
}
.price-mrp {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
}
.view-all-wrap {
  text-align: center;
  margin-top: 44px;
}

/* CSS bottle illustration */
.bottle-css {
  position: relative;
  width: 96px;
  height: 170px;
  filter: drop-shadow(0 18px 20px rgba(10, 79, 73, 0.22));
  transition: 0.4s;
}
.product-card:hover .bottle-css {
  transform: translateY(-6px) rotate(-3deg);
}
.bottle-css .cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 30px;
  background: #0d6d63;
  border-radius: 8px 8px 4px 4px;
  z-index: 3;
}
.bottle-css .cap::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  background: #0d6d63;
  border-radius: 50% 50% 4px 4px;
}
.bottle-css .body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 150px;
  border-radius: 44px 44px 30px 30px / 60px 60px 24px 24px;
  display: grid;
  place-items: center;
  box-shadow:
    inset -8px 0 16px rgba(0, 0, 0, 0.08),
    inset 8px 0 12px rgba(255, 255, 255, 0.4);
}
.bottle-css .body i {
  font-family: var(--font-h);
  font-style: normal;
  font-weight: 700;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 30px;
}
.bottle-css.lemon .body {
  background: linear-gradient(120deg, #ffe838, #f5b700);
}
.bottle-css.blue .body {
  background: linear-gradient(120deg, #67c9e6, #2b8fd6);
}
.bottle-css.pink .body {
  background: linear-gradient(120deg, #ff9ab5, #f0567f);
}
.bottle-css.sky .body {
  background: linear-gradient(120deg, #8fe3d6, #39b6a3);
}
.bottle-css.green .body {
  background: linear-gradient(120deg, #8fdf9f, #3bb273);
}
.bottle-css.violet .body {
  background: linear-gradient(120deg, #c3a5f0, #8a5cd6);
}
.bottle-css.blue .cap,
.bottle-css.sky .cap,
.bottle-css.green .cap {
  background: #0d6d63;
}
.bottle-css.blue .cap::after,
.bottle-css.sky .cap::after,
.bottle-css.green .cap::after {
  background: #0d6d63;
}
.bottle-css.pink .cap,
.bottle-css.pink .cap::after {
  background: #c23b60;
}
.bottle-css.violet .cap,
.bottle-css.violet .cap::after {
  background: #6b3fb0;
}

/* ================= FEATURE STRIP ================= */
.feature-strip {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  padding: 0 clamp(18px, 5vw, 54px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-strip div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.feature-strip div:hover {
  transform: translateY(-6px);
}
.feature-strip span {
  font-size: 2rem;
}
.feature-strip h4 {
  font-size: 1.15rem;
  margin: 12px 0 6px;
}
.feature-strip p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 100px clamp(18px, 5vw, 54px) 60px;
}
.testi-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.testi:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.stars {
  color: var(--lemon-deep);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testi blockquote {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 22px;
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
}
.ava.a1 {
  background: linear-gradient(135deg, var(--teal), var(--green));
}
.ava.a2 {
  background: linear-gradient(135deg, var(--orange), var(--lemon-deep));
}
.ava.a3 {
  background: linear-gradient(135deg, #8a5cd6, #c23b60);
}
.testi figcaption b {
  font-family: var(--font-h);
  display: block;
}
.testi figcaption small {
  color: var(--muted);
}

/* ================= BLOG ================= */
.blog {
  padding: 60px clamp(18px, 5vw, 54px) 100px;
}
.blog-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.blog-img {
  position: relative;
  height: 200px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.blog-img img {
  max-height: 150px;
  max-width: 75%;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(10, 79, 73, 0.22));
  transition: 0.4s;
}
.blog-card:hover .blog-img img {
  transform: translateY(-4px) scale(1.03);
}
.blog-img.g1 {
  background: linear-gradient(135deg, #ffe838, #f5b700);
}
.blog-img.g2 {
  background: linear-gradient(135deg, #8fdf9f, #3bb273);
}
.blog-img.g3 {
  background: linear-gradient(135deg, #7ad6e6, #2b8fd6);
}
.blog-img.g4 {
  background: linear-gradient(135deg, #9be3f0, #2ba9c9);
}
.blog-img.g5 {
  background: linear-gradient(135deg, #d8b7f5, #8a5cd6);
}
.blog-img.g6 {
  background: linear-gradient(135deg, #c3f0c8, #4fae6e);
}
.blog-img.g7 {
  background: linear-gradient(135deg, #a9c2f0, #3b5fc4);
}
.blog-img.g8 {
  background: linear-gradient(135deg, #ffc2dc, #e0568b);
}
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 20px;
}
.blog-body {
  padding: 24px;
}
.blog-meta {
  font-family: var(--font-h);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
}
.blog-body h3 {
  font-size: 1.2rem;
  margin: 10px 0 8px;
}
.blog-body p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.read-more {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
}
.read-more:hover {
  color: var(--teal-deep);
}

/* ================= BLOG ARTICLE (detail page) ================= */
.post-hero {
  padding: 150px clamp(18px, 5vw, 54px) 60px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  margin-bottom: 24px;
  transition: 0.2s;
}
.back-link:hover {
  color: var(--teal-deep);
  gap: 12px;
}
.post-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin: 18px 0 20px;
}
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}
.post-meta-row .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}
.post-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 54px);
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 48px;
  align-items: start;
}
.post-main {
  min-width: 0;
}
.post-sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.post-sidebar h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.sidebar-posts {
  display: grid;
  gap: 18px;
}
.sidebar-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sidebar-post-img {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.sidebar-post-img img {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(10, 79, 73, 0.25));
}
.sidebar-post-img.g1 {
  background: linear-gradient(135deg, #ffe838, #f5b700);
}
.sidebar-post-img.g2 {
  background: linear-gradient(135deg, #8fdf9f, #3bb273);
}
.sidebar-post-img.g3 {
  background: linear-gradient(135deg, #7ad6e6, #2b8fd6);
}
.sidebar-post-img.g4 {
  background: linear-gradient(135deg, #9be3f0, #2ba9c9);
}
.sidebar-post-img.g5 {
  background: linear-gradient(135deg, #d8b7f5, #8a5cd6);
}
.sidebar-post-img.g6 {
  background: linear-gradient(135deg, #c3f0c8, #4fae6e);
}
.sidebar-post-img.g7 {
  background: linear-gradient(135deg, #a9c2f0, #3b5fc4);
}
.sidebar-post-img.g8 {
  background: linear-gradient(135deg, #ffc2dc, #e0568b);
}
.sidebar-post-meta {
  display: block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 3px;
}
.sidebar-post h5 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  transition: 0.2s;
}
.sidebar-post:hover h5 {
  color: var(--teal);
}
.post-banner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.post-banner img {
  max-height: 250px;
  max-width: 60%;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(10, 79, 73, 0.24));
}
.post-body {
  width: 100%;
  padding: 44px 0 20px;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.8;
}
.post-body p {
  margin-bottom: 20px;
  color: #3c4c47;
}
.post-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
}
.post-body ul,
.post-body ol {
  margin: 0 0 20px 22px;
  color: #3c4c47;
}
.post-body li {
  margin-bottom: 10px;
}
.post-body li b {
  color: var(--ink);
}
.post-quote {
  border-left: 4px solid var(--lemon-deep);
  background: #fffdf0;
  padding: 20px 24px;
  border-radius: 0 14px 14px 0;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--teal-deep);
  margin: 28px 0;
}
.post-cta {
  max-width: var(--maxw);
  margin: 16px auto 60px;
  padding: 0 clamp(18px, 5vw, 54px);
  text-align: center;
}
.post-cta-box {
  background: linear-gradient(140deg, var(--teal), var(--teal-deep));
  border-radius: var(--radius);
  padding: 40px 32px;
  color: #fff;
  box-shadow: var(--shadow);
}
.post-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.post-cta-box p {
  opacity: 0.9;
  margin-bottom: 22px;
}
.related {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 54px) 90px;
}
.related h4 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* ================= CONTACT ================= */
.contact {
  padding: 70px clamp(18px, 5vw, 54px) 90px;
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(140deg, var(--teal), var(--teal-deep));
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-left {
  padding: 40px clamp(24px, 3.5vw, 44px);
  color: #fff;
}
.contact-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 12px 0 12px;
  color: #fff;
}
.contact-left > p {
  opacity: 0.9;
  margin-bottom: 22px;
  font-size: 0.98rem;
}
.contact-info {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-info span {
  font-size: 1.25rem;
}
.contact-info small {
  display: block;
  opacity: 0.7;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}
.contact-info a,
.contact-info div > span {
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  font-size: 0.95rem;
}
.contact-info a:hover {
  color: var(--lemon);
}
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: 0.2s;
  flex: 0 0 auto;
}
.social-icon svg {
  width: 19px;
  height: 19px;
}
.social-icon:hover {
  background: var(--lemon);
  color: var(--teal-deep);
  border-color: var(--lemon);
  transform: translateY(-3px);
}
.contact-form {
  background: var(--paper);
  padding: 40px clamp(24px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--teal-deep);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-b);
  font-size: 0.92rem;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fbfdfc;
  transition: 0.2s;
  resize: vertical;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 128, 116, 0.1);
}
.contact-form .btn {
  grid-column: 1/-1;
  margin-top: 2px;
}
.form-note {
  grid-column: 1/-1;
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-family: var(--font-h);
}

/* ================= FOOTER ================= */
.footer {
  background:
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(255, 214, 10, 0.06) 0%,
      transparent 60%
    ),
    var(--teal-deep);
  color: #dfeeea;
  padding: 76px clamp(18px, 5vw, 54px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 1.15fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-about .footer-brand {
  margin-bottom: 16px;
}
.footer-brand .brand-text,
.footer-brand .brand-text b {
  color: #fff;
}
.footer-brand .brand-text small {
  color: #9fc4bd;
}
.footer-tag {
  color: #a9cec7;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 22px;
}
.footer-heading {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--lemon);
}
.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-col .footer-links a {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 0.92rem;
  color: #b9d8d1;
  padding: 0;
  border-radius: 0;
  transition: 0.2s;
}
.footer-col .footer-links a:hover {
  background: none;
  color: #fff;
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  display: grid;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #b9d8d1;
  line-height: 1.55;
}
.footer-contact li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--lemon);
}
.footer-contact a {
  color: #b9d8d1;
}
.footer-contact a:hover {
  color: var(--lemon);
}
.footer-socials {
  margin-top: 2px;
}
.footer-socials .social-icon {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.25);
}
.footer-socials .social-icon svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: #93bdb5;
  padding: 22px 0;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 150px clamp(18px, 5vw, 54px) 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-h);
  font-weight: 500;
}
.breadcrumb a {
  color: var(--teal);
}
.breadcrumb a:hover {
  color: var(--teal-deep);
}
.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}

/* ================= PRODUCTS LISTING PAGE ================= */
.products-page-head {
  max-width: 720px;
  margin: 20px auto 50px;
  text-align: center;
  padding: 0 clamp(18px, 5vw, 54px);
}
.products-page-head h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin: 16px 0 12px;
}
.all-products-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 54px) 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ================= GRID SEARCH ================= */
.grid-search {
  max-width: 480px;
  margin: 0 auto 44px;
  padding: 0 clamp(18px, 5vw, 54px);
}
.grid-search-inner {
  position: relative;
}
.grid-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
}
.grid-search input::placeholder {
  color: var(--muted);
}
.grid-search input:focus {
  outline: none;
  border-color: var(--teal);
}
.grid-search .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--muted);
  pointer-events: none;
}
.grid-empty {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  padding: 10px 20px 60px;
}

/* ================= PAGINATION ================= */
.pagination {
  max-width: var(--maxw);
  margin: -70px auto 100px;
  padding: 0 clamp(18px, 5vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
}
.page-btn:hover:not(:disabled):not(.active) {
  border-color: var(--teal);
  color: var(--teal);
}
.page-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.page-btn.page-nav {
  padding: 0 18px;
}
.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ================= PRODUCT DETAIL PAGE ================= */
.product-detail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px clamp(18px, 5vw, 54px) 70px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.detail-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 20px 10px;
}
@media (min-width: 961px) {
  .detail-visual {
    position: sticky;
    top: 110px;
  }
}
.detail-visual-glow {
  position: absolute;
  width: min(60vw, 380px);
  height: min(60vw, 380px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.3), rgba(255, 214, 10, 0) 70%);
  filter: blur(6px);
  z-index: 0;
}
.detail-visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(10, 79, 73, 0.24));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.detail-visual:hover img {
  transform: scale(1.045) rotate(-1deg);
}
.detail-badge {
  position: absolute;
  top: 4px;
  right: clamp(4px, 4vw, 26px);
  z-index: 2;
  background: var(--lemon);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.detail-size-chip {
  position: absolute;
  top: 4px;
  left: clamp(4px, 4vw, 26px);
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.detail-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 12px 0 8px;
}
.detail-tagline {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.86rem;
  color: var(--muted);
}
.detail-rating .stars {
  color: var(--lemon-deep);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 128, 116, 0.08);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.chip-ico {
  display: inline-flex;
  flex: 0 0 auto;
}
.chip-ico svg {
  width: 14px;
  height: 14px;
}
.detail-size-select,
.detail-qty {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.detail-size-label,
.detail-qty-label {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  flex: 0 0 auto;
}
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.size-opt {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: 0.2s;
}
.size-opt:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}
.size-opt:active {
  transform: scale(0.96);
}
.size-opt.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(14, 128, 116, 0.55);
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--paper);
  color: var(--teal-deep);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.qty-btn:hover {
  background: rgba(14, 128, 116, 0.14);
}
.qty-value {
  min-width: 42px;
  text-align: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: linear-gradient(160deg, #fff8dd, var(--paper));
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow 0.3s ease;
}
.detail-price.pulse {
  box-shadow: 0 0 0 4px rgba(14, 128, 116, 0.14);
}
.detail-price .now {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
}
.detail-price .mrp {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.detail-price .off-badge {
  background: var(--lemon);
  color: var(--teal-deep);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 10px;
}
.detail-price .save {
  background: rgba(59, 178, 115, 0.12);
  color: var(--green);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 10px;
}
.detail-desc {
  color: #3c4c47;
  font-size: 1.02rem;
  margin: 22px 0 28px;
  line-height: 1.75;
}
.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.detail-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 38px;
  font-size: 0.86rem;
  color: var(--muted);
}
.detail-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-trust .chip-ico {
  color: var(--teal);
  flex: 0 0 auto;
}
.detail-trust .chip-ico svg {
  width: 17px;
  height: 17px;
}
.detail-trust b {
  color: var(--ink);
  font-weight: 600;
}
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 10px;
}
.benefits-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: #3c4c47;
}
.benefits-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(59, 178, 115, 0.15);
  color: var(--green);
  font-weight: 700;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.detail-section {
  margin-top: 38px;
}
.detail-section h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--teal-deep);
}
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.info-block:first-child {
  border-right: 1px solid var(--line);
  padding-right: 40px;
}
.info-block .info-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(14, 128, 116, 0.08);
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 12px;
}
.info-block .info-ico svg {
  width: 17px;
  height: 17px;
}
.info-block h3 {
  font-family: var(--font-h);
  font-size: 1.02rem;
  margin-bottom: 10px;
  color: var(--teal-deep);
}
.info-block p {
  color: #3c4c47;
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}
.related-products {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px clamp(18px, 5vw, 54px) 100px;
}
.related-products h4 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.related-grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ================= Mobile sticky order bar ================= */
.mobile-order-bar {
  display: none;
}
@media (max-width: 760px) {
  .mobile-order-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 244, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px -14px rgba(10, 79, 73, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .mobile-order-bar.show {
    transform: translateY(0);
  }
  .mobile-order-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex: 0 0 auto;
  }
  .mobile-order-price #mobilePriceNow {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--teal);
  }
  .mobile-order-price #mobilePriceMrp {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: line-through;
  }
  .mobile-order-bar .btn {
    padding: 11px 20px;
    font-size: 0.92rem;
    white-space: nowrap;
  }
  body:has(.mobile-order-bar) .wa-float {
    bottom: 88px;
  }
}

/* ================= WhatsApp float ================= */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(18, 140, 126, 0.7);
  transition: 0.25s;
  animation: pulse 2.4s infinite;
}
.wa-float svg {
  width: 22px;
  height: 22px;
}
.wa-float:hover {
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    box-shadow:
      0 14px 30px -8px rgba(18, 140, 126, 0.7),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 14px 30px -8px rgba(18, 140, 126, 0.7),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* ================= Reveal animation =================
   Scoped to users who haven't asked for reduced motion — .reveal elements
   simply render normally (no opacity/transform manipulation at all) for
   anyone with prefers-reduced-motion set, regardless of what the JS does. */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
      opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* ================= Responsive ================= */
@media (max-width: 960px) {
  /* Below this width, sections collapse to a single column and there's no
     dedicated side-space left for the floating bottle without it colliding
     with text — hide the decorative 3D layer and let content lead instead. */
  #bottle-canvas {
    display: none;
  }
  .hero {
    flex-direction: column;
    gap: 50px;
  }
  .hero-visual {
    width: min(320px, 80vw);
  }
  .hero-visual-glow,
  .hero-visual-lineup .hero-visual-glow {
    width: min(320px, 82vw);
    height: min(260px, 66vw);
  }
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .founder-spotlight {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .post-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .contact-left h2 br {
    display: none;
  }
  .all-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .related-grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .pagination {
    margin-top: -50px;
  }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: rgba(255, 253, 244, 0.98);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: 0.35s;
    box-shadow: var(--shadow);
    padding: 40px;
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 60;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  .hero {
    padding-top: 110px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .post-hero {
    padding-top: 110px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .breadcrumb {
    padding-top: 110px;
  }
  .detail-actions {
    flex-direction: column;
  }
  .detail-actions .btn {
    width: 100%;
  }
  .benefits-list,
  .detail-info-grid {
    grid-template-columns: 1fr;
  }
  .detail-info-grid {
    gap: 24px;
  }
  .info-block:first-child {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }
  .footer-about {
    grid-column: auto;
  }
  .footer-about .brand {
    justify-content: center;
  }
  .footer-tag {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col .footer-links {
    align-items: center;
  }
  .footer-contact li {
    justify-content: center;
    text-align: left;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .product-grid,
  .testi-grid,
  .blog-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .hero-badges {
    gap: 20px;
  }
  .all-products-grid {
    grid-template-columns: 1fr;
  }
  .pagination {
    margin-top: -30px;
    gap: 6px;
  }
  .page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 0.88rem;
  }
  .related-grid-products {
    grid-template-columns: 1fr;
  }
}
