/*
Theme Name: VitaRoot Custom Theme
Author: VitaRoot
Version: 1.0
*/

:root{
  --vr-emerald:#0F2B22;
  --vr-emerald-2:#14362C;
  --vr-gold:#C8A44D;
  --vr-gold-soft:#D9BF77;
  --vr-paper:#FBFAF6;
  --vr-charcoal:#121614;
  --vr-border:rgba(200,164,77,.22);
  --vr-radius:18px;
  --vr-shadow:0 18px 55px rgba(0,0,0,.25);
  --vr-bg:#f4f0e7;
  --vr-cream:#f4f0e7;
  --vr-white:#ffffff;
  --vr-muted:#4b534e;
  --vr-card:rgba(255,255,255,.75);
  --vr-dark-card:linear-gradient(135deg,#0c2f23 0%,#13503b 100%);
}

/* BASE */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  height:100%;
  margin:0;
  overflow-x:hidden;
  max-width:100%;
}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--vr-bg);
  color:var(--vr-charcoal);
}

img,
svg,
video,
canvas,
iframe{
  max-width:100%;
  height:auto;
  display:block;
}

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

/* CONTAINER */
.vr-container{
  width:min(1320px,100%);
  max-width:100%;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

/* PAGE */
.vr-page{
  background:var(--vr-bg);
  color:var(--vr-charcoal);
  min-height:60vh;
}

/* HEADER */
.vr-header{
  position:sticky;
  top:0;
  z-index:50;
  width:100%;
  background:rgba(11,20,17,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--vr-border);
}

.vr-header-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.vr-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex:0 1 auto;
}

.vr-logo{
  height:90px;
  width:auto;
  object-fit:contain;
}

.vr-brand-text strong{
  display:block;
  color:var(--vr-paper);
  letter-spacing:.06em;
  font-weight:900;
}

.vr-brand-text small{
  display:block;
  color:var(--vr-gold-soft);
  font-weight:800;
  margin-top:2px;
}

/* NAV */
.vr-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  flex:1 1 auto;
}

.vr-nav a{
  color:rgba(255,255,255,.90);
  padding:8px 12px;
  border-radius:999px;
}

.vr-nav a:hover{
  background:rgba(200,164,77,.12);
  color:var(--vr-gold-soft);
}

/* ACTIONS */
.vr-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex:0 1 auto;
}

.vr-wa{
  font-weight:900;
  color:var(--vr-gold-soft);
  padding:8px 10px;
  border-radius:999px;
}

.vr-cart{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--vr-border);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.90);
}

/* TYPOGRAPHY */
.vr-center{
  text-align:center;
}

.vr-narrow{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}

.vr-kicker,
.vr-section-label{
  margin:0 0 10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  color:#355045;
  font-weight:800;
}

.vr-section-label-light{
  color:var(--vr-gold-soft) !important;
}

.vr-h1{
  margin:0 0 14px;
  font-size:clamp(36px,4.5vw,64px);
  line-height:1.02;
  color:var(--vr-paper);
  letter-spacing:-.02em;
}

.vr-h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,56px);
  color:var(--vr-emerald);
  line-height:1.08;
  letter-spacing:-.02em;
  font-weight:900;
}

.vr-h3{
  margin:0 0 8px;
  color:var(--vr-emerald);
  font-size:24px;
  font-weight:800;
}

.vr-title{
  font-size:clamp(30px,4vw,48px);
  margin:0 0 6px;
  letter-spacing:.5px;
  color:var(--vr-paper);
  font-weight:900;
}

.vr-subtitle,
.vr-lead,
.vr-sub{
  margin:0;
  color:var(--vr-muted);
  line-height:1.75;
  font-size:17px;
}

.vr-light{
  color:var(--vr-paper) !important;
}

.vr-muted{
  color:var(--vr-muted);
}

/* BUTTONS */
.vr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
}

.vr-btn-primary{
  background:var(--vr-gold);
  color:#121614;
  border-color:rgba(200,164,77,.55);
}

.vr-btn-outline{
  border:1px solid rgba(200,164,77,.55);
  color:var(--vr-gold-soft);
  background:rgba(255,255,255,.03);
}

.vr-btn-outline-light{
  border:1px solid rgba(255,255,255,.34);
  color:var(--vr-paper);
  background:transparent;
}

