/*
  Cauvery Theme — Craft Heaven Preview
  =========================================
  Brand: Handmade resin art, candles & concrete décor + craft raw materials
  Palette: Pine green (#114A34) + metallic gold (#C2992E) + warm cream (#F7F4EE)
  Derived from the "ch" gold-on-green monogram logo.
*/

:root {
  /* Brand */
  --primary: #114A34;
  --primary-dark: #0C3525;
  --primary-light: #E7F1EB;
  --accent: #C2992E;
  --accent-dark: #9C7A20;
  --gold-bright: #E7C66B;
  /* legible gold for text on dark green */

  /* Neutrals */
  --warm-bg: #F7F4EE;
  --surface: #FFFFFF;
  --border: #E6E1D6;
  --text-dark: #1C1C1C;
  --text-muted: #6B6B6B;

  /* Product card (Cauvery: CSS-var controlled) */
  --price-color: #114A34;
  --discount-tag-bg: #C2992E;
  --discount-tag-color: #FFFFFF;

  /* Layout */
  --page-px: 4rem;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.13);
}

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

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* Full-width section background wrappers */
.section-wrap {
  width: 100%;
}

.section-wrap.cream {
  background: var(--warm-bg);
}

/* ════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════ */
.ann-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  position: relative;
  z-index: 200;
}

.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-px);
}

