/* ── Variables (derived from logo: #976237 clay, #6B3E1F accent) ── */
:root {
  --clay-brand:   #976237;
  --clay-light:   #E6D5C3;
  --clay:         #D1A684;
  --clay-dark:    #6B3E1F;
  --clay-deep:    #8B5E35;
  --cream:        #F5EDE4;
  --text:         #5C3820;
  --text-muted:   #92704F;
  --white:        #FFFFFF;
  --shadow:       rgba(107, 62, 31, 0.14);
  --shadow-lg:    rgba(107, 62, 31, 0.22);
  --radius-sm:    12px;
  --radius-md:    18px;
  --radius-lg:    24px;
  --radius-pill:  999px;
  --header-h:     108px;
  --header-bg:    #6B4226;
  --header-text:  #F5EDE4;
  --header-accent:#E6D5C3;
  --brown-glow:   rgba(151, 98, 55, 0.2);
  --brown-mist:   rgba(107, 62, 31, 0.08);
  --brown-soft:   rgba(209, 160, 132, 0.35);
  --gradient-accent: linear-gradient(135deg, rgba(209, 160, 132, 0.95), rgba(151, 98, 55, 0.92), rgba(107, 62, 31, 0.9));
  --gradient-soft: linear-gradient(135deg, rgba(209, 160, 132, 0.22), rgba(151, 98, 55, 0.12));
  --gradient-border: linear-gradient(135deg, rgba(230, 213, 195, 0.9), rgba(209, 160, 132, 0.85), rgba(151, 98, 55, 0.75));
  --btn-bg: linear-gradient(135deg, #FBF3EC 0%, #EDD9C6 48%, #DFC4A8 100%);
  --btn-bg-hover: linear-gradient(135deg, #F8EBDD 0%, #E8CFAE 50%, #D4B088 100%);
  --btn-text: #5C3820;
  --btn-border: rgba(151, 98, 55, 0.42);
  --btn-shadow: rgba(151, 98, 55, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(209, 160, 132, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 8%, rgba(151, 98, 55, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(107, 62, 31, 0.07), transparent 45%),
    linear-gradient(165deg, var(--cream) 0%, rgba(245, 237, 228, 0.92) 50%, var(--cream) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── Scattered Background ── */
.bg-scatter {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.scatter {
  position: absolute;
  object-fit: contain;
  opacity: 0.18;
  filter: saturate(0.85);
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 3deg)); }
}

/* Individual scatter positions */
.scatter--neem-datun       { width: 110px; top: 8%;   left: 3%;   --rot: -25deg; animation-delay: 0s; }
.scatter--neem-datun-2     { width: 90px;  top: 55%;  left: 88%;  --rot: 15deg;  animation-delay: 2s; }
.scatter--neem-datun-3     { width: 75px;  top: 78%;  left: 12%;  --rot: -10deg; animation-delay: 4s; }
.scatter--neem-leaves-1    { width: 130px; top: 15%;  left: 75%;  --rot: 20deg;  animation-delay: 1s; }
.scatter--neem-leaves-2    { width: 100px; top: 42%;  left: 5%;   --rot: -30deg; animation-delay: 3s; }
.scatter--neem-leaves-3    { width: 85px;  top: 68%;  left: 70%;  --rot: 10deg;  animation-delay: 5s; }
.scatter--neem-leaves-4    { width: 95px;  top: 88%;  left: 45%;  --rot: -15deg; animation-delay: 2.5s; }
.scatter--neem-seeds-1     { width: 80px;  top: 5%;   left: 45%;  --rot: 5deg;   animation-delay: 0.5s; }
.scatter--neem-seeds-2     { width: 70px;  top: 35%;  left: 90%;  --rot: -20deg; animation-delay: 2.5s; }
.scatter--neem-seeds-3     { width: 65px;  top: 60%;  left: 25%;  --rot: 25deg;  animation-delay: 4.5s; }
.scatter--neem-seeds-4     { width: 55px;  top: 92%;  left: 80%;  --rot: -8deg;  animation-delay: 1.5s; }
.scatter--guava-stick-1    { width: 100px; top: 22%;  left: 18%;  --rot: 35deg;  animation-delay: 1.5s; }
.scatter--guava-stick-2    { width: 85px;  top: 50%;  left: 55%;  --rot: -18deg; animation-delay: 3.5s; }
.scatter--guava-stick-3    { width: 70px;  top: 72%;  left: 92%;  --rot: 22deg;  animation-delay: 5.5s; }
.scatter--guava-leaves-1   { width: 120px; top: 10%;  left: 58%;  --rot: -12deg; animation-delay: 0.8s; }
.scatter--guava-leaves-2   { width: 95px;  top: 38%;  left: 38%;  --rot: 28deg;  animation-delay: 2.8s; }
.scatter--guava-leaves-3   { width: 80px;  top: 65%;  left: 8%;   --rot: -22deg; animation-delay: 4.8s; }
.scatter--guava-leaves-4   { width: 75px;  top: 82%;  left: 62%;  --rot: 18deg;  animation-delay: 1.2s; }
.scatter--moringa-leaves-1 { width: 110px; top: 28%;  left: 82%;  --rot: -18deg; animation-delay: 1.8s; }
.scatter--moringa-leaves-2 { width: 90px;  top: 48%;  left: 15%;  --rot: 12deg;  animation-delay: 3.2s; }
.scatter--moringa-leaves-3 { width: 80px;  top: 75%;  left: 48%;  --rot: -28deg; animation-delay: 5.2s; }
.scatter--tulsi-leaves-1   { width: 115px; top: 12%;  left: 30%;  --rot: 14deg;  animation-delay: 1.1s; }
.scatter--tulsi-leaves-2   { width: 95px;  top: 33%;  left: 68%;  --rot: -24deg; animation-delay: 2.9s; }
.scatter--tulsi-leaves-3   { width: 85px;  top: 58%;  left: 42%;  --rot: 18deg;  animation-delay: 4.1s; }
.scatter--tulsi-leaves-4   { width: 70px;  top: 85%;  left: 22%;  --rot: -12deg; animation-delay: 3.6s; }

/* Header actions + cart */
.header-actions { display: flex; align-items: center; gap: 1rem; position: relative; }
.sc-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(245, 237, 228, 0.35);
  color: var(--header-text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.sc-cart-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28); background: rgba(255, 255, 255, 0.2); color: var(--white); }
.sc-cart-icon { display: block; }
.sc-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #E8C9AD, #C9956A);
  color: var(--white);
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid var(--header-bg);
}
.mini-cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 340px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border: 1px solid rgba(209,160,132,0.45);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px var(--shadow-lg);
  padding: 0;
  z-index: 200;
  overflow: hidden;
}
.mini-cart-dropdown.open { display: block; animation: miniCartIn 0.25s ease; }
@keyframes miniCartIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mini-cart-dropdown__inner { padding: 1rem; max-height: 420px; overflow-y: auto; }
.mini-cart-dropdown .woocommerce-mini-cart { list-style: none; margin: 0; padding: 0; }
.mini-cart-item { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.65rem 0; border-bottom: 1px solid rgba(209,160,132,0.25); }
.mini-cart-item:last-child { border-bottom: none; }
.mini-cart-item__thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(209,160,132,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 56px;
  max-height: 56px;
}
.mini-cart-item__body { flex: 1; min-width: 0; }
.mini-cart-item__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clay-dark);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}
.mini-cart-item__meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.mini-cart-item__meta .remove { font-size: 1.25rem; line-height: 1; color: var(--clay); padding: 0 0.25rem; }
.mini-cart-item__meta .remove:hover { color: #c0392b; }
.woocommerce-mini-cart__total { margin: 0.85rem 0 0.5rem; padding-top: 0.85rem; border-top: 1px solid rgba(209,160,132,0.35); font-size: 1rem; }
.woocommerce-mini-cart__buttons { display: flex; gap: 0.5rem; margin: 0; }
.woocommerce-mini-cart__buttons .button { flex: 1; text-align: center; font-size: 0.85rem !important; padding: 0.55rem 0.75rem !important; }
.woocommerce-mini-cart__empty-message { text-align: center; color: var(--text-muted); padding: 1.5rem 0.5rem; margin: 0; }
.site-header { position: fixed; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Category tiles */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; }
.category-tile { background: rgba(255,255,255,0.88); border: 1px solid rgba(209,160,132,0.4); border-radius: 16px; padding: 1.25rem; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
.category-tile:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(151, 98, 55, 0.2), 0 4px 16px var(--shadow); border-color: rgba(151, 98, 55, 0.45); }
.category-tile img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 0.75rem; }
.category-tile span { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--clay-dark); }