.vr-btn-dark{
  background:rgba(255,255,255,.06);
  color:var(--vr-paper);
  border:1px solid rgba(200,164,77,.55);
}

.vr-btn-outline:hover,
.vr-btn-outline-light:hover,
.vr-btn-dark:hover,
.vr-btn-primary:hover{
  opacity:.92;
}

/* SECTIONS */
.vr-section{
  padding:56px 0;
}

.vr-section-alt,
.vr-section-soft{
  background:#efe7d8;
  color:var(--vr-charcoal);
  border-top:1px solid rgba(200,164,77,.14);
  border-bottom:1px solid rgba(200,164,77,.14);
}

.vr-grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.vr-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* HERO */
.vr-hero{
  padding:62px 0;
  background:linear-gradient(135deg,#10281f 0%,#1b3b2f 100%);
}

.vr-hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
  align-items:center;
}

.vr-hero .vr-lead,
.vr-hero .vr-subtitle,
.vr-hero .vr-sub{
  color:rgba(255,255,255,.86);
}

.vr-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.vr-hero-actions-center{
  justify-content:center;
}

.vr-trust{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  margin-top:18px;
  color:rgba(255,255,255,.82);
  font-size:14px;
}

.vr-hero-media img{
  border-radius:22px;
  border:1px solid rgba(200,164,77,.25);
  box-shadow:var(--vr-shadow);
  background:rgba(255,255,255,.02);
  padding:10px;
}

.vr-product{
  max-width:520px;
  width:100%;
  display:block;
  margin:auto;
  filter:drop-shadow(0 25px 50px rgba(0,0,0,.5));
}

.vr-hero-mini{
  padding:48px 0;
  min-height:auto;
  border-bottom:1px solid rgba(200,164,77,.14);
  background:linear-gradient(135deg,#10281f 0%,#1b3b2f 100%);
}

.vr-hero-mini .vr-title,
.vr-hero-mini .vr-h1{
  color:var(--vr-paper);
}

.vr-hero-mini .vr-subtitle,
.vr-hero-mini .vr-lead,
.vr-hero-mini p{
  color:rgba(255,255,255,.88);
}

/* CARDS */
.vr-card{
  background:#fffaf1;
  border:1px solid rgba(200,164,77,.18);
  border-radius:18px;
  padding:22px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  color:var(--vr-charcoal);
}

.vr-card h2,
.vr-card h3,
.vr-card h4{
  color:var(--vr-emerald);
}

.vr-card p{
  color:#2e3732;
}

.vr-highlight,
.vr-highlight-card{
  margin-top:18px;
  border-left:3px solid var(--vr-gold);
  padding:18px;
  background:#fffaf1;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.vr-link{
  color:var(--vr-gold);
}

.vr-link:hover{
  text-decoration:underline;
}

/* CTA */
.vr-cta,
.vr-cta-clean{
  padding:56px 0;
  background:linear-gradient(180deg,rgba(20,54,44,.96),rgba(11,20,17,.96));
  color:var(--vr-paper);
}

.vr-cta-inner{
  border-radius:22px;
  padding:28px;
  background:linear-gradient(180deg,rgba(20,54,44,.9),rgba(11,20,17,.9));
  border:1px solid rgba(200,164,77,.35);
  box-shadow:var(--vr-shadow);
}

.vr-cta .vr-h2,
.vr-cta .vr-h3,
.vr-cta-clean .vr-h2,
.vr-cta-clean .vr-h3{
  color:var(--vr-paper);
}

.vr-cta .vr-subtitle,
.vr-cta .vr-lead,
.vr-cta-clean .vr-subtitle,
.vr-cta-clean .vr-lead,
.vr-cta p,
.vr-cta-clean p{
  color:rgba(255,255,255,.92);
}

.vr-cta-row{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* VALUES / STORY / HERBAL */
.vr-values-section{
  background:#f4f0e7;
}

.vr-values-section .vr-h2,
.vr-values-section .vr-h3{
  color:var(--vr-emerald) !important;
}

.vr-values-section .vr-subtitle,
.vr-values-section p{
  color:#2f3732 !important;
}

.vr-values-symbol-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:28px;
  align-items:start;
  margin-top:26px;
}

.vr-values-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.vr-value-card{
  background:var(--vr-dark-card);
  border:1px solid rgba(212,175,55,.22);
  border-radius:24px;
  padding:30px 22px;
  min-height:220px;
  box-shadow:0 14px 28px rgba(0,0,0,.12);
}

.vr-value-card h4{
  margin:0 0 12px;
  font-size:22px;
  color:var(--vr-gold-soft) !important;
}

.vr-value-card p{
  margin:0;
  color:rgba(245,241,232,.96) !important;
  line-height:1.85;
  font-size:17px;
}

.vr-side-symbol-card{
  background:#fffaf1;
  border:1px solid rgba(200,164,77,.18);
  border-radius:24px;
  padding:30px 24px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  color:var(--vr-charcoal);
}

.vr-side-symbol-card h3,
.vr-side-symbol-card p{
  color:var(--vr-emerald) !important;
}

.vr-side-symbol{
  width:100px;
  height:100px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.35);
  color:var(--vr-gold);
  font-size:40px;
  font-weight:800;
}

