/* ============================================================
   NAINS HERBALS — Homepage Styles
   Add this to your child theme's style.css or enqueue as
   a separate nains-homepage.css file via functions.php
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── ANNOUNCEMENT BAR ── */
.nh-announce-bar {
  background: #E67E22;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1000;
}

/* ── HERO ── */
.nh-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #1C2520;
}
.nh-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}
.nh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 720px;
  padding: 80px 24px 80px;
  gap: 40px;
}
@media (min-width: 1024px) {
  .nh-hero-inner {
    flex-direction: row;
    padding: 0 64px;
  }
}

/* Hero Text */
.nh-hero-text {
  text-align: center;
  flex: 0 0 40%;
}
@media (min-width: 1024px) {
  .nh-hero-text { text-align: left; }
}
.nh-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4A574;
  margin-bottom: 20px;
}
.nh-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .nh-hero-h1 { font-size: 52px; } }
.nh-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .nh-hero-sub { margin-left: 0; } }

/* Buttons */
.nh-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E67E22;
  color: #fff;
  padding: 16px 32px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nh-btn-orange:hover { background: #D4721E; color: #fff; }
.nh-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1C2520;
  color: #fff;
  padding: 16px 32px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nh-btn-dark:hover { background: #0F1410; color: #fff; }

/* Product Strip */
.nh-strip-wrapper {
  flex: 0 0 60%;
  position: relative;
  width: 100%;
}
.nh-strip-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 20;
  pointer-events: none;
}
.nh-strip-fade-left { left: 0; background: linear-gradient(to right, #1C2520, transparent); }
.nh-strip-fade-right { right: 0; background: linear-gradient(to left, #1C2520, transparent); }
.nh-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 24px 32px;
}
.nh-strip::-webkit-scrollbar { display: none; }
.nh-strip-card {
  flex-shrink: 0;
  width: 250px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nh-strip-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
.nh-strip-img {
  position: relative;
  height: 240px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-strip-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.nh-strip-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  color: #fff;
}
.nh-badge-dark { background: #1C2520; }
.nh-badge-orange { background: #E67E22; }
.nh-badge-gold { background: #D4A574; }
.nh-strip-dot { display: none; }
.nh-strip-info { padding: 12px; }
.nh-strip-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nh-strip-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
}
.nh-strip-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.nh-strip-price span:first-child {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.nh-strip-orig {
  font-size: 12px;
  color: #b0a090;
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
}
.nh-strip-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.nh-strip-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(28,37,32,0.88);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nh-strip-btn:hover {
  background: #E67E22;
  border-color: #E67E22;
  box-shadow: 0 4px 16px rgba(230,126,34,0.35);
  transform: translateY(-1px);
}
.nh-strip-btn svg { stroke: currentColor; }
.nh-strip-dots { display: flex; gap: 6px; align-items: center; }
.nh-strip-dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.nh-strip-dot-btn.active { width: 16px; background: #fff; }

/* ── REELS WALL ── */
.nh-reels-section {
  background: #fff;
  padding: 40px 0 32px;
}
.nh-reels-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 32px;
}
.nh-reels-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8B7D6B;
  margin-top: 8px;
}
.nh-reels-track-wrapper {
  overflow: hidden;
  position: relative;
}
.nh-reels-track {
  display: flex;
  gap: 16px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nh-reels-track::-webkit-scrollbar { display: none; }
.nh-reel-card {
  flex-shrink: 0;
  width: 200px;
  cursor: pointer;
}
.nh-reel-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
}
.nh-reel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.nh-reel-card:hover .nh-reel-img img { transform: scale(1.08); }
.nh-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,37,32,0.7) 0%, transparent 60%);
}
.nh-reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-reel-play div {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.nh-reel-card:hover .nh-reel-play div { background: rgba(255,255,255,0.35); }
.nh-reel-dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 11px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}
.nh-reel-info { padding: 8px 4px 0; }
.nh-reel-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #E67E22;
  font-family: 'Inter', sans-serif;
}
.nh-reel-title {
  font-size: 13px;
  font-weight: 600;
  color: #1C2520;
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
  line-height: 1.4;
}
.nh-reels-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.nh-reels-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4A574;
  opacity: 0.4;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.nh-reels-dot.active { opacity: 1; width: 20px; border-radius: 99px; }

/* ── PRODUCTS SECTIONS ── */
.nh-section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: #1C2520;
}
.nh-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B7D6B;
  margin-bottom: 4px;
}
.nh-products-section { padding: 48px 0; }
.nh-products-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .nh-products-inner { padding: 0 40px; } }
.nh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nh-view-all {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1C2520;
  text-decoration: none;
  transition: color 0.2s;
}
.nh-view-all:hover { color: #E67E22; }
.nh-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .nh-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nh-products-grid { grid-template-columns: repeat(4, 1fr); } }
.nh-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .nh-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── PRODUCT CARD ── */
.nh-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.nh-product-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* Image — contain so real product photos never get cropped/blurred */
.nh-product-img-link { display: block; text-decoration: none; }
.nh-product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #F5F0E8;   /* warm off-white, suits herbals */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ← KEY: shows full image, no blur from stretching */
  padding: 12px;
  transition: transform 0.4s;
}
.nh-product-card:hover .nh-product-img img { transform: scale(1.04); }
.nh-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sale badge — top-left corner */
.nh-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  z-index: 2;
}
.nh-badge-orange { background: #E67E22; }
.nh-badge-dark   { background: #1C2520; }

/* Card body */
.nh-product-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category label */
.nh-product-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8B7D6B;
  margin-bottom: 5px;
}

/* Product name */
.nh-product-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1C2520;
  margin-bottom: 4px;
  line-height: 1.4;
}
.nh-product-name a { color: inherit; text-decoration: none; }
.nh-product-name a:hover { color: #E67E22; }

/* Short description */
.nh-product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8B7D6B;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Star rating */
.nh-product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.nh-product-rating span {
  font-size: 12px;
  color: #8B7D6B;
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
}

/* Price row — original (strikethrough) · sale price · % off pill */
.nh-product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.nh-product-orig {
  font-size: 13px;
  color: #b0a090;
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
}
.nh-product-price {
  font-size: 17px;
  font-weight: 700;
  color: #1C2520;
  font-family: 'Inter', sans-serif;
}
.nh-product-saving {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #E67E22;
  background: rgba(230,126,34,0.12);
  padding: 2px 7px;
  border-radius: 99px;
}

/* Add to Cart button — orange, full width, cart icon */
.nh-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: #E67E22;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  margin-top: auto;
  box-sizing: border-box;
}
.nh-add-to-cart:hover { background: #D4721E; color: #fff; }

/* ── INSTAGRAM SECTION ── */
.nh-insta-section {
  background: #fff;
  padding: 48px 0 56px;
  border-top: 2px solid #FFF9F0;
}
.nh-insta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) { .nh-insta-inner { padding: 0 40px; } }
.nh-insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #833AB4, #FD1D1D, #F77737);
  color: #fff;
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}
.nh-insta-badge:hover { box-shadow: 0 4px 20px rgba(130,58,180,0.4); }
.nh-insta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1C2520;
  margin-bottom: 8px;
}
@media (min-width: 768px) { .nh-insta-h2 { font-size: 48px; } }
.nh-insta-sub {
  font-size: 14px;
  color: #8B7D6B;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 40px;
}
.nh-insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .nh-insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .nh-insta-grid { grid-template-columns: repeat(6, 1fr); } }
.nh-insta-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.nh-insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nh-insta-card:hover img { transform: scale(1.1); }
.nh-insta-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.nh-insta-card:hover .nh-insta-card-hover { background: rgba(0,0,0,0.25); }
.nh-insta-likes {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transition: opacity 0.3s;
}
.nh-insta-card:hover .nh-insta-likes { opacity: 1; }
.nh-insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1C2520;
  color: #1C2520;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.nh-insta-cta:hover { background: #1C2520; color: #fff; }