/* Carousel */
.product-carousel-wrap { position: relative; }
.product-carousel { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; scrollbar-width: none; }
.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel .wc-product-card { flex: 0 0 min(280px, 85vw); scroll-snap-align: start; list-style: none; }
.carousel-btn { position: absolute; top: 45%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--btn-border); background: var(--btn-bg); color: var(--btn-text); font-size: 1.5rem; cursor: pointer; z-index: 2; box-shadow: 0 4px 14px var(--btn-shadow); transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.carousel-btn:hover { background: var(--btn-bg-hover); transform: translateY(-50%) scale(1.05); box-shadow: 0 6px 18px rgba(107, 62, 31, 0.28); }
.carousel-prev { left: -12px; }
.carousel-next { right: -12px; }
.text-center { text-align: center; }

/* PLP */
.plp-hero { background: linear-gradient(135deg, rgba(209,160,132,0.18), rgba(151,98,55,0.1), rgba(230,213,195,0.45)); padding: 2rem 0 1rem; margin-top: 0; }
.plp-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
.plp-sidebar { background: rgba(255,255,255,0.88); border: 1px solid rgba(209,160,132,0.35); border-radius: 14px; padding: 1.25rem; height: fit-content; }
.plp-sidebar h2 { font-family: 'Cormorant Garamond', serif; color: var(--clay-dark); margin-bottom: 1rem; }
.plp-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.plp-toolbar .woocommerce-result-count {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}
.plp-toolbar .woocommerce-ordering {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}
.plp-toolbar .woocommerce-ordering::before {
  content: 'Sort by';
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.plp-toolbar .woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: min(240px, 56vw);
  padding: 0.72rem 2.65rem 0.72rem 1.15rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--btn-text);
  cursor: pointer;
  border: 1.5px solid var(--btn-border);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--btn-shadow);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background-color: #FBF3EC;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C3820' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #FBF3EC 0%, #EDD9C6 48%, #DFC4A8 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 1rem center, 0 0;
  background-size: 14px, auto;
}
.plp-toolbar .woocommerce-ordering select.orderby:hover {
  border-color: rgba(151, 98, 55, 0.55);
  box-shadow: 0 6px 18px rgba(107, 62, 31, 0.22);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B3E1F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #F8EBDD 0%, #E8CFAE 50%, #D4B088 100%);
}
.plp-toolbar .woocommerce-ordering select.orderby:focus {
  outline: none;
  border-color: rgba(151, 98, 55, 0.65);
  box-shadow: 0 0 0 3px rgba(151, 98, 55, 0.16), 0 4px 14px var(--btn-shadow);
}
.plp-toolbar .woocommerce-ordering select.orderby option {
  color: var(--text);
  background: var(--cream);
}
.woocommerce-main ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.wc-product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wc-product-card .price {
  display: block;
  margin: 0.75rem 0 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.wc-product-card .button,
.wc-product-card a.add_to_cart_button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
.product-carousel .wc-product-card .price { margin: 0.65rem 0 0.85rem; }
.product-carousel .wc-product-card .button { margin-top: 0; }
.wc-product-card .button, .woocommerce a.button, .woocommerce button.button {
  background: var(--btn-bg) !important;
  color: var(--btn-text) !important;
  border: 1.5px solid var(--btn-border) !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.65rem 1.25rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px var(--btn-shadow) !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.wc-product-card .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--btn-bg-hover) !important;
  color: var(--clay-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(107, 62, 31, 0.26) !important;
}
.woocommerce-loop-product__title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--clay-dark); margin: 0.5rem 0; }
.woocommerce .price, .woocommerce-Price-amount { color: var(--clay-deep); font-weight: 600; }
.woocommerce-pagination {
  margin-top: 2.5rem;
  clear: both;
}
.woocommerce-pagination ul { display: flex; gap: 0.5rem; list-style: none; justify-content: center; margin: 0; padding: 0; }
.woocommerce-pagination a, .woocommerce-pagination span { padding: 0.5rem 0.85rem; border-radius: 8px; background: rgba(255,255,255,0.85); border: 1px solid var(--clay); }