.vr-story-page .vr-story-hero,
.vr-herbal-page .vr-herbal-hero{
  padding:52px 0;
}

.vr-story-page .vr-story-hero .vr-title,
.vr-herbal-page .vr-herbal-hero .vr-title{
  color:var(--vr-paper) !important;
}

.vr-story-page .vr-story-hero .vr-subtitle,
.vr-herbal-page .vr-herbal-hero .vr-subtitle,
.vr-story-page .vr-story-hero p,
.vr-herbal-page .vr-herbal-hero p{
  color:rgba(255,255,255,.88) !important;
}

.vr-story-section{
  background:#f4f0e7;
}

.vr-story-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:start;
}

.vr-story-copy p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:18px;
  color:#2a312d !important;
}

.vr-story-symbol-card{
  background:var(--vr-dark-card);
  border-radius:24px;
  padding:34px 28px;
  color:var(--vr-paper);
  box-shadow:0 16px 34px rgba(0,0,0,.12);
  position:sticky;
  top:110px;
}

.vr-story-symbol-card h3{
  color:var(--vr-paper) !important;
}

.vr-story-symbol-card p{
  color:rgba(245,241,232,.96) !important;
}

.vr-african-symbol{
  width:90px;
  height:90px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(212,175,55,.35);
  color:var(--vr-gold);
  font-size:34px;
  font-weight:800;
}

.vr-symbol-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}

.vr-symbol-list div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px 14px;
  text-align:center;
  font-weight:700;
  color:var(--vr-paper) !important;
}

.vr-herb-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.vr-herb-column{
  background:#fffaf1;
  border:1px solid rgba(20,49,39,.08);
  border-radius:20px;
  padding:22px 20px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.vr-herb-column ul{
  list-style:none;
  margin:0;
  padding:0;
}

.vr-herb-column li{
  position:relative;
  padding-left:18px;
  margin-bottom:12px;
  line-height:1.6;
  color:#1f2a24 !important;
}

.vr-herb-column li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#b8892e;
  font-weight:800;
}

.vr-herbal-page .vr-section,
.vr-story-page .vr-section{
  background:#f4f0e7;
}

.vr-herbal-page .vr-section-soft,
.vr-story-page .vr-section-soft{
  background:#efe7d8;
}

.vr-herbal-page .vr-section .vr-h2,
.vr-herbal-page .vr-section .vr-h3,
.vr-story-page .vr-section .vr-h2,
.vr-story-page .vr-section .vr-h3{
  color:var(--vr-emerald) !important;
}

.vr-herbal-page .vr-section p,
.vr-herbal-page .vr-section .vr-subtitle,
.vr-herbal-page .vr-section .vr-lead,
.vr-story-page .vr-section p,
.vr-story-page .vr-section .vr-subtitle,
.vr-story-page .vr-section .vr-lead{
  color:#2f3732 !important;
}

.vr-system-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.vr-system-card{
  background:var(--vr-dark-card);
  border:1px solid rgba(212,175,55,.22);
  border-radius:24px;
  padding:28px 22px;
  min-height:220px;
  box-shadow:0 14px 30px rgba(0,0,0,.1);
}

