:root{
  /* KDP logo & packaging palette */
  --gold:#D4A012;
  --gold-light:#F0C94A;
  --gold-dark:#9A7209;
  --gold-soft:#FBF5E6;
  --gold-rgb:212, 160, 18;

  --black:#0D0D0D;
  --black-soft:#1C1C1C;

  --spice:#C41E3A;
  --spice-soft:#FDF2F4;

  --green:#1B6B3A;
  --green-soft:#EDF7F0;
  --green-rgb:27, 107, 58;

  --bg:#FAFAF8;
  --surface:#FFFFFF;
  --card:#FFFFFF;
  --text:#141414;
  --muted:#5C5C5C;
  --border:rgba(13, 13, 13, 0.09);
  --border-gold:rgba(var(--gold-rgb), 0.28);

  --shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
  --shadow-sm: 0 10px 26px rgba(13, 13, 13, 0.07);
  --shadow-gold: 0 12px 32px rgba(var(--gold-rgb), 0.22);

  --radius:16px;
  --radius-sm:12px;

  --brand:var(--gold);
  --brand2:var(--gold-dark);
  --brand-soft:var(--gold-soft);
  --accent:var(--green);
  --accent-spice:var(--spice);

  --gradient-brand:linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  --gradient-surface:linear-gradient(180deg, #FFFFFF 0%, var(--gold-soft) 100%);
  --gradient-strip:linear-gradient(90deg, rgba(var(--gold-rgb), 0.14), rgba(13, 13, 13, 0.04), rgba(var(--green-rgb), 0.10));
}

*{ box-sizing:border-box; }

html{
  overscroll-behavior-x:none;
}

body{
  margin:0;
  max-width:100%;
  overflow-x:hidden;
  overscroll-behavior-x:none;
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(var(--gold-rgb), 0.12), transparent 58%),
    radial-gradient(700px 400px at 95% 2%, rgba(var(--green-rgb), 0.06), transparent 55%),
    radial-gradient(600px 360px at 50% 100%, rgba(13, 13, 13, 0.03), transparent 50%),
    var(--bg);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{ color:inherit; }

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  padding:10px 15px;
  background:rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 0 rgba(var(--gold-rgb), 0.18);
  position:sticky;
  top:0;
  z-index:10;
  max-width:100%;
  overflow:visible;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  max-width:100%;
}

.brand h1{
  font-size:16px;
  margin:0;
  letter-spacing:0.3px;
  color:var(--black);
  font-weight:800;
}

.brand p{
  margin:2px 0 0;
  color:var(--muted);
  font-size:12px;
}

.logo{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--gold-soft);
  border:1px solid var(--border-gold);
  font-weight:700;
  letter-spacing:0.6px;
  color:var(--gold-dark);
}

.brand-logo{
  width:44px;
  height:44px;
  border-radius:12px;
  object-fit:cover;
  border:2px solid var(--border-gold);
  background:#fff;
  box-shadow: var(--shadow-gold);
}
.top-nav{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  max-width:100%;
  flex:1;
  justify-content:flex-end;
}

.menu-toggle{
  display:none;
  font-size:24px;
  line-height:1;
  padding:10px 12px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--border);
  cursor:pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-toggle:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-gold);
}

.nav-links{
  display:flex;
  gap:15px;
  align-items:center;
}
/* Search removed (kept layout clean) */

.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.85);
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-family:inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-cart-btn{
  cursor:pointer;
}

.nav-cart-count{
  min-width:20px;
  height:20px;
  display:grid;
  place-items:center;
  padding:0 6px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:11px;
  line-height:1;
}

.nav-cart-count.hidden{
  display:none;
}

.mobile-header-cart-btn{
  display:none;
}

.mobile-header-cart-count{
  min-width:19px;
  height:19px;
  display:grid;
  place-items:center;
  padding:0 6px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:11px;
  line-height:1;
}

.mobile-header-cart-count.hidden{
  display:none;
}

.nav-link[aria-current="page"]{
  border-color:var(--border-gold);
  background:var(--gold-soft);
  color:var(--black);
}

.nav-link:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color:var(--border-gold);
}

.hero{
  position:relative;
  display:flex;
  align-items:flex-end;
  margin:18px auto 0;
  max-width:1100px;
  min-height:clamp(240px, 42vh, 400px);
  padding:0;
  border-radius:24px;
  border:1px solid var(--border-gold);
  box-shadow: var(--shadow);
  overflow:hidden;
  background:
    radial-gradient(420px 260px at 80% 24%, rgba(var(--gold-rgb), 0.22), transparent 70%),
    var(--black) url("g1.PNG") center center / cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:4px;
  background:var(--gradient-brand);
  z-index:2;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.72) 42%,
    rgba(13, 13, 13, 0.35) 72%,
    rgba(13, 13, 13, 0.2) 100%
  );
  z-index:0;
}

.hero__content{
  position:relative;
  z-index:1;
  width:100%;
  max-width:580px;
  padding:clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
}

.hero__eyebrow{
  display:inline-block;
  margin-bottom:10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold-light);
}

.hero__content h2{
  margin:0;
  font-size:clamp(26px, 4.2vw, 38px);
  line-height:1.15;
  letter-spacing:-0.5px;
  color:#fff;
  text-shadow:0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__content p{
  margin:12px 0 0;
  color:rgba(255, 255, 255, 0.9);
  max-width:48ch;
  font-size:clamp(14px, 2vw, 16px);
  line-height:1.55;
}

.hero__content .primary-btn{
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space:nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary{
  background:var(--gradient-brand);
  color:var(--black);
  box-shadow: var(--shadow-gold);
  border:1px solid rgba(var(--gold-rgb), 0.35);
}

.btn-primary:hover{
  box-shadow:0 14px 36px rgba(var(--gold-rgb), 0.32);
}

.btn-outline{
  background:#fff;
  color:var(--text);
  border-color: var(--border);
}

/* Backward compatibility for existing class names */
.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(var(--gold-rgb), 0.35);
  cursor:pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space:nowrap;
  background:var(--gradient-brand);
  color:var(--black);
  box-shadow: var(--shadow-gold);
}

.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid var(--border);
  cursor:pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space:nowrap;
  background:#fff;
  color:var(--text);
}

.products{
  padding:28px 22px;
  margin:26px auto 0;
  max-width:1100px;
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(13, 13, 13, 0.06);
  border-radius:24px;
  box-shadow:0 18px 44px rgba(13, 13, 13, 0.055);
}