/* PDP */
.sc-pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.sc-pdp-summary .product_title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--clay-dark); margin-bottom: 0.75rem; }
.sc-natural-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.sc-natural-badges span { background: rgba(230,213,195,0.6); border: 1px solid var(--clay); border-radius: 999px; padding: 0.35rem 0.85rem; font-size: 0.85rem; }
.sc-sticky-cart { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--clay-light); border-top: 2px solid var(--clay); padding: 0.75rem 0; z-index: 150; box-shadow: 0 -4px 20px var(--shadow); }
.sc-sticky-cart.is-visible { display: block; }
.sc-sticky-cart__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sc-sticky-cart__title { font-weight: 600; color: var(--clay-dark); max-width: 50%; }

@media (max-width: 900px) {
  .plp-layout { grid-template-columns: 1fr; }
  .sc-pdp-grid { grid-template-columns: 1fr; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
}

@media (max-width: 768px) {
  .sc-sticky-cart { display: block; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 24px rgba(43, 24, 12, 0.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  height: 96px;
  width: auto;
  max-width: min(300px, 52vw);
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--header-text);
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clay), var(--clay-brand));
  transition: width 0.25s;
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Main Content ── */
main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.plp-layout {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--clay-dark) 15%, var(--clay-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 680px;
  background:
    linear-gradient(rgba(251, 243, 236, 0.92), rgba(245, 237, 228, 0.88)) padding-box,
    var(--gradient-border) border-box;
  backdrop-filter: blur(8px);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 8px 40px var(--shadow), 0 0 48px var(--brown-glow);
}

.hero-content > *:not(.hero-tree) {
  position: relative;
  z-index: 1;
}

/* ── Hero growing tree ── */
.hero-tree {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: min(600px, 112%);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-tree__growth {
  opacity: 0.4;
}

.hero-tree__canopy {
  opacity: 0.5;
}

.hero-tree__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-tree__ground {
  fill: rgba(107, 62, 31, 0.16);
  transform-box: fill-box;
  transform-origin: center;
}

.hero-tree__sway {
  transform-origin: 200px 307px;
}

.hero-tree__branch {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.hero-tree__leaf {
  transform-box: fill-box;
  transform-origin: center;
}

.hero-tree__canopy {
  transform-origin: 200px 215px;
}

/* Leaf pivots near its stem so it flutters like it is catching air. */
.hero-tree__flutter {
  transform-box: fill-box;
  transform-origin: 0% 50%;
  transform: scale(var(--s, 1));
}

.hero-tree__leaf:nth-child(5n+1) .hero-tree__flutter { --f: 3.1s; --fd: 2.6s; }
.hero-tree__leaf:nth-child(5n+2) .hero-tree__flutter { --f: 4.3s; --fd: 3.1s; }
.hero-tree__leaf:nth-child(5n+3) .hero-tree__flutter { --f: 3.7s; --fd: 2.85s; }
.hero-tree__leaf:nth-child(5n+4) .hero-tree__flutter { --f: 5s; --fd: 3.4s; }
.hero-tree__leaf:nth-child(5n+5) .hero-tree__flutter { --f: 4s; --fd: 2.7s; }

.hero.is-visible .hero-tree__ground {
  animation: scTreeGround 1s ease-out 0.15s both;
}

.hero.is-visible .hero-tree__branch {
  animation: scTreeGrow 1.5s ease-out 0.2s both;
}

.hero.is-visible .hero-tree__branch:nth-of-type(2),
.hero.is-visible .hero-tree__branch:nth-of-type(3) {
  animation-duration: 0.7s;
  animation-delay: 1s;
}

.hero.is-visible .hero-tree__branch:nth-of-type(4),
.hero.is-visible .hero-tree__branch:nth-of-type(5) {
  animation-duration: 0.65s;
  animation-delay: 1.25s;
}

.hero.is-visible .hero-tree__branch:nth-of-type(6),
.hero.is-visible .hero-tree__branch:nth-of-type(7) {
  animation-duration: 0.6s;
  animation-delay: 1.45s;
}

.hero.is-visible .hero-tree__leaf {
  animation: scTreeLeaf 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) var(--d, 1.6s) both;
}

.hero.is-visible .hero-tree__sway {
  animation: scTreeSway 8s ease-in-out 2.6s infinite;
}

.hero.is-visible .hero-tree__canopy {
  animation: scCanopyDrift 6.5s ease-in-out 2.6s infinite;
}

.hero.is-visible .hero-tree__flutter {
  animation: scLeafFlutter var(--f, 3.8s) ease-in-out var(--fd, 2.8s) infinite both;
}

@keyframes scTreeGrow {
  from { stroke-dashoffset: 1; }
  to   { stroke-dashoffset: 0; }
}

@keyframes scTreeLeaf {
  0%   { opacity: 0; transform: scale(0.15); }
  70%  { opacity: 1; transform: scale(1.14); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes scTreeGround {
  from { opacity: 0; transform: scaleX(0.35); }
  to   { opacity: 1; transform: scaleX(1); }
}

@keyframes scTreeSway {
  0%, 100% { transform: rotate(-1.1deg); }
  50%      { transform: rotate(1.1deg); }
}

@keyframes scCanopyDrift {
  0%, 100% { transform: translateX(-2.5px) rotate(-0.6deg); }
  50%      { transform: translateX(2.5px) rotate(0.6deg); }
}

/* scaleY after rotate squeezes the blade, faking a leaf twisting in the breeze. */
@keyframes scLeafFlutter {
  0%   { transform: scale(var(--s, 1)) rotate(0deg) scaleY(1); }
  18%  { transform: scale(var(--s, 1)) rotate(5.5deg) scaleY(0.84); }
  42%  { transform: scale(var(--s, 1)) rotate(-3deg) scaleY(1.06); }
  68%  { transform: scale(var(--s, 1)) rotate(4deg) scaleY(0.9); }
  100% { transform: scale(var(--s, 1)) rotate(0deg) scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-visible .hero-tree__ground,
  .hero.is-visible .hero-tree__branch,
  .hero.is-visible .hero-tree__leaf,
  .hero.is-visible .hero-tree__sway,
  .hero.is-visible .hero-tree__canopy,
  .hero.is-visible .hero-tree__flutter {
    animation: none;
  }
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clay-dark);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--clay-brand);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 1.5px solid var(--btn-border);
  box-shadow: 0 4px 16px var(--btn-shadow);
}

.btn-primary:hover {
  background: var(--btn-bg-hover);
  color: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 62, 31, 0.28);
}

.btn-outline {
  border: 2px solid var(--btn-border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--clay-deep);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(251, 243, 236, 0.95), rgba(237, 217, 198, 0.85));
  border-color: rgba(151, 98, 55, 0.55);
  transform: translateY(-2px);
}

/* ── Products ── */
.products {
  background: linear-gradient(180deg, rgba(209,160,132,0.1), rgba(151,98,55,0.06), rgba(230, 213, 195, 0.35));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(209, 160, 132, 0.4);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-img-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  max-height: 130px;
  object-fit: contain;
}

.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--clay-dark);
  margin-bottom: 0.6rem;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-text strong {
  color: var(--clay-dark);
}