.vr-system-card h3{
  margin:0 0 12px;
  font-size:22px;
  color:var(--vr-gold-soft) !important;
}

.vr-system-card p{
  margin:0;
  font-size:16px;
  line-height:1.85;
  color:rgba(245,241,232,.96) !important;
}

.vr-soft-card{
  background:#fffaf1 !important;
  border:1px solid rgba(20,49,39,.08) !important;
  box-shadow:0 10px 24px rgba(0,0,0,.05) !important;
}

.vr-soft-card h3{
  color:var(--vr-emerald) !important;
}

.vr-soft-card p{
  color:#2a312d !important;
}

/* PREMIUM HERBAL CONTENT */
.herbal-section,
.upcoming-herbal-ingredients,
.ingredients-section{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
  padding:80px 24px;
}

.herbal-section h2,
.upcoming-herbal-ingredients h2,
.ingredients-section h2{
  color:var(--vr-emerald) !important;
  font-size:clamp(34px,5vw,58px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-1px;
  margin-bottom:18px;
}

.herbal-section p,
.upcoming-herbal-ingredients p,
.ingredients-section p{
  color:#2a312d !important;
  font-size:20px;
  line-height:1.85;
  max-width:860px;
  margin:0 auto 22px auto;
}

.herbal-section h3,
.upcoming-herbal-ingredients h3,
.ingredients-section h3{
  color:#b8892e !important;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:700;
  margin-top:38px;
  margin-bottom:22px;
}

.herbal-section ul,
.upcoming-herbal-ingredients ul,
.ingredients-section ul{
  list-style:none;
  padding:0;
  margin:34px auto 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(180px,1fr));
  gap:16px 28px;
  max-width:1000px;
}

.herbal-section ul li,
.upcoming-herbal-ingredients ul li,
.ingredients-section ul li{
  color:#143127 !important;
  background:#fffaf1;
  border:1px solid rgba(212,177,90,.28);
  border-radius:16px;
  padding:16px 18px 16px 46px;
  font-size:18px;
  line-height:1.5;
  text-align:left;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
  position:relative;
}

.herbal-section ul li::before,
.upcoming-herbal-ingredients ul li::before,
.ingredients-section ul li::before{
  content:"✦";
  color:#d4b15a;
  position:absolute;
  left:18px;
  top:15px;
  font-size:16px;
}

.herbal-section ul li:hover,
.upcoming-herbal-ingredients ul li:hover,
.ingredients-section ul li:hover{
  transform:translateY(-4px);
  border-color:#d4b15a;
  background:#fffdf8;
}

/* WOO PRODUCT CARDS */
.woocommerce ul.products{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:16px !important;
}

.woocommerce ul.products li.product{
  list-style:none !important;
  margin:0 !important;
  border:1px solid rgba(200,164,77,.18);
  border-radius:20px;
  padding:14px !important;
  background:#0f2b22;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  overflow:hidden;
}

.woocommerce ul.products li.product:hover{
  border-color:rgba(200,164,77,.55);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}

.woocommerce ul.products li.product::marker,
.woocommerce ul.products li.product::before{
  display:none !important;
  content:none !important;
}

.woocommerce ul.products li.product img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2{
  color:#f5f1e8 !important;
  font-size:20px !important;
  line-height:1.35;
  font-weight:700;
  margin:0 0 10px !important;
}

.woocommerce ul.products li.product .price{
  color:var(--vr-gold-soft) !important;
  font-size:22px !important;
  font-weight:900 !important;
  margin-bottom:14px !important;
  display:block;
}

.woocommerce ul.products li.product .price del{
  opacity:.6;
  font-size:16px;
}

.woocommerce ul.products li.product .price ins{
  text-decoration:none;
  color:var(--vr-gold-soft) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link{
  text-decoration:none !important;
}

/* BUTTONS */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wp-element-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#c8a96b !important;
  color:#071a12 !important;
  border-radius:12px !important;
  border:1px solid #d4b15a !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  box-shadow:none !important;
}