/* ── CATEGORIES ── */
.nh-categories-section { background: #EDE5D4; padding: 48px 0; }
.nh-categories-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) { .nh-categories-inner { padding: 0 40px; } }
.nh-categories-inner .nh-section-h2 { margin-bottom: 24px; }
.nh-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .nh-categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nh-categories-grid { grid-template-columns: repeat(4, 1fr); } }
.nh-cat-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  text-decoration: none;
}
.nh-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nh-cat-card:hover img { transform: scale(1.05); }
.nh-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,37,32,0.85) 0%, transparent 50%);
}
.nh-cat-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: left;
}
.nh-cat-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.nh-cat-text p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.nh-cat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E67E22;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nh-cat-card:hover .nh-cat-bar { transform: scaleX(1); }

/* ── WHY US ── */
.nh-whyus-section { background: #fff; padding: 0; }
.nh-whyus-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .nh-whyus-inner { flex-direction: row; } }
.nh-whyus-img { flex: 0 0 50%; height: 400px; }
@media (min-width: 1024px) { .nh-whyus-img { height: auto; } }
.nh-whyus-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 16px 16px 0; }
.nh-whyus-content {
  flex: 0 0 50%;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .nh-whyus-content { padding: 56px; } }
.nh-whyus-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1C2520;
  line-height: 1.2;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .nh-whyus-h2 { font-size: 40px; } }
.nh-whyus-features { display: flex; flex-direction: column; gap: 24px; }
.nh-whyus-item { display: flex; gap: 16px; align-items: flex-start; }
.nh-whyus-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230,126,34,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nh-whyus-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1C2520;
  margin-bottom: 4px;
}
.nh-whyus-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8B7D6B;
  line-height: 1.6;
}
.nh-whyus-story {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #D4A574;
  text-decoration: none;
}
.nh-whyus-story:hover { text-decoration: underline; }
.nh-whyus-btns {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── REVIEWS ── */
.nh-reviews-section { background: #1C2520; padding: 56px 0; }
.nh-reviews-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) { .nh-reviews-inner { padding: 0 40px; } }
.nh-reviews-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .nh-reviews-h2 { font-size: 48px; } }
.nh-reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.nh-reviews-score {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-left: 8px;
}
.nh-reviews-count {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.nh-reviews-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8B7D6B;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.nh-reviews-link:hover { color: #E67E22; }
.nh-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .nh-reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.nh-review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.nh-review-video {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.nh-review-video:hover { background: rgba(255,255,255,0.1); }
.nh-review-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.nh-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E67E22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.nh-review-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.nh-review-verified {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #D4A574;
  margin-top: 2px;
}
.nh-review-cat {
  display: inline-block;
  background: rgba(230,126,34,0.2);
  color: #E67E22;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}
.nh-review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 12px;
}
.nh-review-stars { display: flex; gap: 2px; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 640px) {
  .nh-section-h2 { font-size: 32px; }
  .nh-whyus-btns { flex-direction: column; }
  .nh-btn-orange, .nh-btn-dark { justify-content: center; }
}/* ═══════════════════════════════════════════════════════════════
   NAINS HERBALS — Premium Homepage Redesign CSS
   Add this to the END of nains-homepage.css
   ═══════════════════════════════════════════════════════════════ */

:root {
  --nhp-dark:    #1C2520;
  --nhp-cream:   #FFF9F0;
  --nhp-warm:    #F5F0E8;
  --nhp-gold:    #C17F3C;
  --nhp-green:   #2C7A4B;
  --nhp-muted:   #8B7D6B;
  --nhp-border:  #E5D5C3;
  --nhp-radius:  16px;
}

/* ── SHARED TYPOGRAPHY ── */
.nhp-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nhp-gold);
  margin-bottom: 10px;
}
.nhp-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--nhp-dark);
  line-height: 1.1;
  margin: 0 0 12px;
}
.nhp-h2-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  margin: 0 0 20px;
}
.nhp-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--nhp-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}
.nhp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.nhp-link-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--nhp-dark);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--nhp-dark);
  transition: color .2s, border-color .2s;
}
.nhp-link-arrow:hover { color: var(--nhp-gold); border-color: var(--nhp-gold); }

