/*
Theme Name: Rawē Labs
Theme URI: https://rawelabs.com
Description: Custom WooCommerce theme for Rawē Labs peptide brand. Luxury clinical dark aesthetic.
Version: 1.0.0
Author: Rawē Labs
Text Domain: rawe-labs
WC requires at least: 7.0
WC tested up to: 9.0
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:        #080808;
  --dark:         #0f0f0f;
  --card:         #121212;
  --border:       #1f1f1f;
  --border-light: #2a2a2a;
  --white:        #f5f2ee;
  --ash:          #8a8278;
  --ash-light:    #b8b0a8;
  --gold:         #c9a96e;
  --gold-dim:     rgba(201,169,110,0.12);
  --gold-glow:    rgba(201,169,110,0.06);
  --font-display: 'Syncopate', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        64px;
  --max-w:        1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.display { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.serif   { font-family: var(--font-serif); font-weight: 300; }
.eyebrow { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); }
.section-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 300; color: var(--white); line-height: 1.2; }
.section-body  { font-size: 14px; color: var(--ash); line-height: 1.8; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header .section-body { max-width: 480px; margin: 14px auto 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, button.btn, a.btn { display: inline-block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px 40px; border: none; transition: all 0.2s; font-weight: 500; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ash-light); border: 1px solid var(--border); padding: 10px 20px; font-size: 10px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.18em; color: var(--white); }
.site-logo .e { color: var(--gold); font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 22px; vertical-align: middle; }
.nav-logo-sub { font-size: 9px; letter-spacing: 0.45em; color: var(--ash); text-transform: uppercase; display: block; margin-top: -4px; text-indent: 0.45em; }

.primary-nav { display: flex; gap: 32px; align-items: center; }
.primary-nav a { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash-light); transition: color 0.2s; }
.primary-nav a:hover, .primary-nav a.current { color: var(--white); }

.nav-actions { display: flex; gap: 20px; align-items: center; }
.nav-actions a { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash-light); transition: color 0.2s; }
.nav-actions a:hover { color: var(--white); }
.cart-icon { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--black);
  font-size: 8px; font-weight: 700; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* mobile hamburger */
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 20px; }

/* ============================================================
   TICKER
   ============================================================ */
.site-ticker {
  margin-top: var(--nav-h);
  background: var(--gold);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 32s linear infinite; }
.ticker-item { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black); font-weight: 500; padding: 0 28px; font-family: var(--font-body); }
.ticker-sep { color: rgba(0,0,0,0.3); padding: 0 4px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(201,169,110,0.09) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.22;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content { position: relative; z-index: 1; }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(52px, 10vw, 108px); letter-spacing: 0.12em; line-height: 1; color: var(--white); margin-bottom: 4px; }
.hero-title .e { color: var(--gold); font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 1.2em; vertical-align: middle; }
.hero-labs { font-size: 11px; letter-spacing: 0.65em; text-transform: uppercase; color: var(--ash); margin-bottom: 36px; text-indent: 0.65em; }
.hero-divider { width: 90px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 36px; }
.hero-tagline { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px, 3vw, 30px); color: var(--ash-light); font-weight: 300; max-width: 560px; margin: 0 auto 14px; line-height: 1.4; }
.hero-body { font-size: 14px; color: var(--ash); max-width: 440px; margin: 0 auto 44px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.hero-badge-item { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); display: flex; align-items: center; gap: 7px; }
.hero-badge-item span { color: var(--gold); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { display: flex; justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--dark); }
.trust-item { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash-light); padding: 18px 28px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--gold); font-size: 11px; }

/* ============================================================
   PRODUCT CARDS (used on homepage + shop)
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2px; }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--gold); }

.product-thumb {
  width: 100%; aspect-ratio: 1;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-thumb img { transform: scale(1.03); }

.product-badge { position: absolute; top: 14px; left: 14px; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; font-weight: 500; font-family: var(--font-body); }
.badge-new  { background: var(--gold); color: var(--black); }
.badge-sale { background: #e8e0d4; color: #333; }
.badge-out  { background: var(--border-light); color: var(--ash-light); }

.product-info { padding: 20px 22px 24px; border-top: 1px solid var(--border); flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); margin-bottom: 5px; }
.product-excerpt { font-size: 12px; color: var(--ash); margin-bottom: 14px; line-height: 1.5; flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-price { font-family: var(--font-serif); font-size: 20px; font-weight: 300; color: var(--white); }
.product-price del { color: var(--ash); font-size: 14px; margin-right: 5px; }
.add-to-cart-btn { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 9px 18px; background: transparent; border: 1px solid var(--border-light); color: var(--ash-light); transition: all 0.2s; font-family: var(--font-body); }
.add-to-cart-btn:hover, .add-to-cart-btn:focus { background: var(--gold); border-color: var(--gold); color: var(--black); outline: none; }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
.home-products { padding: 96px 0; }
.home-why { padding: 96px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 48px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.why-text h2 em { color: var(--gold); }
.why-text p { font-size: 14px; color: var(--ash); line-height: 1.8; margin-bottom: 28px; }
.why-checks { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.why-checks li { font-size: 13px; color: var(--ash-light); display: flex; align-items: center; gap: 12px; }
.why-checks li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-box { background: var(--card); border: 1px solid var(--border); padding: 30px 20px; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 38px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); }

.home-promise { padding: 96px 0; }
.promise-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.promise-card { background: var(--card); border: 1px solid var(--border); padding: 38px 22px; text-align: center; transition: border-color 0.3s; }
.promise-card:hover { border-color: var(--border-light); }
.promise-icon { width: 44px; height: 44px; margin: 0 auto 18px; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 17px; }
.promise-title { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); margin-bottom: 12px; }
.promise-body { font-size: 12px; color: var(--ash); line-height: 1.7; }

.home-cta { padding: 96px 0; background: var(--dark); border-top: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.home-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--gold-glow), transparent 70%); }
.home-cta h2 { font-family: var(--font-serif); font-size: clamp(28px,4vw,52px); font-weight: 300; color: var(--white); margin-bottom: 16px; line-height: 1.2; position: relative; }
.home-cta h2 em { color: var(--gold); }
.home-cta p { font-size: 14px; color: var(--ash); max-width: 460px; margin: 0 auto 36px; line-height: 1.7; position: relative; }

/* ============================================================
   SHOP / ARCHIVE PAGE
   ============================================================ */