.ann-items {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.ann-items strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.ann-div {
  color: rgba(255, 255, 255, 0.3);
  padding: 0 1rem;
}

.ann-close {
  position: absolute;
  right: var(--page-px);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.ann-close:hover {
  color: white;
}

/* ════════════════════════════════
   HEADER (Cauvery: fixed, dark green)
════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 13px 0;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(231, 198, 107, 0.5);
  flex-shrink: 0;
}

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

.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.logo-name span {
  color: var(--accent);
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Search — matches platform DesktopSearchBar: white pill, left icon, input */
.header-search {
  flex: 1;
  max-width: 530px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
  padding: 0 12px;
}

.search-bar:focus-within {
  border-color: var(--primary);
  background: #fff;
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 8px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
}

.search-input::placeholder {
  color: #9CA3AF;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  margin-left: auto;
  /* push Account/Cart to the far right */
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.header-action:hover {
  color: var(--primary);
}

.action-label {
  font-size: 0.67rem;
  font-weight: 500;
}

.cart-wrap {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sub-menu nav bar (Cauvery feature) */
.header-subnav {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.subnav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

.subnav-inner::-webkit-scrollbar {
  display: none;
}

.subnav-link {
  padding: 10px 18px;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.subnav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.subnav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero-section {
  background: #0A2E20;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  z-index: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark on the LEFT for white-text legibility; fade to reveal the warm product
     photo on the right. */
  z-index: 1;
  /* above the bg image (z-index 0), below the content */
  background:
    linear-gradient(to right,
      rgba(8, 40, 28, 0.90) 0%,
      rgba(8, 40, 28, 0.82) 38%,
      rgba(8, 40, 28, 0.58) 50%,
      rgba(8, 40, 28, 0.20) 66%,
      rgba(8, 40, 28, 0) 80%),
    radial-gradient(ellipse at 78% 55%, rgba(194, 153, 46, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px var(--page-px) 60px;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(194, 153, 46, 0.18);
  border: 1px solid rgba(194, 153, 46, 0.4);
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .accent {
  color: var(--gold-bright);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  line-height: 1.7;
  max-width: 480px;
  text-shadow: 0 1px 12px rgba(8, 40, 28, 0.5);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 6px 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--accent);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero offer panel */
.hero-visual {
  flex-shrink: 0;
  width: 380px;
}

.hero-offer-panel {
  background: rgba(8, 40, 28, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(231, 198, 107, 0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hero-panel-header {
  background: rgba(194, 153, 46, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-panel-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel-brands {
  padding: 4px 0;
}

.hero-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
  cursor: pointer;
}

.hero-panel-row:last-child {
  border-bottom: none;
}

.hero-panel-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel-brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-panel-offer {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-bright);
  background: rgba(194, 153, 46, 0.2);
  border: 1px solid rgba(194, 153, 46, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-panel-stats {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.hero-panel-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s;
}

.hero-panel-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

/* ════════════════════════════════
   SECTION COMMON
════════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.48rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.view-all-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.view-all-link:hover {
  text-decoration: underline;
}

.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0 1.4rem;
}

.collection-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-dark);
}

.shop-all-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.shop-all-link:hover {
  text-decoration: underline;
}

/* ════════════════════════════════
   CATEGORIES
════════════════════════════════ */
.cat-section {
  background: var(--warm-bg);
}

.cat-section.page-container {
  padding: 3.5rem var(--page-px);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cat-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.cat-card:hover .cat-img-wrap {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.cat-card:hover .cat-img {
  transform: scale(1.06);
}

.cat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.35;
}

/* Category gradient fills (used where no photo is available yet) */
.bg-vinyl {
  background: linear-gradient(145deg, #114A34 0%, #2E7A55 55%, #C2992E 100%);
}

.bg-gifts {
  background: linear-gradient(145deg, #5C3A12 0%, #A8782C 55%, #E7C66B 100%);
}

.cat-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

/* ════════════════════════════════
   TRUST STRIP
════════════════════════════════ */
.trust-strip {
  background: white;
}

.trust-inner {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-px);
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.3rem;
}

.trust-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.trust-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ════════════════════════════════
   PRODUCT CARD (Cauvery style)
════════════════════════════════ */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}

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

.product-card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

.product-card-wish {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.product-card-wish:hover {
  border-color: #e53e3e;
  color: #e53e3e;
}

.product-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--warm-bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-add {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 1.5px 1.5px 0 0 var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}

.product-add:hover {
  background: var(--primary);
  color: white;
}

.product-info {
  padding: 12px 12px 8px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.price-now {
  font-size: 1rem;
  font-weight: 700;
  color: var(--price-color);
}

.price-mrp {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-off {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
}

.product-name {
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════
   SINGLE-ROW COLLECTION
════════════════════════════════ */
.prod-section {
  padding: 0 var(--page-px) 3.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ════════════════════════════════
   GENERIC COLLECTION CARD
   (Banner left + products right)
════════════════════════════════ */
.generic-coll {
  padding: 0 var(--page-px) 3.5rem;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.coll-banner-wrap {
  width: 26%;
  min-width: 280px;
  flex: none;
  border-radius: 14px;
  overflow: hidden;
}

.coll-banner {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.coll-banner-inner {
  height: 100%;
  min-height: 340px;
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.coll-banner-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coll-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 38, 26, 0.92) 0%, rgba(8, 38, 26, 0.5) 55%, transparent 100%);
}

.coll-banner-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
  text-align: center;
}

.coll-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.coll-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.coll-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  line-height: 1.5;
}

.coll-btn {
  background: white;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.2s;
}

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

.coll-products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-content: start;
}

/* ════════════════════════════════
   FULL-WIDTH PROMO BANNER
════════════════════════════════ */
.promo-section {
  padding: 0 var(--page-px) 3.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.promo-banner {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A2E20 0%, #114A34 60%, #C2992E 100%);
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 38, 26, 0.95) 0%, rgba(8, 38, 26, 0.8) 50%, rgba(8, 38, 26, 0.3) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 3.5rem;
}

.promo-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.15;
}

.promo-title span {
  color: var(--gold-bright);
}

.promo-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 22px;
  max-width: 420px;
  line-height: 1.6;
}

.promo-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 6px;
  transition: all 0.2s;
}

.promo-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testi-section {
  background: var(--surface);
}

.testi-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.5rem var(--page-px);
}

.testi-head {
  text-align: center;
  margin-bottom: 30px;
}

.testi-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}

.testi-title {
  font-size: 1.6rem;
  display: inline-block;
}

.testi-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* center the underline */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  position: relative;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}

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

.testi-quote-mark {
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}

.testi-stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--av, var(--primary));
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testi-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.testi-verified {
  color: var(--primary);
  flex-shrink: 0;
}

.testi-role {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.why-section {
  background: var(--warm-bg);
}

.why-section .why-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.5rem var(--page-px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.why-card {
  background: white;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.22s, transform 0.22s;
}

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

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.why-card-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* WhatsApp CTA bar */
.whatsapp-bar {
  background: white;
  border-radius: 14px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border);
}

.whatsapp-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.whatsapp-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.btn-whatsapp:hover {
  background: #1aa84f;
  transform: translateY(-1px);
}

/* ════════════════════════════════
   "WHAT YOU CAN MAKE" CHIPS STRIP
════════════════════════════════ */
.brands-wrap {
  background: white;
}

.brands-section {
  padding: 2.5rem var(--page-px);
  max-width: 1440px;
  margin: 0 auto;
}

.brands-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.brand-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.brand-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: var(--primary-dark);
  padding: 48px 0 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
}

.footer-brand-name span {
  color: var(--gold-bright);
}

.footer-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 18px;
}

.footer-contact p {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.footer-heading {
  font-size: 0.77rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px var(--page-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.28);
}

.pay-badges {
  display: flex;
  gap: 6px;
}

.pay-badge {
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

/* ════════════════════════════════
   TABLET ≤1100px
════════════════════════════════ */
@media (max-width: 1100px) {
  :root {
    --page-px: 2rem;
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section .why-inner {
    padding: 2.5rem var(--page-px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-visual {
    width: 300px;
  }

  .coll-banner-wrap {
    min-width: 220px;
  }
}

/* ════════════════════════════════
   MOBILE ≤768px
════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --page-px: 1rem;
  }

  /* Announcement */
  .ann-div {
    display: none;
  }

  .ann-items {
    line-height: 1.8;
    flex-direction: column;
  }

  .ann-close {
    right: 0.5rem;
  }

  /* Header */
  .header-main {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 10px var(--page-px);
  }

  .header-logo {
    order: 1;
  }

  .header-actions {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  .header-search {
    order: 3;
    width: 100%;
    flex: none;
    max-width: none;
  }

  .search-bar {
    height: 40px;
  }

  .logo-name {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    padding: 36px var(--page-px) 44px;
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .btn-primary {
    padding: 11px 24px;
    font-size: 0.88rem;
  }

  /* Categories */
  .cat-section {
    padding: 2rem var(--page-px);
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cat-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  /* Trust strip */
  .trust-inner {
    flex-wrap: wrap;
    padding: 0 var(--page-px);
  }

  .trust-item {
    width: 50%;
    border-right: none;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

  .trust-icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* Products */
  .prod-section {
    padding: 0 var(--page-px) 2rem;
  }

  .collection-header {
    padding: 2rem 0 1rem;
  }

  .product-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Generic collection */
  .generic-coll {
    flex-direction: column;
    padding: 0 var(--page-px) 2rem;
  }

  .coll-banner-wrap {
    width: 100%;
    min-width: 0;
  }

  .coll-banner-inner {
    min-height: 220px;
  }

  .coll-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Promo */
  .promo-section {
    padding: 0 var(--page-px) 2rem;
  }

  .promo-content {
    padding: 1.8rem 1.6rem;
  }

  .promo-title {
    font-size: 1.4rem;
  }

  .promo-sub {
    max-width: 100%;
  }

  /* Testimonials */
  .testi-inner {
    padding: 2.2rem var(--page-px);
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testi-title {
    font-size: 1.25rem;
  }

  /* Why */
  .why-section .why-inner {
    padding: 2rem var(--page-px);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-card {
    padding: 20px 16px;
  }

  .whatsapp-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Footer */
  .site-footer {
    padding: 36px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-sep {
    margin: 0;
  }

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

  .pay-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Chips */
  .brands-row {
    gap: 8px;
  }
}

.section {
  padding: 5px;
}

/* =========================================================
   FINAL REQUESTED FIXES — header/nav, product center, section padding, mobile review scroll
   ========================================================= */

:root {
  --primary-main: #FFFFFF !important;
  --header-accent: #000000;
}

.header-desktop-wrapper,
.desktop-nav-wrapper {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
}

/* Keep original section spacing. Only apply this global section padding. */
.section {
  padding: 5px !important;
  background-color: #F7F4EE;
}

/* Heading title same as other section/category titles */
.heading-title {
  font-size: 1.48rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  position: relative !important;
  padding-bottom: 10px !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.heading-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 40px !important;
  height: 3px !important;
  background: var(--accent) !important;
  border-radius: 2px !important;
}

/* Product card name, sale price and MRP center aligned */
.product-card,
.product-info,
.product-card-content,
.product-card-body {
  text-align: center !important;
}

.product-name,
.product-card-name,
.product-card-title,
.product-title,
.product-card .name,
.product-card [class*="product-card-name"],
.product-card [class*="ProductCardName"] {
  text-align: center !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.price-row,
.product-card-price-row,
.product-price-row,
.product-card .price-row,
.product-card .flex.items-center,
.product-card .flex.items-baseline,
.product-card [class*="price-row"],
.product-card [class*="PriceRow"] {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

.price-now,
.price-mrp,
.price-off,
.product-card-price,
.product-card-sale-price,
.product-card-mrp-price,
.sale-price,
.mrp-price,
.product-card [class*="sale-price"],
.product-card [class*="mrp"],
.product-card [class*="MRP"],
.product-card [class*="price"] {
  text-align: center !important;
}

/* Notice padding remove */
.notice {
  padding: 0 !important;
}

/* nav-link same as existing navigation style */
.nav-link {
  padding: 10px 18px !important;
  font-size: 0.79rem !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  white-space: nowrap !important;
  border-bottom: 2px solid transparent !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  text-decoration: none !important;
}

.nav-link:hover {
  color: var(--primary) !important;
  border-bottom-color: var(--accent) !important;
  text-decoration: none !important;
}

.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--primary) !important;
  border-bottom-color: var(--primary) !important;
  font-weight: 600 !important;
}

.desktop-nav .nav-link,
.desktop-nav-wrapper .nav-link {
  display: inline-flex !important;
  align-items: center !important;
}

/* Mobile review/testimonial section: horizontal scroll with 1.5 card visible */
@media (max-width: 768px) {

  .testi-grid,
  .review-grid,
  .reviews-grid,
  .customer-review-grid,
  .testimonial-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .testi-grid::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar,
  .customer-review-grid::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testi-grid,
  .review-grid,
  .reviews-grid,
  .customer-review-grid,
  .testimonial-grid {
    scrollbar-width: none !important;
  }

  .testi-card,
  .review-card,
  .customer-review-card,
  .testimonial-card {
    flex: 0 0 66% !important;
    max-width: 66% !important;
    min-width: 66% !important;
    scroll-snap-align: start !important;
  }
}

/* Mobile announcement bar scrolling */
@media (max-width: 768px) {
  .ann-bar {
    width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    padding: 0 !important;
  }

  .ann-inner {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    justify-content: flex-start !important;
  }

  .ann-items {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    text-align: left !important;
    line-height: 1.4 !important;
    padding: 8px 0 !important;
    animation: craftAnnouncementScroll 18s linear infinite !important;
    will-change: transform !important;
  }

  .ann-items span,
  .ann-items strong {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }

  .ann-div {
    display: inline-block !important;
    padding: 0 1rem !important;
    flex: 0 0 auto !important;
  }

  .ann-close {
    display: none !important;
  }

  .ann-bar:hover .ann-items {
    animation-play-state: paused !important;
  }
}

@keyframes craftAnnouncementScroll {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* =========================================================
   FINAL FIX: Testimonial + mobile category spacing
   ========================================================= */
.testi-inner {
  padding-top: 0 !important;
  padding-left: 0 !important;
}

@media (max-width: 768px) {
  .testi-inner {
    padding-top: 0 !important;
    padding-left: 0 !important;
  }

  .cat-section {
    padding: 1px var(--page-px) !important;
  }
}

/* =========================================================
   FINAL FIX: Home page background color
   ========================================================= */
body,
main,
#root,
.home-page,
.homepage,
.home-main,
.main-content,
.page-wrapper {
  background-color: #F7F4EE !important;
}

.brands-section {
  background-color: #F7F4EE;
}

@media (max-width: 768px) {
  .testi-inner {

    background-color: #F7F4EE;
  }
}