/* ── PRODUCT CARD ── */
.nhp-pcard {
  flex: 0 0 240px;
  min-width: 240px;
  background: #fff;
  border-radius: var(--nhp-radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.nhp-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(28,37,32,.13);
}
.nhp-pcard-dark { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.nhp-pcard-dark .nhp-pcard-name { color: #fff; }
.nhp-pcard-dark .nhp-price-now { color: #fff; }
.nhp-pcard-dark .nhp-price-was { color: rgba(255,255,255,.5); }

.nhp-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--nhp-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 3px 10px;
  border-radius: 99px;
  z-index: 2;
  letter-spacing: .5px;
}

.nhp-pcard-img-wrap {
  display: block;
  aspect-ratio: 1/1;
  background: var(--nhp-warm);
  overflow: hidden;
}
.nhp-pcard-img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #F5F0E8;
  padding: 0;
  transition: transform .4s ease;
}
.nhp-pcard:hover .nhp-pcard-img { transform: scale(1.05); }

.nhp-pcard-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.nhp-stars { display: flex; gap: 2px; }
.nhp-pcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--nhp-dark);
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nhp-pcard-name:hover { color: var(--nhp-gold); }
.nhp-pcard-desc {
  font-size: 12px;
  color: var(--nhp-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.nhp-pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--nhp-border);
}
.nhp-pcard-price { display: flex; align-items: baseline; gap: 6px; }
.nhp-price-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--nhp-dark);
}
.nhp-price-was {
  font-size: 12px;
  color: var(--nhp-muted);
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
}
.nhp-atc {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--nhp-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.nhp-atc:hover { background: var(--nhp-gold); transform: scale(1.1); }
.nhp-atc-light { background: rgba(255,255,255,.15); }
.nhp-atc-light:hover { background: var(--nhp-gold); }

/* ── SCROLL TRACK ── */
.nhp-scroll-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.nhp-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  flex: 1;
}
.nhp-scroll-track::-webkit-scrollbar { display: none; }
.nhp-arr {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  color: var(--nhp-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nhp-arr:hover {
  background: var(--nhp-gold);
  border-color: var(--nhp-gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212,165,116,0.35);
}
.nhp-arr-dark {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(8px);
}
.nhp-arr-dark:hover {
  background: var(--nhp-gold);
  border-color: var(--nhp-gold);
  box-shadow: 0 6px 18px rgba(212,165,116,0.35);
}

/* ── BUTTONS ── */
.nhp-btn-outline-light {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  margin-top: 8px;
}
.nhp-btn-outline-light:hover { background: #fff; color: var(--nhp-dark); border-color: #fff; }
.nhp-btn-solid {
  display: inline-block;
  background: var(--nhp-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  margin-top: 8px;
}
.nhp-btn-solid:hover { background: var(--nhp-gold); color: #fff; }

/* ════════════════════════════════════════════════
   WHAT'S ON YOUR MIND
   ════════════════════════════════════════════════ */
.nhp-mind-section {
  background: var(--nhp-cream);
  padding: 72px 0;
  overflow: hidden;
}
.nhp-mind-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.nhp-mind-header {
  text-align: center;
  margin-bottom: 24px;
}
.nhp-mind-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}
.nhp-mind-track::-webkit-scrollbar { display: none; }
.nhp-mind-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 108px;
}
.nhp-mind-img {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--nhp-warm);
  border: 2.5px solid var(--nhp-border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, transform .25s, box-shadow .25s;
}
.nhp-mind-pill:hover .nhp-mind-img {
  border-color: var(--nhp-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(193,127,60,.2);
}
.nhp-mind-img img { width: 100%; height: 100%; object-fit: cover; padding: 0; border-radius: 50%; }
.nhp-mind-img span { font-size: 36px; }
.nhp-mind-pill p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--nhp-dark);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* ════════════════════════════════════════════════
   FEATURED / BESTSELLERS SECTION
   ════════════════════════════════════════════════ */
.nhp-featured-section {
  background: #fff;
  padding: 80px 0;
}
.nhp-featured-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ════════════════════════════════════════════════
   CATEGORY SPLIT SECTION (Hair / Face)
   ════════════════════════════════════════════════ */
.nhp-cat-section { padding: 80px 0; }
.nhp-dark { background: var(--nhp-dark); }
.nhp-light { background: var(--nhp-warm); }
.nhp-cat-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.nhp-cat-inner-rev { grid-template-columns: 280px 1fr; }
@media (min-width: 1024px) {
  .nhp-cat-inner-rev { grid-template-columns: 280px 1fr; }
}
.nhp-cat-label-col { display: flex; flex-direction: column; }
.nhp-dark .nhp-h2-xl { color: #fff; }
.nhp-light .nhp-h2-xl { color: var(--nhp-dark); }
.nhp-cat-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
}
.nhp-cat-scroll-col { min-width: 0; }

/* ════════════════════════════════════════════════
   SHOP BY CONCERN
   ════════════════════════════════════════════════ */
.nhp-concern-section {
  background: #fff;
  padding: 80px 0;
}
.nhp-concern-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.nhp-concern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px)  { .nhp-concern-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .nhp-concern-grid { grid-template-columns: repeat(6, 1fr); } }

.nhp-concern-card {
  background: var(--card-bg, #F5F0E8);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  min-height: 220px;
}
.nhp-concern-card::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--card-accent, #C17F3C);
  opacity: .08;
  transition: opacity .25s, transform .25s;
}
.nhp-concern-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.nhp-concern-card:hover::before { opacity: .16; transform: scale(1.5); }
.nhp-concern-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--card-accent, #C17F3C);
  opacity: .2;
  line-height: 1;
  margin-bottom: -8px;
}
.nhp-concern-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--nhp-dark);
  margin: 0;
  line-height: 1.2;
}
.nhp-concern-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--nhp-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.nhp-concern-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--card-accent, #C17F3C);
  letter-spacing: .5px;
}