.products h2{
  margin:0;
  font-size:18px;
  letter-spacing:0.2px;
}

.products-subtitle{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}

.products-header{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:4px;
}

.products-tools{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.search-input{
  width:100%;
  max-width:420px;
  border:1px solid var(--border);
  border-radius:999px;
  padding:12px 14px;
  font:inherit;
  font-size:16px;
  background:#fff;
  box-shadow: var(--shadow-sm);
}

.search-input:focus{
  outline:none;
  border-color:var(--border-gold);
  box-shadow:0 0 0 3px rgba(var(--gold-rgb), 0.15);
}

.category-bar{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.category-chip{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.category-chip:hover,
.category-chip.active{
  background:var(--gradient-brand);
  color:var(--black);
  border-color:rgba(var(--gold-rgb), 0.4);
  box-shadow: var(--shadow-gold);
}

.product-category-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  color:var(--gold-dark);
  background:var(--gold-soft);
  border:1px solid var(--border-gold);
  border-radius:999px;
  padding:3px 8px;
  margin-bottom:4px;
}

.product-card .add-cart-btn{
  margin-top:auto;
}

.section-lead{
  margin:8px 0 0;
  color:var(--muted);
  max-width:65ch;
}

.delivery-section,
.faq-section{
  max-width:1100px;
  margin:28px auto 0;
  padding:0 22px;
}

.delivery-section h2,
.faq-section h2{
  margin:0;
  font-size:20px;
}

.delivery-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

.delivery-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, transform 160ms ease;
}

.delivery-card:hover{
  border-color:var(--border-gold);
  transform:translateY(-2px);
}

.delivery-card h3{
  margin:0 0 8px;
  font-size:15px;
}

.delivery-card__fee{
  margin:0;
  font-weight:700;
  color:var(--gold-dark);
}

.delivery-card__desc,
.delivery-card__cod{
  margin:6px 0 0;
  font-size:13px;
  color:var(--muted);
}

.faq-list{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:12px 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open]{
  border-color:var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.faq-item summary{
  color:var(--black);
  cursor:pointer;
  font-weight:700;
  list-style:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
}

.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(13, 13, 13, 0.54);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index:45;
}

.cart-drawer{
  position:fixed;
  right:0;
  top:0;
  bottom:0;
  width:min(430px, 100vw);
  z-index:50;
  background:
    linear-gradient(180deg, var(--gold-soft) 0, #fff 145px, #fff 100%);
  border-left:1px solid rgba(var(--gold-rgb), 0.26);
  box-shadow: -18px 0 46px rgba(13, 13, 13, 0.22);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  touch-action:pan-y;
  transition:transform 220ms ease;
  will-change:transform;
}

.cart-drawer__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px 18px 16px;
  border-bottom:1px solid rgba(var(--gold-rgb), 0.24);
  background:
    radial-gradient(260px 140px at 0% 0%, rgba(var(--gold-rgb), 0.24), transparent 64%),
    linear-gradient(135deg, #fff, var(--gold-soft));
}

.cart-drawer__head h2{
  margin:0;
  font-size:22px;
  line-height:1.08;
  letter-spacing:0;
  color:var(--black);
}

.cart-brand{
  display:flex;
  align-items:center;
  gap:11px;
  min-width:0;
}

.cart-brand__logo{
  width:42px;
  height:42px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(var(--gold-rgb), 0.36);
  background:#fff;
  box-shadow:0 10px 24px rgba(var(--gold-rgb), 0.18);
  flex:0 0 auto;
}

.cart-brand__eyebrow{
  display:block;
  margin-bottom:3px;
  font-size:11px;
  font-weight:800;
  color:var(--gold-dark);
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.cart-drawer__close{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:999px;
  border:1px solid rgba(13, 13, 13, 0.1);
  background:#fff;
  color:var(--black);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(13, 13, 13, 0.07);
  transition:transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cart-drawer__close:hover{
  transform:translateY(-1px);
  border-color:var(--border-gold);
  box-shadow:var(--shadow-sm);
}

.cart-drawer__body{
  flex:1;
  overflow-y:auto;
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(255,255,255,0.42), #fff 110px);
}

.cart-drawer__foot{
  padding:14px 16px calc(16px + env(safe-area-inset-bottom));
  border-top:1px solid rgba(var(--gold-rgb), 0.24);
  background:rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:0 -14px 30px rgba(13, 13, 13, 0.08);
}

.cart-summary{
  border:1px solid var(--border-gold);
  border-radius:20px;
  padding:12px;
  margin-bottom:12px;
  background:
    linear-gradient(180deg, #fff, rgba(var(--gold-rgb), 0.08));
}

.cart-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-size:13px;
  padding:4px 0;
}

.cart-summary__row strong{
  color:var(--black);
  font-size:14px;
  text-align:right;
}

.cart-summary__hint{
  margin:8px 0 0;
  padding-top:9px;
  border-top:1px dashed rgba(var(--gold-rgb), 0.32);
  color:var(--spice);
  font-size:13px;
  font-weight:750;
}

.cart-summary__hint--ready{
  color:var(--green);
}

.cart-drawer__foot .btn{
  width:100%;
  min-height:50px;
  border-radius:999px;
}

.cart-drawer__foot .btn:disabled{
  opacity:0.58;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

.cart-line{
  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  gap:12px;
  padding:12px;
  margin-bottom:10px;
  border:1px solid rgba(13, 13, 13, 0.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 24px rgba(13, 13, 13, 0.06);
}

.cart-line__info{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
  font-size:13px;
}

.cart-line__img{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:16px;
  border:1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(var(--gold-rgb), 0.08));
}

.cart-line__top,
.cart-line__bottom{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.cart-line__bottom{
  align-items:center;
  margin-top:2px;
}

.cart-line__info strong{
  font-size:14px;
  line-height:1.28;
  color:var(--black);
}

.cart-line__unit{
  color:var(--muted);
  font-size:12px;
  font-weight:650;
}

.cart-line__actions{
  display:flex;
  align-items:center;
  gap:4px;
  padding:3px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--gold-soft);
}

.qty-btn{
  width:28px;
  height:28px;
  border:0;
  border-radius:999px;
  background:#fff;
  color:var(--black);
  font-size:17px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(13, 13, 13, 0.06);
}

.cart-line__qty{
  min-width:26px;
  text-align:center;
  font-weight:700;
  color:var(--black);
}

.cart-remove{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--spice);
  font-size:18px;
  line-height:1;
  cursor:pointer;
}

.cart-line__total{
  white-space:nowrap;
  font-weight:700;
  color:var(--spice);
}

.cart-empty{
  min-height:340px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px 18px;
  border:1px dashed var(--border-gold);
  border-radius:18px;
  background:linear-gradient(180deg, #fff, var(--gold-soft));
}

.cart-empty__mark{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border-radius:18px;
  background:var(--gradient-brand);
  color:var(--black);
  font-weight:900;
  box-shadow:var(--shadow-gold);
}

.cart-empty h3{
  margin:0;
  font-size:18px;
}

.cart-empty p{
  margin:8px 0 0;
  color:var(--muted);
  max-width:28ch;
}

.checkout-summary{
  display:flex;
  flex-direction:column;
  gap:4px;
  max-height:116px;
  overflow-y:auto;
  background:linear-gradient(180deg, #fff, rgba(var(--gold-rgb), 0.08));
  border:1px solid rgba(var(--gold-rgb), 0.24);
  border-radius:18px;
  padding:10px 12px;
  margin-bottom:12px;
}

.checkout-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:4px 0;
  font-size:13px;
  color:var(--muted);
  border-bottom:1px solid rgba(13, 13, 13, 0.06);
}

.checkout-line:last-child{
  border-bottom:none;
}

.checkout-line span:last-child{
  color:var(--black);
  font-weight:750;
  white-space:nowrap;
}

.checkout-totals{
  margin:0;
}

.checkout-totals__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0;
}

.checkout-totals__row--grand{
  font-weight:800;
  font-size:15px;
  color:var(--black);
}

.checkout-hint{
  display:none;
}

.checkout-hint--warn{
  color:var(--spice);
  font-weight:600;
}

.form-grid select{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px 12px;
  font:inherit;
  font-size:16px;
  background:#fff;
}

body.no-scroll{
  overflow:hidden;
}

.trust-panel{
  max-width:1100px;
  margin:18px auto 0;
  padding:0 22px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.trust-panel__item{
  min-height:118px;
  padding:15px;
  border:1px solid rgba(var(--green-rgb), 0.14);
  border-radius:22px;
  background:rgba(255,255,255,0.82);
  box-shadow:0 12px 28px rgba(13, 13, 13, 0.05);
}

.trust-panel__kicker{
  display:block;
  margin-bottom:8px;
  color:var(--green);
  font-size:11px;
  font-weight:850;
  letter-spacing:0.09em;
  text-transform:uppercase;
}

.trust-panel__item strong{
  display:block;
  color:var(--black);
  font-size:15px;
  line-height:1.2;
}

.trust-panel__item p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:14px;
  margin-top:15px;
}
.product-card{
  background:var(--surface);
  border-radius:16px;
  padding:12px;
  border:1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display:flex;
  flex-direction:column;
  gap:9px;
  min-width:0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color:var(--border-gold);
}
.product-image-btn{
  position:relative;
  width:100%;
  aspect-ratio:1 / 1;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:14px;
  background:
    radial-gradient(160px 120px at 50% 18%, rgba(var(--gold-rgb), 0.18), transparent 72%),
    linear-gradient(180deg, #fff, rgba(var(--green-rgb), 0.05));
  cursor:pointer;
  overflow:hidden;
}

.product-image-btn::after{
  content:"Select size";
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(13, 13, 13, 0.74);
  color:#fff;
  font-size:11px;
  font-weight:750;
  opacity:0;
  transform:translateY(6px);
  transition:opacity 160ms ease, transform 160ms ease;
}

.product-card:hover .product-image-btn::after,
.product-image-btn:focus-visible::after{
  opacity:1;
  transform:translateY(0);
}

.product-badge{
  position:absolute;
  top:10px;
  left:10px;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(var(--gold-rgb), 0.34);
  color:var(--gold-dark);
  font-size:11px;
  font-weight:850;
  box-shadow:0 8px 20px rgba(13, 13, 13, 0.08);
}

.product-card img,
.quick-view__media img{
  width:100%;
  aspect-ratio:1 / 1;
  height:auto;
  object-fit:cover;
  object-position:center;
  display:block;
  padding:0;
  border-radius:14px;
  border:1px solid rgba(13, 13, 13, 0.06);
}

.product-card img{
  transform:scale(1.08);
  transition:transform 220ms ease, filter 220ms ease;
  filter:contrast(1.05) saturate(1.06);
}

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

.product-meta h3{
  margin:0;
  font-size:14px;
  font-weight:650;
  letter-spacing:0;
  line-height:1.3;
}

.product-highlight{
  margin:4px 0 0;
  color:var(--green);
  font-size:12px;
  font-weight:750;
}

.product-variant-strip{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  min-height:26px;
  margin-top:8px;
}

.product-variant-strip span{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:4px 7px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(13, 13, 13, 0.08);
  color:var(--muted);
  font-size:10px;
  font-weight:750;
  line-height:1;
}

.product-card .price{
  margin:8px 0 0;
  color:var(--spice);
  font-weight:700;
}

.product-actions{
  display:block;
  margin-top:auto;
}

.product-actions .btn{
  width:100%;
  min-height:40px;
  padding:9px 10px;
}

.quick-view{
  position:fixed;
  inset:0;
  z-index:70;
  display:grid;
  place-items:center;
  padding:16px;
  background:rgba(13, 13, 13, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow-y:auto;
}

.quick-view__panel{
  position:relative;
  width:min(880px, 100%);
  max-height:calc(100vh - 32px);
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#fff;
  border:1px solid rgba(var(--gold-rgb), 0.2);
  border-radius:28px;
  box-shadow:0 30px 90px rgba(13, 13, 13, 0.38);
  margin:auto;
}

.quick-view__close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:3;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1.5px solid rgba(13, 13, 13, 0.08);
  background:rgba(255, 255, 255, 0.96);
  color:var(--black);
  font-size:26px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(13, 13, 13, 0.12);
  transition:all 200ms ease;
}

.quick-view__close:hover{
  background:#fff;
  border-color:rgba(var(--gold-rgb), 0.4);
  box-shadow:0 16px 40px rgba(13, 13, 13, 0.15);
  transform:scale(1.05);
}

.quick-view__close:active{
  transform:scale(0.95);
}

.quick-view__body{
  display:contents;
}

.quick-view__media{
  position:relative;
  display:grid;
  place-items:center;
  padding:32px 28px;
  overflow:hidden;
  background:
    radial-gradient(420px 280px at 50% 35%, rgba(var(--gold-rgb), 0.18), transparent 68%),
    radial-gradient(320px 240px at 50% 50%, rgba(var(--green-rgb), 0.06), transparent 72%),
    linear-gradient(160deg, #fff 0%, rgba(var(--gold-rgb), 0.04) 100%);
  border-right:1px solid rgba(var(--gold-rgb), 0.15);
}

.quick-view__badge{
  top:20px;
  left:20px;
}

.quick-view__media img{
  max-width:100%;
  width:auto;
  max-width:360px;
  height:auto;
  background:rgba(255,255,255,0.85);
  box-shadow:0 20px 50px rgba(13, 13, 13, 0.12);
  border-radius:8px;
}

.quick-view__content{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:32px 34px;
  overflow-y:auto;
  overflow-x:hidden;
  max-height:calc(100vh - 32px);
  -webkit-overflow-scrolling:touch;
}

.quick-view__category{
  color:var(--green);
  font-size:11px;
  font-weight:900;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:2px;
}

.quick-view__content h2{
  margin:0;
  color:var(--black);
  font-size:clamp(26px, 5vw, 36px);
  line-height:1.1;
  letter-spacing:-0.3px;
  font-weight:800;
}

.quick-view__note{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  margin-bottom:4px;
}

.quick-view__trust{
  padding:14px 16px;
  border:1.5px solid rgba(var(--green-rgb), 0.2);
  border-radius:16px;
  background:
    linear-gradient(135deg, rgba(var(--green-rgb), 0.06), rgba(var(--gold-rgb), 0.08));
  box-shadow:inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.quick-view__trust span{
  display:block;
  margin-bottom:6px;
  color:var(--green);
  font-size:11px;
  font-weight:900;
  letter-spacing:0.1em;
  text-transform:uppercase;
}

.quick-view__trust p{
  margin:0;
  color:var(--black);
  font-size:13px;
  line-height:1.55;
}

.quick-view__facts{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:4px;
}

.quick-view__facts span{
  padding:8px 12px;
  border-radius:999px;
  background:var(--green-soft);
  color:var(--green);
  font-size:12px;
  font-weight:700;
  border:1px solid rgba(var(--green-rgb), 0.2);
  box-shadow:inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.quick-view__buy{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-top:10px;
  padding-top:18px;
  border-top:1.5px solid rgba(var(--gold-rgb), 0.2);
}

.quick-view__variants{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:4px;
}

.quick-view__variants-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:4px;
}

.quick-view__variants-head span{
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:0.1em;
  text-transform:uppercase;
}

.quick-view__variants-head strong{
  color:var(--black);
  font-size:14px;
  font-weight:700;
}

.variant-options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.variant-option{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  column-gap:10px;
  row-gap:4px;
  min-height:56px;
  padding:10px 12px;
  border:1.5px solid var(--border);
  border-radius:16px;
  background:#fff;
  color:var(--text);
  font:inherit;
  cursor:pointer;
  transition:all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position:relative;
  overflow:hidden;
}

.variant-option::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(var(--gold-rgb), 0.1), transparent 70%);
  opacity:0;
  transition:opacity 200ms ease;
}

.variant-option:hover{
  border-color:rgba(var(--gold-rgb), 0.4);
  box-shadow:0 12px 28px rgba(13, 13, 13, 0.08);
  transform:translateY(-2px);
}

.variant-option:hover::before{
  opacity:1;
}

.variant-option:focus-visible{
  outline:2px solid var(--green);
  outline-offset:2px;
}

.variant-option.active{
  border-color:var(--green);
  background:linear-gradient(135deg, rgba(var(--green-rgb), 0.12), rgba(var(--gold-rgb), 0.1));
  box-shadow:0 12px 32px rgba(var(--green-rgb), 0.15);
}

.variant-option.active::before{
  opacity:1;
  background:radial-gradient(circle at 50% 50%, rgba(var(--green-rgb), 0.15), transparent 70%);
}

.variant-option span{
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  text-align:left;
  color:var(--muted);
  position:relative;
  z-index:1;
  grid-column:1 / -1;
}

.variant-option strong{
  color:var(--spice);
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  position:relative;
  z-index:1;
  justify-self:end;
}

.quick-view__price-label{
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:0.05em;
  text-transform:uppercase;
  margin-bottom:4px;
}

.quick-view__buy strong{
  color:var(--spice);
  font-size:28px;
  font-weight:800;
  line-height:1;
}

.quick-view__add{
  flex:1;
  min-height:56px;
  padding:14px 18px;
  font-size:15px;
  font-weight:700;
  letter-spacing:0.3px;
  border-radius:12px;
  box-shadow:var(--shadow-gold);
}

.order-btn{
  margin-top:auto;
}

.order-section{
  position:fixed;
  inset:0;
  z-index:60;
  display:grid;
  place-items:center;
  padding:18px;
  background:rgba(13, 13, 13, 0.58);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  touch-action:pan-y;
}

.order-card{
  width:min(720px, 100%);
  max-height:min(820px, calc(100vh - 36px));
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(var(--gold-rgb), 0.34);
  border-radius:22px;
  box-shadow:0 28px 70px rgba(13, 13, 13, 0.34);
  transition:transform 220ms ease;
  will-change:transform;
}

.order-card h2{
  margin:0;
  font-size:24px;
  line-height:1.1;
  color:var(--black);
}

.order-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-bottom:1px solid rgba(var(--gold-rgb), 0.24);
  background:
    radial-gradient(320px 180px at 0 0, rgba(var(--gold-rgb), 0.24), transparent 66%),
    linear-gradient(135deg, #fff, var(--gold-soft));
}

.order-brand{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
}

.order-brand__logo{
  width:44px;
  height:44px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(var(--gold-rgb), 0.36);
  background:#fff;
  box-shadow:0 10px 24px rgba(var(--gold-rgb), 0.18);
  flex:0 0 auto;
}

.order-brand__eyebrow{
  display:block;
  margin-bottom:4px;
  font-size:11px;
  font-weight:850;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold-dark);
}

.order-note{
  margin:7px 0 0;
  max-width:52ch;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.order-close-btn{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:999px;
  border:1px solid rgba(13, 13, 13, 0.1);
  background:#fff;
  color:var(--black);
  font-size:25px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(13, 13, 13, 0.07);
}

.order-form{
  display:flex;
  flex-direction:column;
  min-height:0;
}

.order-scroll{
  overflow-y:auto;
  padding:14px 18px 6px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-bottom:8px;
}

.form-grid label{
  display:flex;
  flex-direction:column;
  gap:5px;
  font-size:12px;
  font-weight:600;
}

.form-grid input,
.form-grid textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  padding:9px 11px;
  font:inherit;
  color:var(--text);
  background:#fff;
}

.form-grid input[readonly]{
  background:linear-gradient(180deg, #fff, var(--gold-soft));
  color:var(--gold-dark);
  font-weight:750;
}

.checkout-footer{
  display:grid;
  grid-template-columns:minmax(150px, 0.52fr) minmax(0, 1fr);
  align-items:center;
  gap:12px;
  padding:12px 18px 16px;
  border-top:1px solid rgba(var(--gold-rgb), 0.24);
  background:rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:0 -14px 30px rgba(13, 13, 13, 0.08);
}

.checkout-actions{
  display:block;
}

.checkout-actions .btn{
  width:100%;
  min-height:50px;
  border-radius:999px;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus{
  outline:none;
  border-color:var(--border-gold);
  box-shadow:0 0 0 3px rgba(var(--gold-rgb), 0.15);
}

.full-row{
  grid-column:1 / -1;
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-bottom:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:var(--gold-soft);
  border:1px solid var(--border-gold);
  font-weight:700;
  font-size:12px;
  color:var(--black);
}

.badge--soft{
  background: var(--green-soft);
  border-color: rgba(var(--green-rgb), 0.25);
  color:var(--green);
}

.strip{
  margin:16px auto 0;
  max-width:1100px;
  padding:0 22px;
}

.strip__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:rgba(255,255,255,0.92);
  border:1px solid var(--border);
  border-radius:calc(var(--radius) + 6px);
  box-shadow: var(--shadow-sm);
}

.strip__text{
  color:var(--muted);
  font-weight:600;
}

.strip--highlight .strip__inner{
  background: var(--gradient-strip);
}

.strip--trust .strip__inner{
  background:#fff;
}

.future-view{
  display:grid;
  grid-template-columns:minmax(250px, 0.4fr) minmax(0, 0.6fr);
  align-items:center;
  gap:18px;
  max-width:1100px;
  margin:18px auto 0;
  padding:18px;
  min-height:clamp(230px, 28vw, 310px);
  border:1px solid rgba(var(--green-rgb), 0.26);
  border-radius:26px;
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(420px 220px at 70% 35%, rgba(var(--gold-rgb), 0.24), transparent 70%),
    linear-gradient(135deg, #fff 0%, #f7fbf5 48%, rgba(var(--green-rgb), 0.10) 100%);
  box-shadow:var(--shadow);
  color:var(--text);
}

.future-view::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(var(--green-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.05) 1px, transparent 1px);
  background-size:28px 28px;
  mask-image:linear-gradient(90deg, #000, rgba(0,0,0,0.18));
  pointer-events:none;
}

.future-view::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:4px;
  background:linear-gradient(90deg, var(--gold-light), var(--spice), var(--green));
}

.future-view__copy{
  position:relative;
  z-index:2;
  padding:6px clamp(8px, 2vw, 20px);
}

.future-view__eyebrow{
  display:inline-flex;
  margin-bottom:8px;
  color:var(--green);
  font-size:11px;
  font-weight:850;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.future-view__copy h2{
  margin:0;
  max-width:15ch;
  font-size:clamp(22px, 3vw, 30px);
  line-height:1.1;
  color:var(--black);
}

.future-view__copy p{
  margin:10px 0 0;
  max-width:33ch;
  color:var(--muted);
  font-size:14px;
}

.future-view__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.future-view__chips span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(var(--green-rgb), 0.18);
  color:var(--green);
  font-size:12px;
  font-weight:750;
}

.product-showcase__stage{
  position:relative;
  z-index:1;
  min-height:inherit;
  height:clamp(230px, 28vw, 310px);
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(var(--green-rgb), 0.16);
  background:
    radial-gradient(220px 160px at 50% 28%, rgba(var(--gold-rgb), 0.20), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(var(--gold-rgb), 0.08));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.8);
}

.product-showcase__slides{
  position:relative;
  width:100%;
  height:100%;
}

.product-showcase__slide{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(150px, 0.86fr);
  align-items:center;
  gap:16px;
  padding:18px 22px;
  opacity:0;
  transform:translateX(26px) scale(0.98);
  transition:opacity 420ms ease, transform 420ms ease;
  pointer-events:none;
}

.product-showcase__slide.active{
  opacity:1;
  transform:translateX(0) scale(1);
  pointer-events:auto;
}

.product-showcase__slide img{
  justify-self:center;
  width:min(220px, 82%);
  aspect-ratio:3 / 4;
  object-fit:cover;
  object-position:center;
  border-radius:16px;
  border:1px solid rgba(13, 13, 13, 0.06);
  background:#fff;
  box-shadow:0 18px 42px rgba(13, 13, 13, 0.12);
  filter:contrast(1.05) saturate(1.06);
}

.product-showcase__slide div{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
}

.product-showcase__slide span{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  background:var(--green-soft);
  color:var(--green);
  font-size:11px;
  font-weight:850;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.product-showcase__slide strong{
  max-width:12ch;
  color:var(--black);
  font-size:clamp(22px, 3.5vw, 34px);
  line-height:1.05;
}

.product-showcase__dots{
  position:absolute;
  left:18px;
  right:18px;
  bottom:14px;
  display:flex;
  justify-content:center;
  gap:7px;
}

.product-showcase__dots button{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(13, 13, 13, 0.18);
  cursor:pointer;
  transition:width 180ms ease, background 180ms ease;
}

.product-showcase__dots button.active{
  width:24px;
  background:var(--green);
}

.supplier-banner{
  margin:18px auto 0;
  max-width:1100px;
  padding:0 22px;
}

.supplier-card{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  background:var(--gradient-surface);
  border:1px solid var(--border-gold);
  border-radius:calc(var(--radius) + 6px);
  box-shadow: var(--shadow-sm);
  padding:18px;
}

.supplier-card h3{
  margin:0 0 8px;
  font-size:16px;
}

.supplier-line{
  margin:4px 0;
  color:rgba(31,41,55,0.95);
}

.supplier-msg{
  margin:10px 0 0;
  color:var(--muted);
  max-width:70ch;
}

.supplier-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:160px;
}

.page{
  max-width:1100px;
  margin:18px auto 0;
  padding:0 22px;
}

.info-page{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-hero{
  padding:28px;
  border:1px solid rgba(var(--green-rgb), 0.18);
  border-radius:28px;
  background:
    radial-gradient(440px 220px at 92% 10%, rgba(var(--gold-rgb), 0.24), transparent 68%),
    linear-gradient(135deg, #fff, rgba(var(--green-rgb), 0.08));
  box-shadow:var(--shadow);
}

.info-hero__eyebrow{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--green);
  font-size:11px;
  font-weight:850;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.info-hero h2{
  margin:0;
  max-width:16ch;
  color:var(--black);
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.08;
}

.info-hero p{
  margin:12px 0 0;
  max-width:58ch;
  color:var(--muted);
}

.info-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.info-hero__chips span{
  padding:7px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(var(--green-rgb), 0.16);
  color:var(--green);
  font-size:12px;
  font-weight:750;
}

.delivery-section--page,
.faq-section--page{
  margin-top:0;
  padding:0;
}

.page .strip--highlight .strip__inner{
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.12), rgba(var(--gold-rgb), 0.18));
  border-color:rgba(var(--green-rgb), 0.18);
}

.about-hero{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}

.about-hero__content{
  background:
    radial-gradient(360px 220px at 12% 5%, rgba(var(--gold-rgb), 0.22), transparent 68%),
    linear-gradient(135deg, #fff, rgba(var(--green-rgb), 0.08));
  border:1px solid rgba(var(--green-rgb), 0.18);
  border-radius:calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding:22px;
}

.about-hero__content h2{
  margin:0;
  font-size:30px;
  letter-spacing:-0.4px;
}

.subtitle{
  margin:8px 0 0;
  font-weight:800;
  color:var(--green);
}

.lead{
  margin:10px 0 0;
  color:var(--muted);
  max-width:70ch;
}

.about-hero__card{
  background:
    linear-gradient(135deg, var(--green), #23834b 54%, var(--gold) 100%);
  border:1px solid rgba(var(--green-rgb), 0.28);
  border-radius:calc(var(--radius) + 6px);
  box-shadow:0 18px 42px rgba(var(--green-rgb), 0.22);
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
  color:#fff;
}

.about-hero__card h3{ margin:0; font-size:16px; }

.about-supply-card h3{
  font-size:22px;
  line-height:1.1;
}

.about-supply-card p{
  margin:0;
  color:rgba(255,255,255,0.9);
  font-size:14px;
}

.about-supply-card__label{
  display:inline-flex;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.28);
  color:#fff;
  font-size:11px;
  font-weight:850;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.supply-list{
  display:grid;
  gap:8px;
}

.supply-list span{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,0.14);
  color:rgba(255,255,255,0.92);
  font-size:13px;
}

.supply-list strong{
  color:#fff;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
}

.about-supply-card .btn-primary{
  background:#fff;
  border-color:rgba(255,255,255,0.6);
  color:var(--green);
  box-shadow:0 12px 28px rgba(13, 13, 13, 0.12);
}

.about-supply-card .btn-outline{
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.36);
  color:#fff;
}

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

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

.content-card{
  margin-top:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow-sm);
}

.content-card h3{ margin:0 0 8px; font-size:16px; }
.content-card p{ margin:8px 0 0; color:rgba(31,41,55,0.95); }

.bullet{
  margin:8px 0 0;
  padding-left:18px;
  color:rgba(31,41,55,0.95);
}
.bullet li{ margin:6px 0; }

.feature-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:10px;
}

.feature{
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border-gold);
  background:var(--gold-soft);
  color:var(--text);
  font-weight:650;
}

.section{
  margin-top:18px;
}

.section__head{
  margin-bottom:12px;
}

.section__head h3{
  margin:0;
  font-size:18px;
}

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

.why-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow-sm);
  padding:16px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.why-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: var(--gold-soft);
  border:1px solid var(--border-gold);
  margin-bottom:10px;
  font-size:18px;
}