.shop-header { padding: 72px 0 48px; text-align: center; border-bottom: 1px solid var(--border); background: var(--dark); }
.shop-header h1 { font-family: var(--font-display); font-size: clamp(28px,5vw,56px); font-weight: 700; letter-spacing: 0.15em; margin-bottom: 12px; }
.shop-header p { font-size: 14px; color: var(--ash); }

.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 56px 0 96px; }
.shop-sidebar { border-right: 1px solid var(--border); padding-right: 32px; }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget h3 { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--ash-light); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-widget ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-widget a { font-size: 13px; color: var(--ash); transition: color 0.2s; display: flex; justify-content: space-between; }
.sidebar-widget a:hover { color: var(--gold); }
.sidebar-widget .count { font-size: 11px; color: var(--border-light); }

.price-filter { display: flex; flex-direction: column; gap: 12px; }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-input { background: var(--card); border: 1px solid var(--border-light); padding: 8px 12px; color: var(--white); font-size: 12px; font-family: var(--font-body); width: 80px; outline: none; }
.price-input:focus { border-color: var(--gold); }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.result-count { font-size: 12px; color: var(--ash); }
.sort-select { background: var(--card); border: 1px solid var(--border-light); color: var(--ash-light); padding: 9px 14px; font-size: 11px; letter-spacing: 0.1em; font-family: var(--font-body); outline: none; cursor: pointer; }
.sort-select:focus { border-color: var(--gold); }