/* ════════════════════════════════════════════════
   4-STEP ROUTINE
   ════════════════════════════════════════════════ */
.nhp-routine-section {
  background: var(--nhp-dark);
  padding: 80px 0;
}
.nhp-routine-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.nhp-routine-header {
  text-align: center;
  margin-bottom: 48px;
}
.nhp-routine-section .nhp-h2 { color: #fff; }
.nhp-routine-section .nhp-section-sub { color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }
.nhp-routine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) { .nhp-routine-grid { grid-template-columns: repeat(4, 1fr); } }

.nhp-step-card {
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s, box-shadow .25s;
}
.nhp-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.nhp-step-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.nhp-step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.nhp-step-card:hover .nhp-step-img img { transform: scale(1.08); }
.nhp-step-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,37,32,.8) 0%, rgba(28,37,32,.1) 55%, transparent 100%);
}
.nhp-step-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nhp-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nhp-gold);
}
.nhp-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.nhp-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}
.nhp-step-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--nhp-gold);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .nhp-cat-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nhp-h2-xl { font-size: clamp(40px, 8vw, 64px); }
}
@media (max-width: 767px) {
  .nhp-mind-inner,
  .nhp-featured-inner,
  .nhp-concern-inner,
  .nhp-routine-inner,
  .nhp-cat-inner { padding: 0 20px; }
  .nhp-featured-section,
  .nhp-cat-section,
  .nhp-concern-section,
  .nhp-routine-section,
  .nhp-mind-section { padding: 56px 0; }
  .nhp-arr { display: none; }
  .nhp-pcard { flex: 0 0 200px; min-width: 200px; }
  .nhp-concern-grid { grid-template-columns: repeat(2, 1fr); }
  .nhp-routine-grid { grid-template-columns: repeat(2, 1fr); }
  .nhp-mind-track { justify-content: flex-start; flex-wrap: nowrap; padding-bottom: 8px; }
}
/* ============================================================
   SPACING & VIBRANCY OVERRIDES
   These overrides tighten spacing and make the page feel full
   ============================================================ */

/* ── HERO — more visible background, taller section ── */
.nh-hero-bg img {
  object-position: center top;
  filter: saturate(1.3) brightness(0.75);
}
.nh-hero-inner {
  padding-top: 100px;
  padding-bottom: 60px;
  gap: 32px;
}
.nh-hero-h1 {
  font-size: 48px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .nh-hero-h1 { font-size: 62px; }
}

/* ── SECTION HEADINGS — tighter ── */
.nh-section-h2 {
  font-size: 36px;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .nh-section-h2 { font-size: 44px; }
}

/* ── PRODUCT SECTIONS — alternating backgrounds feel rich ── */
.nh-products-section + .nh-products-section {
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* ── PRODUCT CARDS — warmer feel ── */
.nh-product-card {
  box-shadow: 0 2px 12px rgba(28,37,32,0.06);
}
.nh-product-img {
  background: #FBF6EE;
}

/* ── WOO PRODUCT GRID overrides so shortcode matches our grid ── */
.nh-products-grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
@media (min-width: 768px) {
  .nh-products-grid ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 1024px) {
  .nh-products-grid ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}
.nh-products-grid ul.products li.product {
  background: #fff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
  box-shadow: 0 2px 12px rgba(28,37,32,0.06) !important;
}
.nh-products-grid ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(28,37,32,0.12) !important;
}
.nh-products-grid ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1 !important;
  object-fit: contain !important;
  padding: 12px !important;
  background: #FBF6EE !important;
}
.nh-products-grid ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1C2520 !important;
  padding: 10px 14px 4px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.nh-products-grid ul.products li.product .price {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1C2520 !important;
  padding: 0 14px 6px !important;
  display: block !important;
}
.nh-products-grid ul.products li.product .price del {
  color: #b0a090 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-right: 4px !important;
}
.nh-products-grid ul.products li.product .button {
  display: block !important;
  margin: 0 14px 14px !important;
  width: calc(100% - 28px) !important;
  padding: 10px !important;
  background: #E67E22 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
}
.nh-products-grid ul.products li.product .button:hover {
  background: #D4721E !important;
  color: #fff !important;
}
.nh-products-grid ul.products li.product .onsale {
  background: #E67E22 !important;
  border-radius: 99px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 3px 8px !important;
  top: 10px !important;
  left: 10px !important;
  line-height: 1.5 !important;
}

/* ── NHP PREMIUM SECTIONS — reduce padding ── */
.nhp-featured-section { padding: 48px 0 !important; }
.nhp-concern-section  { padding: 48px 0 !important; }
.nhp-cat-section      { padding: 48px 0 !important; }
.nhp-routine-section  { padding: 48px 0 !important; }
.nhp-dark-section     { padding: 48px 0 !important; }
.nhp-section-head     { margin-bottom: 28px !important; }
.nhp-featured-inner   { padding: 0 20px !important; }
@media (min-width: 768px) { .nhp-featured-inner { padding: 0 40px !important; } }

/* ── REVIEWS — reduce bottom spacing ── */
.nh-reviews-link { margin-bottom: 24px; }

/* ── CATEGORY CARDS — slightly taller ── */
.nh-cat-card { height: 340px; }