.why-card h4{
  margin:0;
  font-size:14px;
}

.why-card p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
}

.benefits-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow-sm);
  padding:16px;
}

.checklist{
  margin:0;
  padding-left:18px;
  color:rgba(31,41,55,0.95);
}

.checklist li{
  margin:8px 0;
}

.mission-vision{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.mv-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow-sm);
  padding:16px;
}

.mv-card h3{ margin:0; font-size:16px; }
.mv-card p{ margin:10px 0 0; color:var(--muted); }

.cta-block{
  margin:18px auto 0;
  max-width:1100px;
  padding:0 22px;
}

.cta-block__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px;
  background: var(--gradient-strip);
  border:1px solid var(--border-gold);
  border-radius:calc(var(--radius) + 6px);
  box-shadow: var(--shadow-sm);
}

.cta-block__inner h3{
  margin:0;
  font-size:18px;
  letter-spacing:-0.2px;
}

.empty-state{
  padding:12px;
  border-radius:12px;
  border:1px dashed var(--border);
  color:var(--muted);
  text-align:center;
  margin:10px 0;
}

.footer{
  text-align:center;
  padding:22px 16px;
  margin:44px 0 24px;
  color:var(--muted);
}

.hidden{display:none;}

@media (max-width: 820px){
  .header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:nowrap;
    padding:8px 12px;
  }

  .brand{
    min-width:0;
    flex:1;
    flex-wrap:nowrap;
    gap:8px;
  }

  .brand-logo{
    width:32px;
    height:32px;
    border-radius:8px;
  }

  .brand h1{
    font-size:15px;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .brand p{
    display:none;
  }

  .top-nav{
    width:auto;
    flex:0 0 auto;
    position:relative;
    z-index:40;
    gap:8px;
  }

  /* search removed */

  .menu-toggle{ display:block; }
  .menu-toggle{
    font-size:20px;
    padding:8px 10px;
    border-radius:999px;
  }

  .mobile-header-cart-btn{
    min-height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:8px 11px;
    border-radius:999px;
    border:1px solid rgba(var(--green-rgb), 0.22);
    background:#fff;
    color:var(--black);
    font-family:inherit;
    font-size:13px;
    font-weight:750;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(13, 13, 13, 0.06);
  }

  .nav-links{
    display:flex;
    width:min(220px, 80vw);
    position:absolute;
    right:0;
    top:44px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:#fff;
    padding:8px;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow: var(--shadow-sm);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-6px) scale(0.98);
    transform-origin:top right;
    transition:opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0) scale(1);
  }

  .nav-link{ width:100%; justify-content:flex-start; }

  .nav-cart-btn{
    display:none;
  }

  .hero{
    min-height:clamp(200px, 36vh, 280px);
    margin-left:14px;
    margin-right:14px;
  }

  .hero__overlay{
    background:linear-gradient(
      180deg,
      rgba(13, 13, 13, 0.55) 0%,
      rgba(13, 13, 13, 0.88) 55%,
      rgba(13, 13, 13, 0.94) 100%
    );
  }

  .hero__content{
    max-width:100%;
    padding:22px 18px 26px;
  }

  .hero__content h2{
    font-size:clamp(22px, 6.5vw, 28px);
  }

  .hero__content p{
    font-size:14px;
  }

  .hero__content .primary-btn{
    width:100%;
    margin-top:14px;
  }

  .future-view{
    grid-template-columns:1fr;
    margin-left:14px;
    margin-right:14px;
    min-height:0;
    gap:12px;
    padding:14px;
  }

  .future-view__copy{
    padding:4px 4px 0;
  }

  .future-view__copy h2{
    max-width:18ch;
    font-size:22px;
  }

  .future-view__copy p{
    display:none;
  }

  .future-view__chips{
    margin-top:10px;
  }

  .product-showcase__stage{
    min-height:inherit;
    height:clamp(210px, 38vh, 280px);
  }

  .product-showcase__slide{
    grid-template-columns:0.9fr 1fr;
    gap:10px;
    padding:14px 14px 28px;
  }

  .product-showcase__slide img{
    width:min(150px, 92%);
    border-radius:14px;
  }

  .product-showcase__slide strong{
    font-size:22px;
  }

  .product-showcase__slide span{
    font-size:9px;
    padding:5px 7px;
  }

  .trust-panel{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
    padding-left:14px;
    padding-right:14px;
  }

  .trust-panel__item{
    min-height:104px;
    padding:12px;
    border-radius:18px;
  }

  .trust-panel__item p{
    font-size:12px;
  }

  .supplier-card{
    flex-direction:column;
    padding:14px;
  }
  .supplier-actions{
    flex-direction:row;
    width:100%;
  }
  .about-hero{
    grid-template-columns: 1fr;
  }
  .why-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .product-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  .product-card{
    padding:9px;
    border-radius:18px;
    gap:8px;
  }
  .product-image-btn{
    border-radius:16px;
  }
  .product-image-btn::after{
    display:none;
  }
  .product-card img{
    aspect-ratio:1 / 1;
    height:auto;
    object-fit:cover;
    border-radius:14px;
    padding:0;
  }
  .product-meta h3{
    font-size:12px;
    line-height:1.28;
  }
  .product-card .price{
    font-size:13px;
    margin-top:4px;
  }
  .product-highlight{
    font-size:11px;
  }
  .product-category-tag{
    font-size:10px;
    padding:2px 6px;
    margin-bottom:3px;
  }
  .product-badge{
    top:7px;
    left:7px;
    min-height:22px;
    padding:4px 7px;
    font-size:9px;
  }
  .product-actions{
    grid-template-columns:1fr;
    gap:6px;
  }
  .product-actions .btn,
  .product-card .add-cart-btn{
    min-height:38px;
    padding:9px 8px;
    font-size:12px;
    border-radius:999px;
  }
  .products,
  .strip,
  .trust-panel,
  .supplier-banner,
  .delivery-section,
  .faq-section,
  .page{
    padding-left:14px;
    padding-right:14px;
  }

  .info-page{
    gap:14px;
  }

  .info-hero{
    padding:20px;
    border-radius:22px;
  }

  .info-hero h2{
    max-width:18ch;
    font-size:28px;
  }

  .order-section{
    padding:10px;
    align-items:end;
  }

  .quick-view{
    padding:10px;
    align-items:end;
  }

  .quick-view__panel{
    grid-template-columns:1fr;
    max-height:min(70vh, 620px);
    overflow-y:auto;
    border-radius:22px 22px 0 0;
  }

  .quick-view__media{
    min-height:150px;
    padding:14px 22px 8px;
  }

  .quick-view__media img{
    max-width:150px;
    border-radius:14px;
  }

  .quick-view__content{
    gap:10px;
    padding:14px 16px calc(16px + env(safe-area-inset-bottom));
  }

  .quick-view__content h2{
    font-size:23px;
  }

  .quick-view__note{
    font-size:13px;
    line-height:1.45;
  }

  .quick-view__trust{
    padding:10px 12px;
  }

  .quick-view__trust p{
    font-size:12px;
  }

  .variant-options{
    gap:7px;
  }

  .variant-option{
    min-height:48px;
    padding:9px 10px;
  }

  .variant-option span,
  .variant-option strong{
    font-size:12px;
  }

  .quick-view__buy{
    align-items:stretch;
    flex-direction:column;
  }

  .quick-view__add{
    width:100%;
    min-width:0;
  }

  .delivery-grid{
    grid-template-columns:1fr;
  }

  .cart-drawer{
    width:100vw;
  }

  .search-input{
    max-width:100%;
  }
  .products{
    margin-top:18px;
    padding-top:18px;
  }
  .strip{
    margin-top:12px;
  }
  .strip__inner{
    gap:8px;
    padding:10px 12px;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
  .order-card{
    width:100%;
    max-height:calc(100vh - 20px);
    border-radius:26px 26px 0 0;
  }
  .order-head{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
    padding:14px;
  }
  .order-head h2{
    font-size:20px;
  }
  .order-note{
    display:none;
  }
  .order-brand{
    gap:9px;
  }
  .order-brand__logo{
    width:36px;
    height:36px;
    border-radius:10px;
  }
  .order-brand__eyebrow{
    font-size:10px;
  }
  .order-close-btn{
    width:36px;
    height:36px;
    min-width:36px;
    padding:0;
    font-size:22px;
    border-radius:999px;
    white-space:nowrap;
    flex-shrink:0;
  }
  .order-form{
    margin-top:0;
  }
  .order-scroll{
    padding:10px 14px 4px;
  }
  .checkout-footer{
    grid-template-columns:1fr;
    gap:8px;
    padding:10px 14px calc(12px + env(safe-area-inset-bottom));
  }
  .checkout-totals__row--grand{
    font-size:14px;
  }
  .checkout-actions .btn{
    min-height:48px;
  }
  .form-grid label{
    font-size:12px;
    gap:4px;
  }
  .form-grid input,
  .form-grid textarea{
    padding:9px 10px;
    border-radius:14px;
    font-size:16px;
  }
  #order-product-id,
  #order-price{
    background:#f8fafc;
  }
  .order-form .btn{
    min-height:46px;
    font-size:14px;
  }
  .form-grid{
    gap:10px;
  }
  .mission-vision{
    grid-template-columns: 1fr;
  }
  .cta-block__inner{
    flex-direction:column;
    align-items:stretch;
  }
  .cta-row{
    width:100%;
  }
  .btn{
    width:100%;
  }
  .strip__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer{
    margin-bottom:24px;
  }
}