.woocommerce ul.products li.product .button{
  padding:10px 18px !important;
  margin-top:8px !important;
  border-radius:999px !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .added_to_cart:hover,
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wp-element-button:hover{
  opacity:.9 !important;
}

/* CHECKOUT / PAYMENT */
.wc-block-components-checkout-step,
.wc-block-checkout__sidebar,
.wc-block-components-totals-wrapper,
.wc-block-components-order-summary,
.wc-block-components-radio-control__option,
.wc-block-components-payment-method,
.wc-block-components-checkout-step__content{
  background:#071a12 !important;
  border-radius:18px !important;
  color:#ffffff !important;
  max-width:100% !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.18) !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__heading h2,
.wc-block-components-panel__button,
.wc-block-components-order-summary-item__description,
.wc-block-components-payment-method-label,
.wc-block-components-radio-control__label,
.wc-block-components-payment-method__description,
.wc-block-components-formatted-money-amount,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label{
  color:#ffffff !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label{
  font-weight:700 !important;
  font-size:24px !important;
}

.wc-block-components-panel__button{
  background:transparent !important;
  border:none !important;
}

input[type="checkbox"]{
  accent-color:#c8a96b;
}

.wc-block-components-radio-control__option--checked,
.is-selected{
  border:1px solid #c8a96b !important;
  box-shadow:0 0 0 1px #c8a96b inset !important;
}

.payment_method_payfast,
.wc-payment-method-payfast,
.wc-block-components-payment-method .wc-block-components-payment-method-label{
  color:#ffffff !important;
  opacity:1 !important;
}

/* CHECKOUT INPUTS */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox-control__input,
.wc-block-components-select-control select,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-components-address-form textarea,
.wc-block-components-address-form__address_1 input,
.wc-block-components-address-form__address_2 input,
.wc-block-components-address-form__city input,
.wc-block-components-address-form__postcode input,
.wc-block-components-address-form__phone input,
.wc-block-components-address-form__email input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select{
  background:#ffffff !important;
  color:#111111 !important;
  -webkit-text-fill-color:#111111 !important;
  border:1px solid #d4b15a !important;
  border-radius:14px !important;
  font-size:16px !important;
}

.wc-block-components-text-input input::placeholder,
.wc-block-components-text-input textarea::placeholder,
.wc-block-components-combobox-control__input::placeholder,
.wc-block-components-address-form input::placeholder,
.wc-block-components-address-form textarea::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder{
  color:#666666 !important;
  opacity:1 !important;
  -webkit-text-fill-color:#666666 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill{
  -webkit-text-fill-color:#111111 !important;
  box-shadow:0 0 0 1000px #ffffff inset !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select-control label,
.wc-block-components-checkbox label,
.wc-block-components-address-form label,
label{
  display:block !important;
  position:static !important;
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
  clip:auto !important;
  height:auto !important;
  width:auto !important;
  overflow:visible !important;
  margin-bottom:8px !important;
  color:#ffffff !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.4 !important;
}

.wc-block-components-select-control select,
.wc-block-components-combobox-control__input,
.wc-block-components-address-form select{
  color:#111111 !important;
  -webkit-text-fill-color:#111111 !important;
  background:#ffffff !important;
}

/* FOOTER */
.vr-footer{
  width:100%;
  margin-top:0;
  padding:64px 0 22px;
  background:linear-gradient(180deg,rgba(11,20,17,.96),rgba(5,10,9,.99));
  border-top:1px solid rgba(200,164,77,.28);
  color:rgba(255,255,255,.88);
}

.vr-footer-top{
  display:grid;
  grid-template-columns:1.1fr 1.9fr;
  gap:40px;
  align-items:start;
}

.vr-footer-brand-block{
  max-width:380px;
}

.vr-footer-brand{
  margin:0 0 12px;
  font-size:34px;
  font-weight:900;
  color:var(--vr-gold-soft);
}

.vr-footer-tagline{
  margin:0 0 14px;
  font-size:18px;
  color:var(--vr-paper);
  font-weight:800;
}

.vr-footer-desc{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.85);
}

.vr-footer-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:start;
}

.vr-footer-title{
  margin:0 0 14px;
  font-size:14px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--vr-gold-soft);
  font-weight:900;
}

.vr-footer-text{
  margin:0 0 10px;
  color:rgba(255,255,255,.84);
  line-height:1.7;
}

.vr-footer-link{
  color:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(200,164,77,.35);
  padding-bottom:2px;
}

.vr-footer-link:hover{
  color:var(--vr-gold-soft);
  border-bottom-color:rgba(200,164,77,.75);
}