.about-visual {
  position: relative;
  min-height: 320px;
}

.about-feature-img {
  position: absolute;
  width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px var(--shadow));
}

.about-feature-img:first-child {
  top: 0;
  left: 10%;
  transform: rotate(-8deg);
}

.about-feature-img--2 {
  bottom: 0;
  right: 5%;
  width: 180px;
  transform: rotate(12deg);
}

/* ── Benefits ── */
.benefits {
  background: linear-gradient(180deg, rgba(151,98,55,0.08), rgba(209,160,132,0.1), rgba(230, 213, 195, 0.3));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 160, 132, 0.35);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s;
}

.benefit-item:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(151, 98, 55, 0.18); }

.benefit-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.benefit-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--clay-dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Contact (homepage) ── */
.contact {
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(151, 98, 55, 0.14), transparent 60%),
    linear-gradient(180deg, transparent, rgba(209, 160, 132, 0.12) 45%, rgba(151, 98, 55, 0.08));
}

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

.contact-panel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 2.5rem 2.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(251, 243, 236, 0.92));
  border: 1.5px solid rgba(151, 98, 55, 0.28);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 50px rgba(107, 62, 31, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 0 64px rgba(151, 98, 55, 0.12);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.contact-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 70%);
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(209, 160, 132, 0.85), rgba(151, 98, 55, 0.9), rgba(209, 160, 132, 0.85), transparent);
}