@media (max-width: 520px){
  /* search removed */
  .hero{
    min-height:190px;
  }

  .hero__eyebrow{
    font-size:10px;
  }
  .brand h1{ font-size:14px; }
  .brand-logo{
    width:28px;
    height:28px;
  }
  .products-subtitle{
    font-size:13px;
  }
  .order-head{
    flex-direction:row;
    align-items:flex-start;
  }
  .order-close-btn{
    align-self:flex-start;
  }
}

@media (min-width: 821px) and (max-width: 1024px){
  .product-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}
/* Mobile & Tablet Responsive - Quick View Modal */

/* Tablet: 769px - 1024px */
@media (max-width: 1024px) {
  .quick-view__panel {
    width: calc(100% - 24px);
    max-width: 720px;
  }
}

/* Large Mobile: 600px - 768px */
@media (max-width: 768px) {
  .quick-view {
    padding: 0;
    place-items: flex-end;
  }

  .quick-view__panel {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    border-radius: 28px 28px 0 0;
    max-height: 95vh;
    margin: 0;
  }

  .quick-view__close {
    width: 44px;
    height: 44px;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10;
  }

  .quick-view__media {
    max-height: 280px;
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-view__media img {
    max-width: 260px;
    max-height: 240px;
  }

  .quick-view__content {
    padding: 24px 20px 20px;
    max-height: calc(95vh - 280px - 60px);
    gap: 16px;
  }

  .quick-view__content h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .quick-view__category {
    font-size: 11px;
  }

  .quick-view__note {
    font-size: 14px;
  }

  .quick-view__trust {
    padding: 14px 16px;
  }

  .variant-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .variant-option {
    grid-template-columns: 1fr auto;
    min-height: 50px;
    padding: 10px 12px;
  }

  .variant-option span {
    font-size: 12px;
  }

  .variant-option strong {
    font-size: 13px;
  }

  .quick-view__buy {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 16px;
  }

  .quick-view__price-label {
    font-size: 11px;
  }

  .quick-view__buy strong {
    font-size: 26px;
    align-self: flex-start;
  }

  .quick-view__add {
    flex: 1;
    min-height: 52px;
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* Medium Mobile: 480px - 600px */
@media (max-width: 600px) {
  .quick-view {
    padding: 0;
  }

  .quick-view__panel {
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
  }

  .quick-view__close {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .quick-view__media {
    max-height: 260px;
    padding: 24px 18px;
  }

  .quick-view__media img {
    max-width: 240px;
    max-height: 220px;
  }

  .quick-view__content {
    padding: 22px 18px 16px;
    max-height: calc(92vh - 260px - 50px);
    gap: 14px;
  }

  .quick-view__content h2 {
    font-size: 22px;
  }

  .quick-view__category {
    font-size: 10px;
  }

  .quick-view__note {
    font-size: 13px;
  }

  .quick-view__trust {
    padding: 13px 14px;
    font-size: 13px;
  }

  .quick-view__trust span {
    font-size: 10px;
  }

  .variant-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .variant-option {
    min-height: 48px;
    padding: 9px 11px;
  }

  .variant-option span {
    font-size: 11px;
  }

  .variant-option strong {
    font-size: 12px;
  }

  .quick-view__buy {
    gap: 10px;
  }

  .quick-view__add {
    min-height: 50px;
    font-size: 14px;
    padding: 12px 16px;
  }

  .quick-view__buy strong {
    font-size: 24px;
  }

  .quick-view__facts {
    gap: 6px;
  }

  .quick-view__facts span {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* Small Mobile: 375px - 480px (iPhone SE, etc.) */
@media (max-width: 480px) {
  .quick-view {
    padding: 0;
  }

  .quick-view__panel {
    border-radius: 22px 22px 0 0;
    max-height: 90vh;
  }

  .quick-view__close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    top: 12px;
    right: 12px;
  }

  .quick-view__media {
    max-height: 240px;
    padding: 20px 16px;
  }

  .quick-view__media img {
    max-width: 220px;
    max-height: 200px;
  }

  .quick-view__content {
    padding: 20px 16px;
    max-height: calc(90vh - 240px - 40px);
    gap: 13px;
  }

  .quick-view__content h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .quick-view__category {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .quick-view__note {
    font-size: 12px;
  }

  .quick-view__trust {
    padding: 12px 13px;
    font-size: 12px;
  }

  .quick-view__trust span {
    font-size: 9px;
  }

  .quick-view__trust p {
    line-height: 1.5;
  }

  .variant-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .variant-option {
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .variant-option span {
    font-size: 10px;
  }

  .variant-option strong {
    font-size: 12px;
  }

  .quick-view__buy {
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
  }

  .quick-view__price-label {
    font-size: 9px;
  }

  .quick-view__buy strong {
    font-size: 22px;
  }

  .quick-view__add {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 13px;
    width: 100%;
  }

  .quick-view__facts {
    flex-wrap: wrap;
    gap: 5px;
  }

  .quick-view__facts span {
    padding: 5px 9px;
    font-size: 10px;
  }

  .quick-view__variants-head span {
    font-size: 10px;
  }

  .quick-view__variants-head strong {
    font-size: 13px;
  }
}

/* Extra Small Mobile: < 375px (iPhone 5/5S) */
@media (max-width: 375px) {
  .quick-view {
    padding: 0;
  }

  .quick-view__panel {
    border-radius: 20px 20px 0 0;
  }

  .quick-view__close {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .quick-view__media {
    max-height: 220px;
    padding: 18px 14px;
  }

  .quick-view__media img {
    max-width: 200px;
    max-height: 180px;
  }

  .quick-view__content {
    padding: 18px 14px;
    gap: 12px;
  }

  .quick-view__content h2 {
    font-size: 18px;
  }

  .variant-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .variant-option {
    min-height: 44px;
    padding: 8px 9px;
  }

  .variant-option span {
    font-size: 9px;
  }

  .variant-option strong {
    font-size: 11px;
  }

  .quick-view__add {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .quick-view__buy strong {
    font-size: 20px;
  }
}