/* ── NHP PRODUCT CARDS — same warm style ── */
.nhp-pcard {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(28,37,32,0.06);
  flex-shrink: 0;
  width: 200px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.nhp-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,37,32,0.12);
}
.nhp-pcard-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #FBF6EE;
}
.nhp-pcard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #F5F0E8;
  padding: 10px;
  transition: transform 0.4s;
}
.nhp-pcard:hover .nhp-pcard-img { transform: scale(1.04); }
.nhp-pcard-body { padding: 10px 12px 12px; }
.nhp-pcard-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1C2520;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-bottom: 8px;
}
.nhp-pcard-name:hover { color: #E67E22; }
.nhp-pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.nhp-pcard-price { display: flex; align-items: baseline; gap: 4px; }
.nhp-price-now { font-size: 14px; font-weight: 700; color: #1C2520; font-family: 'Inter', sans-serif; }
.nhp-price-was { font-size: 11px; color: #b0a090; text-decoration: line-through; font-family: 'Inter', sans-serif; }
.nhp-atc {
  width: 32px; height: 32px;
  background: #E67E22;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nhp-atc:hover { background: #D4721E; transform: scale(1.1); }
.nhp-atc-light { background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.5); }
.nhp-atc-light:hover { background: rgba(255,255,255,0.35); }
.nhp-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: #E67E22;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  z-index: 2;
}
.nhp-stars { display: flex; gap: 2px; margin-bottom: 4px; }

/* Scroll track arrows */
.nhp-scroll-outer { position: relative; overflow: hidden; }
.nhp-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  scroll-behavior: smooth;
}
.nhp-scroll-track::-webkit-scrollbar { display: none; }
.nhp-arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #E5D5C3;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #1C2520;
  line-height: 1;
}
.nhp-arr:hover { background: #E67E22; border-color: #E67E22; color: #fff; }
.nhp-arr-l { left: 0; }
.nhp-arr-r { right: 0; }
.nhp-arr-dark { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; }
.nhp-arr-dark:hover { background: #E67E22; border-color: #E67E22; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nh-products-section { padding: 32px 0; }
  .nh-categories-section { padding: 32px 0; }
  .nh-reviews-section { padding: 40px 0; }
  .nh-insta-section { padding: 32px 0 40px; }
  .nh-section-h2 { font-size: 28px; }
  .nhp-pcard { width: 160px; }
}

/* ============================================================
   FINAL COMPREHENSIVE OVERRIDES
   All visual, spacing, animation and layout improvements
   ============================================================ */

/* ── 1. HERO — bigger, more dramatic, zoomed feel ── */
.nh-hero {
  min-height: 820px !important;
}
.nh-hero-bg {
  opacity: 1 !important;
}
.nh-hero-bg img {
  opacity: 0.55 !important;
  filter: saturate(1.4) brightness(0.65) !important;
  object-position: center 30% !important;
}
.nh-hero-inner {
  min-height: 820px !important;
  padding-top: 120px !important;
  padding-bottom: 80px !important;
}
.nh-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
}
.nh-hero-h1 {
  font-size: 56px !important;
  line-height: 1.1 !important;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5) !important;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .nh-hero-h1 { font-size: 72px !important; }
}
.nh-hero-sub {
  font-size: 17px !important;
  color: rgba(255,255,255,0.9) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.nh-btn-orange {
  padding: 18px 36px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  box-shadow: 0 8px 24px rgba(230,126,34,0.4) !important;
}
.nh-btn-orange:hover {
  box-shadow: 0 12px 32px rgba(230,126,34,0.5) !important;
  transform: translateY(-2px) !important;
}

/* Strip cards — bigger */
.nh-strip-card {
  width: 240px !important;
}
.nh-strip-img {
  height: 220px !important;
}
.nh-strip-img img {
  height: 220px !important;
  object-fit: contain !important;
  padding: 8px !important;
  background: #FBF6EE !important;
}

/* ── 2. REELS WALL — bigger cards ── */
.nh-reel-card {
  width: 260px !important;
}
.nh-reels-track {
  padding: 8px 20px 16px !important;
  gap: 20px !important;
}
.nh-reels-header {
  padding: 0 20px 24px !important;
  margin-bottom: 0 !important;
}

/* ── 3. MIND PILLS — bigger circles, 6 items max ── */
.nhp-mind-section {
  background: #FBF6EE;
  padding: 52px 0 !important;
}
.nhp-mind-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.nhp-mind-header {
  text-align: center;
  margin-bottom: 36px;
}
.nhp-mind-header .nhp-eyebrow {
  display: block;
  margin-bottom: 8px;
}
.nhp-mind-header .nhp-h2 {
  margin: 0;
}
.nhp-mind-track {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding: 8px 0 16px !important;
}
.nhp-mind-track::-webkit-scrollbar { display: none !important; }
.nhp-mind-pill {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s !important;
}
.nhp-mind-pill:hover { transform: translateY(-4px) !important; }
.nhp-mind-img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 3px solid #EDE5D4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}
.nhp-mind-pill:hover .nhp-mind-img {
  border-color: #C17F3C !important;
  box-shadow: 0 8px 24px rgba(193,127,60,0.2) !important;
}
.nhp-mind-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.nhp-mind-img span {
  font-size: 40px !important;
}
.nhp-mind-pill p {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1C2520 !important;
  text-align: center !important;
  margin: 0 !important;
}

/* Hide extra pills beyond 6 on desktop */
@media (min-width: 1024px) {
  .nhp-mind-pill:nth-child(n+7) { display: none !important; }
}

/* ── 4. PRODUCT SCROLL CARDS — bigger & better ── */
.nhp-pcard {
  width: 240px !important;
  border-radius: 16px !important;
}
.nhp-pcard-img-wrap {
  aspect-ratio: 1 !important;
  border-radius: 16px 16px 0 0 !important;
  background: #FBF6EE !important;
}
.nhp-pcard-img {
  object-fit: contain !important;
  padding: 12px !important;
}
.nhp-pcard-body {
  padding: 14px 16px 16px !important;
}
.nhp-pcard-name {
  font-size: 13px !important;
  -webkit-line-clamp: 2 !important;
  min-height: 36px !important;
}

/* ── 5. ARROWS — modern, bold, always visible ── */
.nhp-arr {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid #1C2520 !important;
  color: #1C2520 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.nhp-arr:hover {
  background: #E67E22 !important;
  border-color: #E67E22 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(230,126,34,0.4) !important;
  transform: scale(1.08) !important;
}
.nhp-arr-dark {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}
.nhp-arr-dark:hover {
  background: #E67E22 !important;
  border-color: #E67E22 !important;
}
.nhp-arr-l { left: -22px !important; }
.nhp-arr-r { right: -22px !important; }

/* ── 6. SCROLL OUTER — proper overflow for arrows ── */
.nhp-scroll-outer {
  position: relative !important;
  overflow: visible !important;
  padding: 0 28px !important;
}

/* ── 7. SCROLL-IN ANIMATIONS — 3D reveal ── */
@keyframes nhRevealUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes nhRevealLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes nhRevealRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes nhFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Elements start hidden, JS adds .nh-visible class when in view */
.nh-reveal {
  opacity: 0;
  transition: none;
}
.nh-reveal.nh-visible {
  animation: nhRevealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.nh-reveal-left.nh-visible {
  animation: nhRevealLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.nh-reveal-right.nh-visible {
  animation: nhRevealRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Stagger delay for child elements */
.nh-reveal:nth-child(2) { animation-delay: 0.1s !important; }
.nh-reveal:nth-child(3) { animation-delay: 0.2s !important; }
.nh-reveal:nth-child(4) { animation-delay: 0.3s !important; }

/* ── 8. SECTION TYPOGRAPHY — bigger impact ── */
.nhp-h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #1C2520 !important;
  line-height: 1.15 !important;
  margin: 6px 0 0 !important;
}
@media (min-width: 768px) {
  .nhp-h2 { font-size: 48px !important; }
}
.nhp-h2-xl {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  margin: 12px 0 20px !important;
  color: inherit !important;
}
@media (min-width: 768px) {
  .nhp-h2-xl { font-size: 72px !important; }
}
.nhp-eyebrow {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #C17F3C !important;
}
.nhp-section-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #8B7D6B !important;
  line-height: 1.7 !important;
  max-width: 520px !important;
  margin-top: 10px !important;
}

/* ── 9. FEATURED/CAT SECTIONS — tighter, warmer ── */
.nhp-featured-inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}
.nhp-section-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  margin-bottom: 28px !important;
}
.nhp-link-arrow {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1C2520 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  white-space: nowrap !important;
}
.nhp-link-arrow:hover { color: #E67E22 !important; }

/* Dark cat sections */
.nhp-dark {
  background: #1C2520 !important;
}
.nhp-dark .nhp-h2-xl { color: #fff !important; }
.nhp-dark .nhp-cat-sub { color: rgba(255,255,255,0.7) !important; }
.nhp-cat-inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 48px !important;
  padding: 0 48px !important;
}
.nhp-cat-label-col {
  flex-shrink: 0 !important;
  width: 280px !important;
}
.nhp-cat-sub {
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin-bottom: 28px !important;
}
.nhp-cat-scroll-col {
  flex: 1 !important;
  min-width: 0 !important;
}
.nhp-btn-outline-light {
  display: inline-block !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.nhp-btn-outline-light:hover {
  background: #E67E22 !important;
  border-color: #E67E22 !important;
  color: #fff !important;
}
.nhp-btn-solid {
  display: inline-block !important;
  background: #1C2520 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
}
.nhp-btn-solid:hover {
  background: #E67E22 !important;
  color: #fff !important;
}

/* Light cat section */
.nhp-light { background: #FFF9F0 !important; }
.nhp-cat-inner-rev { flex-direction: row-reverse !important; }
.nhp-light .nhp-h2-xl { color: #1C2520 !important; }

/* ── 10. CONCERN CARDS ── */
.nhp-concern-section {
  background: #fff !important;
  padding: 56px 0 !important;
}
.nhp-concern-inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}
.nhp-concern-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  margin-top: 32px !important;
}
@media (min-width: 768px) {
  .nhp-concern-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
.nhp-concern-card {
  background: var(--card-bg, #EAF2EC) !important;
  border-radius: 16px !important;
  padding: 28px 24px !important;
  text-decoration: none !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  border: 1.5px solid transparent !important;
}
.nhp-concern-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1) !important;
  border-color: var(--card-accent, #2C7A4B) !important;
}
.nhp-concern-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  color: var(--card-accent, #2C7A4B) !important;
  opacity: 0.15 !important;
  position: absolute !important;
  top: 16px !important;
  right: 20px !important;
  line-height: 1 !important;
}
.nhp-concern-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1C2520 !important;
  margin: 0 0 8px !important;
}
.nhp-concern-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #5a4f45 !important;
  line-height: 1.6 !important;
  margin: 0 0 16px !important;
}
.nhp-concern-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--card-accent, #2C7A4B) !important;
}