.contact-panel__header {
  position: relative;
  z-index: 1;
}

.contact-panel__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  background: rgba(209, 160, 132, 0.22);
  border: 1px solid rgba(151, 98, 55, 0.25);
  border-radius: var(--radius-pill);
}

.contact-panel__title {
  margin-bottom: 0.65rem;
}

.contact-panel__subtitle {
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.contact-card-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.75rem 1.15rem 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1.5px solid rgba(151, 98, 55, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(107, 62, 31, 0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.contact-card-home:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(151, 98, 55, 0.45);
  box-shadow: 0 16px 36px rgba(151, 98, 55, 0.2);
}

.contact-card-home__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-border);
  color: var(--clay-deep);
  box-shadow: 0 6px 16px var(--btn-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card-home__icon svg {
  width: 26px;
  height: 26px;
}

.contact-card-home:hover .contact-card-home__icon {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(107, 62, 31, 0.22);
}

.contact-card-home__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card-home__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card-home__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clay-dark);
  line-height: 1.4;
  word-break: break-word;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 160, 132, 0.4);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.contact-link:hover {
  background: var(--clay-light);
  transform: scale(1.03);
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(230, 213, 195, 0.45), var(--clay-light) 42%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, rgba(209, 160, 132, 0.6), rgba(151, 98, 55, 0.75), var(--clay)) 1;
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--btn-text);
  border: 1.5px solid var(--btn-border);
  background: var(--btn-bg);
  box-shadow: 0 4px 12px var(--btn-shadow);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.footer-social__link--instagram,