.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 56px; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--border); color: var(--ash-light); font-size: 13px; transition: all 0.2s; cursor: pointer; }
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product-wrap { padding: 64px 0 96px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.product-gallery { position: sticky; top: 88px; }
.gallery-main { aspect-ratio: 1; background: var(--dark); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 12px; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-badge { position: absolute; top: 16px; left: 16px; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb { width: 72px; height: 72px; border: 1px solid var(--border); background: var(--dark); cursor: pointer; overflow: hidden; transition: border-color 0.2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-details {}
.product-breadcrumb { font-size: 11px; color: var(--ash); margin-bottom: 20px; letter-spacing: 0.1em; }
.product-breadcrumb a { color: var(--ash); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span { margin: 0 8px; color: var(--border-light); }

.product-title { font-family: var(--font-display); font-size: clamp(26px,4vw,44px); font-weight: 700; letter-spacing: 0.12em; margin-bottom: 8px; line-height: 1.1; }
.product-sku { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ash); margin-bottom: 20px; }
.product-single-price { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.product-single-price del { color: var(--ash); font-size: 22px; margin-right: 8px; }
.product-stock { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #7ec984; margin-bottom: 28px; display: flex; align-items: center; gap: 7px; }
.product-stock::before { content: ''; width: 6px; height: 6px; background: #7ec984; border-radius: 50%; }
.product-stock.out { color: var(--ash); }
.product-stock.out::before { background: var(--ash); }

.product-short-desc { font-size: 14px; color: var(--ash-light); line-height: 1.8; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

/* qty + add to cart */
.add-to-cart-form { margin-bottom: 24px; }
.qty-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.qty-wrap { display: flex; border: 1px solid var(--border-light); }
.qty-btn { width: 40px; background: var(--card); border: none; color: var(--white); font-size: 16px; cursor: pointer; transition: background 0.2s; }
.qty-btn:hover { background: var(--border-light); }
.qty-input { width: 52px; background: var(--card); border: none; border-left: 1px solid var(--border-light); border-right: 1px solid var(--border-light); color: var(--white); text-align: center; font-size: 15px; font-family: var(--font-body); outline: none; }
.atc-btn { flex: 1; background: var(--gold); color: var(--black); border: none; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: opacity 0.2s; }
.atc-btn:hover { opacity: 0.85; }
.wishlist-btn { width: 52px; background: transparent; border: 1px solid var(--border-light); color: var(--ash-light); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.wishlist-btn:hover { border-color: var(--gold); color: var(--gold); }

.product-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.meta-row { display: flex; gap: 12px; font-size: 12px; }
.meta-label { color: var(--ash); min-width: 80px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 10px; }
.meta-val { color: var(--ash-light); }

.product-guarantees { display: flex; gap: 16px; flex-wrap: wrap; padding: 20px; background: var(--card); border: 1px solid var(--border); margin-bottom: 28px; }
.guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ash-light); letter-spacing: 0.08em; }
.guarantee-item span { color: var(--gold); font-size: 14px; }

/* tabs */
.product-tabs { margin-top: 16px; }
.tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.tab-btn { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); padding: 13px 22px; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--white); }
.tab-panel { display: none; font-size: 14px; color: var(--ash); line-height: 1.8; }
.tab-panel.active { display: block; }
.tab-panel h4 { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); margin: 20px 0 10px; }
.tab-panel p { margin-bottom: 14px; }
.tab-panel ul { display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }
.tab-panel ul li { display: flex; gap: 10px; }
.tab-panel ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* COA table */
.coa-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.coa-table th, .coa-table td { padding: 12px 14px; text-align: left; font-size: 12px; border-bottom: 1px solid var(--border); }
.coa-table th { font-family: var(--font-display); font-size: 9px; letter-spacing: 0.2em; color: var(--ash); font-weight: 700; }
.coa-table td { color: var(--ash-light); }
.coa-table .pass { color: #7ec984; }

/* related products */
.related-products { padding: 80px 0; border-top: 1px solid var(--border); }
.related-products h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 36px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 96px 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { font-size: 14px; color: var(--white); padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 13px; color: var(--ash); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--black); border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0.15em; color: var(--white); display: block; margin-bottom: 14px; }
.footer-logo .e { color: var(--gold); font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 24px; vertical-align: middle; }
.footer-brand p { font-size: 12px; color: var(--ash); line-height: 1.7; margin-bottom: 22px; max-width: 250px; }
.email-form { display: flex; }
.email-input { flex: 1; background: var(--card); border: 1px solid var(--border-light); border-right: none; padding: 11px 13px; font-size: 12px; color: var(--white); outline: none; font-family: var(--font-body); }
.email-input::placeholder { color: var(--ash); }
.email-input:focus { border-color: var(--gold); }
.email-submit { background: var(--gold); border: none; padding: 11px 16px; color: var(--black); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-weight: 500; font-family: var(--font-body); transition: opacity 0.2s; }
.email-submit:hover { opacity: 0.88; }

.footer-col h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash-light); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: var(--ash); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.footer-disclaimer { font-size: 11px; color: var(--ash); line-height: 1.7; max-width: 580px; }
.footer-disclaimer strong { color: var(--ash-light); }
.footer-copy { font-size: 11px; color: var(--ash); white-space: nowrap; }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  background: var(--card); border: 1px solid var(--border); color: var(--ash-light);
  border-left: 3px solid var(--gold); padding: 14px 18px; font-size: 13px;
  margin-bottom: 24px; list-style: none;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--card); border: 1px solid var(--border-light); color: var(--white);
  padding: 12px 14px; font-family: var(--font-body); font-size: 13px; outline: none;
  width: 100%; border-radius: 0;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--gold); }
.woocommerce form .form-row label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash-light); margin-bottom: 8px; display: block; }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--gold); color: var(--black); border-radius: 0;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 14px 32px; font-weight: 500;
  border: none; transition: opacity 0.2s;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--gold); opacity: 0.85; }
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table th { font-family: var(--font-display); font-size: 9px; letter-spacing: 0.2em; color: var(--ash); border-bottom: 1px solid var(--border); padding: 12px 8px; }
.woocommerce table.shop_table td { border-bottom: 1px solid var(--border); padding: 16px 8px; font-size: 13px; color: var(--ash-light); }
.woocommerce .cart_totals, .woocommerce .checkout_coupon { background: var(--card); border: 1px solid var(--border); padding: 28px; }
.star-rating span::before, .star-rating::before { color: var(--gold); }

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.9s ease both; }
.anim-2 { animation: fadeUp 0.9s 0.1s ease both; }
.anim-3 { animation: fadeUp 0.9s 0.2s ease both; }
.anim-4 { animation: fadeUp 0.9s 0.3s ease both; }
.anim-5 { animation: fadeUp 0.9s 0.4s ease both; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 28px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  #site-header { padding: 0 20px; }
  .container { padding: 0 20px; }
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .trust-bar { display: none; }
  .hero-section { min-height: 80vh; }
}
@media (max-width: 480px) {
  .promise-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .home-products, .home-why, .home-promise, .home-cta, .faq-section { padding: 64px 0; }
}