/* ── 11. ROUTINE STEPS ── */
.nhp-routine-section {
  background: #FBF6EE !important;
  padding: 56px 0 !important;
}
.nhp-routine-inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}
.nhp-routine-header {
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto 40px !important;
}
.nhp-routine-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}
@media (min-width: 768px) {
  .nhp-routine-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
.nhp-step-card {
  border-radius: 16px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: block !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nhp-step-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}
.nhp-step-img {
  position: relative !important;
  height: 220px !important;
  overflow: hidden !important;
}
.nhp-step-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s !important;
}
.nhp-step-card:hover .nhp-step-img img { transform: scale(1.06) !important; }
.nhp-step-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(28,37,32,0.6) 0%, transparent 60%) !important;
}
.nhp-step-body {
  background: #fff !important;
  padding: 16px 18px 20px !important;
}
.nhp-step-num {
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #C17F3C !important;
}
.nhp-step-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1C2520 !important;
  margin: 4px 0 8px !important;
}
.nhp-step-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: #8B7D6B !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}
.nhp-step-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #E67E22 !important;
}

/* ── 12. ADD TO CART — modern floating button ── */
.nhp-atc {
  width: 36px !important;
  height: 36px !important;
  background: #E67E22 !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 12px rgba(230,126,34,0.3) !important;
  flex-shrink: 0 !important;
}
.nhp-atc:hover {
  background: #D4721E !important;
  transform: scale(1.12) !important;
  box-shadow: 0 6px 20px rgba(230,126,34,0.5) !important;
}
.nhp-atc.nhp-atc-light {
  background: rgba(255,255,255,0.2) !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  box-shadow: none !important;
}
.nhp-atc.nhp-atc-light:hover {
  background: #E67E22 !important;
  border-color: #E67E22 !important;
}