.footer-social__link--facebook {
  background: var(--btn-bg);
  box-shadow: 0 4px 12px var(--btn-shadow);
}

.footer-social__link:hover {
  background: var(--btn-bg-hover);
  color: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 62, 31, 0.24);
}

.footer-social__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--clay-brand); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--clay);
  margin-top: 0.5rem;
}

/* ── Mobile Nav ── */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 28px rgba(43, 24, 12, 0.35);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    pointer-events: none;
  }

  .main-nav a { color: var(--header-text); font-size: 1.05rem; }

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

  .nav-toggle { display: flex; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .logo-img {
    height: 84px;
    max-width: min(240px, 58vw);
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 240px; }

  .scatter { opacity: 0.12; }

  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-tree { width: 128%; }
  .hero-tree__growth { opacity: 0.28; }
  .hero-tree__canopy { opacity: 0.34; }

  /* SVG transforms are not GPU composited; drop the per-leaf flutter on phones. */
  .hero.is-visible .hero-tree__flutter { animation: none; }

  .plp-toolbar { flex-direction: column; align-items: stretch; }
  .plp-toolbar .woocommerce-ordering { width: 100%; }
  .plp-toolbar .woocommerce-ordering select.orderby { width: 100%; min-width: 0; }

  .contact-panel { padding: 2.25rem 1.25rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-card-home { flex-direction: row; text-align: left; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem; }
  .contact-card-home__icon { width: 52px; height: 52px; margin-bottom: 0; flex-shrink: 0; }
  .contact-card-home__icon svg { width: 22px; height: 22px; }
  .contact-card-home__body { text-align: left; }
}

@media (max-width: 480px) {
  .scatter { opacity: 0.09; width: 60px !important; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
}

/* ── PDP quantity stepper ── */
.sc-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--clay);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(107,62,31,0.06);
}
.sc-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--clay-light);
  color: var(--clay-dark);
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  padding: 0;
}
.sc-qty-btn:hover { background: var(--btn-bg-hover); color: var(--btn-text); border-color: var(--btn-border); }
.sc-qty-input,
.sc-pdp-summary .quantity input.qty {
  width: 3.5rem !important;
  height: 44px !important;
  border: none !important;
  border-radius: 0 !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: var(--clay-dark) !important;
  background: transparent !important;
  box-shadow: none !important;
  -moz-appearance: textfield;
}
.sc-qty-input::-webkit-outer-spin-button,
.sc-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sc-pdp-summary form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.sc-pdp-summary .single_add_to_cart_button { flex: 1; min-width: 160px; }