.vr-social{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.vr-social-link{
  color:rgba(255,255,255,.86);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(200,164,77,.18);
  background:rgba(255,255,255,.03);
  width:fit-content;
}

.vr-social-link:hover{
  border-color:rgba(200,164,77,.55);
  background:rgba(200,164,77,.10);
  color:var(--vr-gold-soft);
}

.vr-payment-icons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.vr-pay-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:8px 14px;
  border:1px solid rgba(212,175,55,.32);
  border-radius:999px;
  background:rgba(212,175,55,.08);
  color:var(--vr-paper);
  font-size:13px;
  font-weight:700;
}

.vr-secure-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  padding:12px 16px;
  background:rgba(212,175,55,.08);
  border:1px solid rgba(212,175,55,.24);
  border-radius:14px;
  color:var(--vr-gold-soft);
  font-size:14px;
  font-weight:800;
}

.vr-footer-bottom{
  width:100%;
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid rgba(200,164,77,.18);
  color:rgba(255,255,255,.65);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.vr-footer,
.vr-footer *{
  word-break:break-word;
  overflow-wrap:break-word;
}

/* MOBILE */
@media (max-width:1100px){
  .vr-values-symbol-grid,
  .vr-footer-top{
    grid-template-columns:1fr;
  }

  .vr-system-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:980px){
  .woocommerce ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width:900px){
  .vr-hero-grid,
  .vr-grid-2,
  .vr-grid-3,
  .vr-story-grid,
  .vr-herb-grid{
    grid-template-columns:1fr;
  }

  .vr-trust{
    grid-template-columns:1fr;
  }

  .vr-header-inner{
    flex-wrap:wrap;
    align-items:flex-start;
  }

  .vr-brand,
  .vr-nav,
  .vr-actions{
    width:100%;
  }

  .vr-nav{
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  .vr-actions{
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  .vr-footer-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .vr-social-link{
    width:100%;
  }

  .vr-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .vr-story-symbol-card{
    position:static;
    top:auto;
  }
}

@media (max-width:768px){
  .vr-container{
    padding-left:16px;
    padding-right:16px;
  }

  .vr-logo{
    height:72px;
  }

  .vr-hero,
  .vr-hero-mini,
  .vr-story-page .vr-story-hero,
  .vr-herbal-page .vr-herbal-hero{
    padding:42px 0;
  }

  .vr-values-grid,
  .vr-system-grid,
  .woocommerce ul.products{
    grid-template-columns:1fr !important;
  }

  .woocommerce ul.products li.product img{
    height:280px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:18px !important;
  }

  .woocommerce ul.products li.product .price{
    font-size:20px !important;
  }

  .woocommerce ul.products li.product .button{
    width:100%;
    text-align:center;
  }

  .wc-block-components-sidebar-layout{
    display:block !important;
  }

  .wc-block-checkout__main,
  .wc-block-checkout__sidebar,
  .wc-block-cart__main,
  .wc-block-cart__sidebar{
    width:100% !important;
    max-width:100% !important;
  }

  .wc-block-components-order-summary-item{
    grid-template-columns:60px 1fr auto !important;
    column-gap:12px !important;
    align-items:start !important;
  }

  .wc-block-components-order-summary-item__image{
    width:60px !important;
    min-width:60px !important;
  }

  .wc-block-components-order-summary-item__description{
    font-size:14px !important;
    line-height:1.4 !important;
  }

  .vr-footer{
    padding:50px 0 22px;
  }

  .vr-footer-brand{
    font-size:28px;
  }
}

@media (max-width:600px){
  .herbal-section,
  .upcoming-herbal-ingredients,
  .ingredients-section{
    padding:56px 18px;
  }

  .herbal-section ul,
  .upcoming-herbal-ingredients ul,
  .ingredients-section ul{
    grid-template-columns:1fr;
  }

  .herbal-section h2,
  .upcoming-herbal-ingredients h2,
  .ingredients-section h2{
    font-size:34px;
  }

  .herbal-section p,
  .upcoming-herbal-ingredients p,
  .ingredients-section p{
    font-size:17px;
    line-height:1.75;
  }

  .woocommerce ul.products{
    grid-template-columns:1fr !important;
  }
}