/* WooCommerce ATC button — same style */
.nh-add-to-cart,
.add_to_cart_button.button,
.nh-products-grid .button {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nh-add-to-cart:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(230,126,34,0.4) !important;
}

/* ── 13. STRIP CARD ATC LINK ── */
.nh-strip-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2) !important;
}

/* ── 14. MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  .nh-hero { min-height: 600px !important; }
  .nh-hero-inner { min-height: 600px !important; padding-top: 100px !important; }
  .nh-hero-h1 { font-size: 40px !important; }
  .nhp-h2-xl { font-size: 44px !important; }
  .nhp-cat-inner { flex-direction: column !important; padding: 0 20px !important; gap: 24px !important; }
  .nhp-cat-label-col { width: 100% !important; }
  .nhp-concern-inner { padding: 0 20px !important; }
  .nhp-routine-inner { padding: 0 20px !important; }
  .nhp-featured-inner { padding: 0 20px !important; }
  .nhp-arr-l { left: 4px !important; }
  .nhp-arr-r { right: 4px !important; }
  .nhp-mind-track { gap: 16px !important; justify-content: flex-start !important; }
  .nhp-mind-img { width: 90px !important; height: 90px !important; }
  .nhp-mind-pill:nth-child(n+7) { display: flex !important; }
  .nhp-arr { width: 32px !important; height: 32px !important; }
}

/* ════════════════════════════════════════════════════════════════
   TASK 1: ZOOM — 15% INCREASE
   Applied only to homepage sections, not header/footer
   ════════════════════════════════════════════════════════════════ */
body.home #content,
body.page-template-front-page #content {
  zoom: 1.15;
  -moz-transform: scale(1.15);
  -moz-transform-origin: top center;
}

/* ════════════════════════════════════════════════════════════════
   TASK 2: PRODUCT VISIBILITY — make cards bigger in split sections
   ════════════════════════════════════════════════════════════════ */

/* Narrower label column = more room for products */
.nhp-cat-label-col {
  width: 240px !important;
  flex-shrink: 0 !important;
}

/* Bigger product cards inside the category scroll sections */
.nhp-cat-scroll-col .nhp-pcard {
  width: 230px !important;
  min-width: 230px !important;
  flex: 0 0 230px !important;
}
.nhp-cat-scroll-col .nhp-pcard-img-wrap {
  aspect-ratio: 4/5 !important;
  min-height: 240px !important;
}
.nhp-cat-scroll-col .nhp-pcard-img {
  object-fit: contain !important;
  padding: 8px !important;
}
.nhp-cat-scroll-col .nhp-pcard-name {
  font-size: 13px !important;
  -webkit-line-clamp: 2 !important;
  min-height: 36px !important;
}

/* Also fix bestsellers and body care scroll cards */
.nhp-featured-section .nhp-pcard {
  width: 230px !important;
  min-width: 230px !important;
  flex: 0 0 230px !important;
}
.nhp-featured-section .nhp-pcard-img-wrap {
  aspect-ratio: 4/5 !important;
  min-height: 240px !important;
}

/* Bigger gap for breathing room */
.nhp-cat-scroll-col .nhp-scroll-track,
.nhp-featured-section .nhp-scroll-track {
  gap: 20px !important;
}

/* ════════════════════════════════════════════════════════════════
   TASK 4: PREMIUM ARROW BUTTONS — squared, 8px radius, gold hover
   ════════════════════════════════════════════════════════════════ */

/* --- Main scroll arrows (all sections) --- */
.nhp-arr {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  background: #fff !important;
  border: 1.5px solid #1C2520 !important;
  color: #1C2520 !important;
  font-size: 0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 0 !important;
}
.nhp-arr:hover {
  background: #C17F3C !important;
  border-color: #C17F3C !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(193,127,60,0.45) !important;
  transform: translateY(-50%) translateY(-2px) !important;
}
.nhp-arr:active {
  transform: translateY(-50%) translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(193,127,60,0.3) !important;
}
.nhp-arr-l { left: 0px !important; }
.nhp-arr-r { right: 0px !important; }

/* SVG inside arrows */
.nhp-arr svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  stroke-width: 2.5 !important;
  fill: none !important;
}

/* --- Dark variant (Hair Care section + dark bg) --- */
.nhp-arr-dark {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}
.nhp-arr-dark:hover {
  background: #C17F3C !important;
  border-color: #C17F3C !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(193,127,60,0.45) !important;
}

/* --- Scroll outer container: allow overflow for arrows --- */
.nhp-scroll-outer {
  position: relative !important;
  overflow: visible !important;
  padding: 0 32px !important;
}

/* --- Hero strip buttons: match the premium square style --- */
.nh-strip-btn {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
}
.nh-strip-btn:hover {
  background: #C17F3C !important;
  border-color: #C17F3C !important;
  box-shadow: 0 6px 24px rgba(193,127,60,0.45) !important;
  transform: translateY(-2px) !important;
}
.nh-strip-btn:active {
  transform: translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(193,127,60,0.3) !important;
}
.nh-strip-btn svg {
  stroke: currentColor !important;
  width: 18px !important;
  height: 18px !important;
}

/* ============================================================
   HERO STRIP: uniform product image fit + guaranteed arrows
   ============================================================ */
.nh-strip-img {
  height: 260px !important;
}
.nh-strip-img img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  padding: 0 !important;
  background: #F5F0E8 !important;
}

/* Force visible arrows inside transparent square buttons */
.nh-strip-btn {
  position: relative !important;
  color: #fff !important;
}
.nh-strip-btn svg {
  display: none !important;
}
#nh-prev.nh-strip-btn::before,
#nh-next.nh-strip-btn::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  color: currentColor;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
#nh-prev.nh-strip-btn::before { content: '\2039'; }
#nh-next.nh-strip-btn::before { content: '\203A'; }