/* ── Page hero (About / Contact) ── */
.page-hero {
  background: linear-gradient(135deg, rgba(209,160,132,0.16), rgba(151,98,55,0.08), rgba(245,237,228,0.92));
  padding: 3rem 0 2.5rem;
  margin-top: 0;
  border-bottom: 1px solid rgba(209,160,132,0.35);
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--clay-dark);
  margin-bottom: 0.5rem;
}
.page-hero__subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; }

/* ── About page ── */
.about-page__intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--clay-brand);
}
.about-page__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.about-page__block {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(209,160,132,0.35);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 8px 24px var(--shadow);
}
.about-page__block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--clay-dark);
  margin-bottom: 0.85rem;
}
.about-page__block p { color: var(--text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.about-page__list { list-style: none; padding: 0; }
.about-page__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.about-page__list li::before { content: '🌿'; position: absolute; left: 0; font-size: 0.75rem; }
.about-page__cta { text-align: center; margin-top: 2.5rem; }

/* ── Contact page ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(209,160,132,0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateY(-6px); }
.contact-card__icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.contact-card h2 { font-family: 'Cormorant Garamond', serif; color: var(--clay-dark); margin-bottom: 0.5rem; }
.contact-card__value { display: block; font-weight: 600; font-size: 1.05rem; color: var(--clay-brand); margin-bottom: 0.35rem; }
.contact-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── PLP sidebar polish ── */
.plp-sidebar .widget { margin-bottom: 1.25rem; }
.plp-sidebar .widget-title,
.plp-sidebar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--clay-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(209,160,132,0.35);
}
.plp-sidebar ul { list-style: none; padding: 0; }
.plp-sidebar ul li { margin-bottom: 0.35rem; }
.plp-sidebar ul li a { font-size: 0.92rem; color: var(--text); transition: color 0.2s; }
.plp-sidebar ul li a:hover { color: var(--clay-brand); }
.plp-sidebar .button { border-radius: var(--radius-pill) !important; width: 100%; margin-top: 0.5rem; }

/* ── Modern card refresh ── */
.product-card,
.category-tile,
.benefit-item {
  box-shadow: 0 8px 28px var(--shadow);
  backdrop-filter: blur(8px);
}
.category-tile { border-radius: var(--radius-md); }
.product-card { border-radius: var(--radius-md); padding: 1.5rem 1.25rem 1.25rem; }

/* INR price styling */
.woocommerce-Price-currencySymbol { margin-right: 2px; }
.woocommerce-Price-amount { font-variant-numeric: tabular-nums; }