/* Mobile arrow adjustments */
@media (max-width: 768px) {
  .nhp-arr {
    width: 34px !important;
    height: 34px !important;
    border-radius: 6px !important;
  }
  .nhp-arr svg {
    width: 14px !important;
    height: 14px !important;
  }
  .nhp-scroll-outer {
    padding: 0 24px !important;
  }
  .nhp-arr-l { left: 0px !important; }
  .nhp-arr-r { right: 0px !important; }
  .nhp-cat-scroll-col .nhp-pcard {
    width: 180px !important;
    min-width: 180px !important;
    flex: 0 0 180px !important;
  }
  .nhp-cat-scroll-col .nhp-pcard-img-wrap {
    min-height: 180px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   FIX BATCH 2 — Visual consistency, spacing, image fitting
   ════════════════════════════════════════════════════════════════ */

/* ── 1. ALL PRODUCT IMAGES → object-fit:cover for uniform fill ── */
.nhp-pcard-img {
  object-fit: cover !important;
  padding: 0 !important;
  background: #F5F0E8 !important;
}
.nhp-pcard-img-wrap {
  background: #F5F0E8 !important;
}

/* Category scroll cards — consistent cover images */
.nhp-cat-scroll-col .nhp-pcard-img {
  object-fit: cover !important;
  padding: 0 !important;
}

/* Bestsellers scroll cards */
.nhp-featured-section .nhp-pcard-img {
  object-fit: cover !important;
  padding: 0 !important;
}

/* ── 2. HAIR CARE DARK SECTION — fix invisible product info ── */
.nhp-pcard-dark .nhp-pcard-body {
  background: rgba(28,37,32,0.95) !important;
  padding: 14px 16px 16px !important;
}
.nhp-pcard-dark .nhp-pcard-name {
  color: #fff !important;
  font-size: 13px !important;
}
.nhp-pcard-dark .nhp-price-now {
  color: #fff !important;
}
.nhp-pcard-dark .nhp-price-was {
  color: rgba(255,255,255,0.5) !important;
}
.nhp-pcard-dark .nhp-pcard-foot {
  border-top-color: rgba(255,255,255,0.15) !important;
}
.nhp-pcard-dark .nhp-stars svg {
  opacity: 1 !important;
}
.nhp-pcard-dark .nhp-atc {
  background: #C17F3C !important;
  color: #fff !important;
}
.nhp-pcard-dark .nhp-atc:hover {
  background: #E67E22 !important;
}

/* ── 3. WHAT'S ON YOUR MIND — bigger circles, cover-fitted images ── */
.nhp-mind-img {
  width: 152px !important;
  height: 152px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #F5F0E8 !important;
  border: 3px solid #EDE5D4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}
.nhp-mind-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  border-radius: 50% !important;
}
.nhp-mind-pill {
  flex: 0 0 152px !important;
  gap: 14px !important;
}
.nhp-mind-pill p {
  font-size: 14px !important;
  font-weight: 600 !important;
}
.nhp-mind-section {
  padding: 48px 0 !important;
}
.nhp-mind-track {
  gap: 32px !important;
  padding: 8px 0 12px !important;
}

/* ── 4. 4-STEP ROUTINE — images cover-fitted uniformly ── */
.nhp-step-img {
  height: 260px !important;
  overflow: hidden !important;
}
.nhp-step-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.nhp-step-card {
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #fff !important;
}
.nhp-routine-section {
  padding: 48px 0 !important;
}
.nhp-routine-header {
  margin: 0 auto 32px !important;
}

/* ── 5. REDUCE EMPTY SPACE ACROSS THE WHOLE HOMEPAGE ── */

/* Section paddings — tighter */
.nhp-featured-section {
  padding: 40px 0 !important;
}
.nhp-cat-section {
  padding: 40px 0 !important;
}
.nhp-concern-section {
  padding: 40px 0 !important;
}
.nh-categories-section {
  padding: 36px 0 !important;
}
.nh-whyus-section {
  padding: 0 !important;
}
.nh-reviews-section {
  padding: 40px 0 !important;
}
.nh-insta-section {
  padding: 36px 0 40px !important;
}

/* Reels section tighter */
.nh-reels-section {
  padding: 32px 0 24px !important;
}
.nh-reels-header {
  margin-bottom: 16px !important;
  padding: 0 20px 0 !important;
}

/* Section heads tighter */
.nhp-section-head {
  margin-bottom: 20px !important;
}

/* Category cards section */
.nh-categories-inner .nh-section-h2 {
  margin-bottom: 16px !important;
}

/* Hero tighter */
.nh-hero {
  min-height: 720px !important;
}
.nh-hero-inner {
  min-height: 720px !important;
  padding-top: 80px !important;
  padding-bottom: 60px !important;
}

/* Concern cards — tighter grid */
.nhp-concern-grid {
  margin-top: 20px !important;
  gap: 14px !important;
}
.nhp-concern-card {
  min-height: 200px !important;
  padding: 24px 20px !important;
}

/* Cat split inner — tighter */
.nhp-cat-inner {
  gap: 36px !important;
  padding: 0 40px !important;
}

/* Body Care section padding */
.nhp-featured-section[style*="FFF9F0"] {
  padding: 40px 0 !important;
}

/* Scroll tracks — less bottom padding */
.nhp-scroll-track {
  padding-bottom: 4px !important;
}

/* Instagram grid tighter */
.nh-insta-sub {
  margin: 0 auto 28px !important;
}

/* Why Us section — tighter */
.nh-whyus-content {
  padding: 36px 24px !important;
}
@media (min-width: 768px) {
  .nh-whyus-content { padding: 40px 48px !important; }
}
.nh-whyus-h2 {
  margin-bottom: 24px !important;
}

/* Reviews — tighter */
.nh-reviews-h2 {
  margin-bottom: 12px !important;
}
.nh-reviews-link {
  margin-bottom: 20px !important;
}

/* Mobile: mind circles smaller */
@media (max-width: 768px) {
  .nhp-mind-img {
    width: 108px !important;
    height: 108px !important;
  }
  .nhp-mind-pill {
    flex: 0 0 108px !important;
  }
  .nhp-mind-track {
    gap: 16px !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }
  .nhp-step-img {
    height: 180px !important;
  }
  .nhp-mind-pill:nth-child(n+7) {
    display: flex !important;
  }
}