/*
Theme Name: BuyHHCUK
Theme URI: https://buyhhcuk.com
Author: BuyHHCUK
Author URI: https://buyhhcuk.com
Description: Premium WooCommerce theme for Buy HHC UK - HHC, CBD & cannabis products. Modern design, lab-tested quality.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buyhhcuk
Tags: woocommerce, hhc, cbd, dispensary, modern, dark, premium, ecommerce
*/

:root {
  --bg-primary: #09090b;
  --bg-secondary: #18181b;
  --bg-tertiary: #1f1f23;
  --bg-card: #18181b;
  --bg-card-hover: #1f1f23;
  --bg-elevated: #27272a;
  --border: #27272a;
  --border-hover: #3f3f46;
  --border-light: #1f1f23;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --text-muted: #52525b;
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-gradient: linear-gradient(135deg, #10b981, #06b6d4);
  --accent-gradient-warm: linear-gradient(135deg, #8b5cf6, #10b981);
  --accent-gradient-glow: linear-gradient(135deg, #10b981, #06b6d4, #8b5cf6);
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.1);
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(16,185,129,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

::selection { background: var(--accent); color: white; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.hidden { display: none !important; }
.glass { background: rgba(24, 24, 27, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.35);
}
.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: black;
  font-weight: 700;
}
.btn-gold:hover {
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.35);
}
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 100px;
}
.badge-accent { background: var(--success-bg); color: var(--accent); border: 1px solid rgba(16,185,129,0.25); }
.badge-gold { background: rgba(245,158,11,0.1); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }
.badge-danger { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(239,68,68,0.25); }
.badge-muted { background: rgba(113,113,122,0.1); color: var(--text-muted); border: 1px solid rgba(113,113,122,0.25); }

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(9, 9, 11, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo img { height: 40px; width: auto; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.site-logo-text-light { font-weight: 400; color: var(--text-primary); -webkit-text-fill-color: var(--text-primary); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.main-nav .dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: var(--radius);
  color: var(--text-secondary);
}
.main-nav .dropdown a:hover { background: var(--success-bg); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.header-action-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--accent);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--accent-gradient);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(16,185,129,0.4);
}
.header-action-btn svg { width: 18px; height: 18px; }

.age-banner {
  background: var(--accent-gradient);
  text-align: center;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
}
.age-banner span { opacity: 0.8; margin: 0 8px; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(16,185,129,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,92,246,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.05) 0%, transparent 50%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--success-bg);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
}
.hero h1 .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.hero-image {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 700px;
  z-index: 1;
  opacity: 0.4;
}

.announcement-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  overflow: hidden;
}
.announcement-bar-inner {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.announcement-item svg { color: var(--accent); flex-shrink: 0; }

.categories-section { padding: 100px 0; }
.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--success-bg);
  border-radius: 100px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 480px; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.category-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover::before { opacity: 1; }
.category-card:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.category-icon {
  width: 64px;
  height: 64px;
  background: var(--success-bg);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: rgba(16,185,129,0.2);
  transform: scale(1.1) rotate(-5deg);
}
.category-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: block;
}
.category-count {
  font-size: 12px;
  color: var(--text-tertiary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-tertiary);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image-wrap img { transform: scale(1.08); }
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(9,9,11,0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: var(--transition);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.product-wishlist:hover { color: var(--danger); border-color: var(--danger); }
.product-quick-view {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 2;
}
.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-body);
}
.product-thc-cbd {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.thc-cbd-item {
  font-size: 12px;
  color: var(--text-tertiary);
}
.thc-cbd-item strong {
  color: var(--accent);
  font-weight: 700;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-tertiary); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.product-price { font-weight: 700; font-size: 1.2rem; color: var(--text-primary); }
.product-price del { font-size: 0.85rem; color: var(--text-tertiary); font-weight: 400; margin-right: 6px; }
.product-price ins { text-decoration: none; color: var(--accent); }
.product-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--accent-gradient);
  color: white;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.product-add-btn:hover {
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 100px;
  padding-bottom: 80px;
}
.shop-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.filter-item:hover { background: rgba(255,255,255,0.03); }
.filter-item input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.filter-item label { font-size: 14px; color: var(--text-secondary); cursor: pointer; flex: 1; }
.filter-item .filter-count {
  font-size: 11px;
  color: var(--text-tertiary);
  background: rgba(255,255,255,0.04);
  padding: 2px 8px;
  border-radius: 100px;
}
.price-range-wrap { padding: 8px 0; }
.price-range-inputs { display: flex; gap: 12px; margin-top: 16px; }
.price-input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
}
.price-input:focus { border-color: var(--accent); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  gap: 16px;
  flex-wrap: wrap;
}
.shop-result-count { font-size: 14px; color: var(--text-secondary); }
.shop-sort select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 8px 32px 8px 12px;
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.shop-sort select:focus { border-color: var(--accent); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  color: var(--text-tertiary);
  transition: var(--transition);
  cursor: pointer;
}
.view-btn.active, .view-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }

.single-product-page {
  padding-top: 100px;
  padding-bottom: 80px;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.product-breadcrumb a { color: var(--text-tertiary); }
.product-breadcrumb a:hover { color: var(--accent); }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 10px; flex-wrap: wrap; }
.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-details .product-category-label { margin-bottom: 12px; }
.product-details h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.product-subtitle { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 20px; }
.product-details .product-rating { margin-bottom: 20px; }
.product-thc-cbd-detail {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.thc-cbd-detail-item { text-align: center; flex: 1; padding: 8px; }
.thc-cbd-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-tertiary); margin-bottom: 6px; }
.thc-cbd-detail-value { font-size: 1.4rem; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: var(--font-display); }
.thc-cbd-detail-divider { width: 1px; background: var(--border-light); align-self: stretch; }

.product-price-detail { margin-bottom: 24px; }
.product-price-detail .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-display);
}
.product-price-detail .price del { color: var(--text-tertiary); font-size: 1.2rem; font-weight: 400; margin-right: 8px; }
.product-price-detail .price ins { text-decoration: none; color: var(--accent); }

.product-variations { margin-bottom: 24px; }
.variation-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.variation-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.variation-item input[type="radio"] { display: none; }
.variation-item label {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.variation-item input[type="radio"]:checked + label,
.variation-item label:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--success-bg);
}

.quantity-add-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.quant-btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}
.quant-btn:hover { background: rgba(255,255,255,0.04); color: var(--text-primary); }
.qty {
  width: 60px;
  height: 52px;
  background: none;
  border: none;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.qty:focus { outline: none; }
.add-to-cart-btn {
  flex: 1;
  padding: 16px 32px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}
.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.35);
}

.product-meta-info { margin-bottom: 24px; }
.product-meta-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.product-meta-row:last-child { border-bottom: none; }
.product-meta-key { color: var(--text-tertiary); min-width: 100px; }
.product-meta-val { color: var(--text-primary); font-weight: 500; }
.product-meta-val a { color: var(--accent); }

.product-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.guarantee-item { text-align: center; }
.guarantee-item svg { color: var(--accent); margin: 0 auto 8px; display: block; }
.guarantee-item span { font-size: 11px; color: var(--text-secondary); line-height: 1.4; display: block; }

.str-highlights {
  margin: 24px 0;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.str-highlights h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.select-tag-list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.select_tag_feel, .select_tag_neg, .select_tag_plus {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-width: 90px;
}
.select_tag_feel { color: var(--accent); }
.select_tag_neg { color: var(--danger); }
.select_tag_plus { color: var(--gold); }

.calm-or-energy, .lthc_hthc { margin-top: 16px; }
.calm-or-energy-text, .lthc_hthc-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}
.calm-or-energy-bg, .lthc_hthc-bg {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 100px;
  overflow: hidden;
}
.calm-or-energy-fill, .lthc_hthc-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 100px;
}

.product-tabs { margin-top: 60px; }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-tertiary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--success-bg);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-text h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; color: var(--text-primary); }
.feature-text p { font-size: 13px; color: var(--text-tertiary); margin: 0; line-height: 1.5; }

.testimonials-section { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-tertiary); }

.newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, transparent 60%);
  border-top: 1px solid var(--border-light);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { margin-bottom: 12px; }
.newsletter-inner p { color: var(--text-secondary); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--text-primary);
  font-size: 14px;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-input::placeholder { color: var(--text-tertiary); }

#site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}
.footer-desc { font-size: 14px; color: var(--text-tertiary); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-tertiary);
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-tertiary); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-tertiary);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-tertiary); }
.footer-bottom-links a:hover { color: var(--accent); }
.age-warning {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 12px;
  color: rgba(239,68,68,0.7);
  margin-top: 24px;
  text-align: center;
}

.cart-page, .checkout-page {
  padding-top: 100px;
  padding-bottom: 80px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-tertiary);
}
.cart-table td { padding: 20px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-product-img { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; }
.cart-product-info { display: flex; align-items: center; gap: 16px; }
.cart-product-name { font-weight: 600; font-size: 15px; }
.cart-product-variant { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }
.cart-remove {
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  background: none;
  border: none;
  line-height: 1;
}
.cart-remove:hover { color: var(--danger); }
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary h3 { margin-bottom: 24px; font-size: 18px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 16px;
  margin-top: 4px;
  border-top: 2px solid var(--border-light);
}
.cart-coupon { margin: 20px 0; }
.coupon-input-wrap { display: flex; gap: 8px; }
.coupon-input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
}
.coupon-input:focus { border-color: var(--accent); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.checkout-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.checkout-form-section h3 {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-field label .required { color: var(--accent); }
.form-control {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
}
.form-control:focus { border-color: var(--accent); background: var(--bg-card); }
.form-control::placeholder { color: var(--text-tertiary); }

.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding-top: 100px;
  padding-bottom: 80px;
}
.account-nav {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 8px;
  position: sticky;
  top: 90px;
  height: fit-content;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.account-nav a:hover,
.account-nav a.active {
  background: var(--success-bg);
  color: var(--accent);
}
.account-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-top: 100px;
  padding-bottom: 80px;
}
.blog-grid { display: flex; flex-direction: column; gap: 32px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { border-color: rgba(16,185,129,0.2); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-tertiary);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}
.blog-category-tag { color: var(--accent); font-weight: 700; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-family: var(--font-body); font-weight: 700; }
.blog-card h3 a { color: var(--text-primary); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-excerpt { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.page-numbers:hover, .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.woocommerce-message { background: var(--success-bg); border: 1px solid rgba(16,185,129,0.25); color: var(--accent); }
.woocommerce-error { background: var(--danger-bg); border: 1px solid rgba(239,68,68,0.25); color: var(--danger); }
.woocommerce-info { background: var(--info-bg); border: 1px solid rgba(59,130,246,0.25); color: var(--info); }

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.age-gate-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.age-gate h2 { font-size: 1.6rem; margin-bottom: 12px; }
.age-gate p { color: var(--text-secondary); margin-bottom: 32px; }
.age-gate-buttons { display: flex; gap: 12px; }
.age-gate-buttons button { flex: 1; }
.age-gate-disclaimer { margin-top: 20px; font-size: 12px; color: var(--text-tertiary); }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--accent-gradient) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  transition: var(--transition) !important;
  font-family: var(--font-body) !important;
  box-shadow: 0 4px 20px rgba(16,185,129,0.25) !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(16,185,129,0.35) !important;
}
.woocommerce-form__label { color: var(--text-secondary) !important; font-size: 13px !important; }
.woocommerce-form-login__rememberme { color: var(--text-secondary) !important; }
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="tel"],
.woocommerce textarea,
.woocommerce select {
  background: var(--bg-tertiary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius) !important;
  color: var(--text-primary) !important;
  padding: 12px 16px !important;
}
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce textarea:focus {
  border-color: var(--accent) !important;
  outline: none !important;
}
.woocommerce-page .woocommerce { margin-top: 100px; }

.star-rating span::before,
.woocommerce .star-rating span::before { color: var(--gold) !important; }

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); max-width: 480px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--text-tertiary); }
.page-hero .breadcrumb a:hover { color: var(--accent); }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(16,185,129,0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .hero-image { display: none; }
}

/* =============================
   UTILITY CLASSES
   ============================= */
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-accent { color: var(--accent); }
.text-sm { font-size: 13px; }
.text-base { font-size: 14px; }
.text-lg { font-size: 15px; }
.text-center { text-align: center; }
.text-decoration-none { text-decoration: none; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }
.p-40 { padding: 40px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.flex-row-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.flex-row-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.w-full { width: 100%; }

/* =============================
   COMPONENT CLASSES
   ============================= */
.card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); }
.card-sm { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); }
.card-padded { padding: 32px; }
.card-padded-sm { padding: 24px; }
.card-padded-lg { padding: 40px; }
.empty-state { text-align: center; padding: 80px 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state-title { margin-bottom: 12px; }
.empty-state-text { color: var(--text-secondary); margin-bottom: 24px; }
.page-content { padding-top: 60px; padding-bottom: 80px; }
.page-content-narrow { max-width: 900px; }
.prose { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.prose-sm { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.product-short-desc { margin-bottom: 24px; padding: 16px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 8px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.out-of-stock-notice { padding: 16px; background: rgba(158,158,158,0.06); border: 1px solid rgba(158,158,158,0.15); border-radius: 8px; text-align: center; color: var(--text-tertiary); font-weight: 600; margin-bottom: 24px; }
.review-item { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; padding: 24px; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 12px; flex-wrap: wrap; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: white; }
.review-author-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-tertiary); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.review-form-wrap { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; padding: 32px; max-width: 600px; }
.review-form-title { margin-bottom: 24px; font-size: 18px; }
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.delivery-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; padding: 20px; }
.delivery-card-icon { font-size: 28px; margin-bottom: 12px; }
.delivery-card-title { margin-bottom: 8px; font-size: 15px; font-family: var(--font-body); }
.delivery-card-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.delivery-card-price { font-weight: 700; color: var(--accent); }
.discreet-notice { background: var(--success-bg); border: 1px solid rgba(16,185,129,0.2); border-radius: 8px; padding: 16px; font-size: 14px; color: var(--text-secondary); }
.variation-wrapper { margin-bottom: 16px; }
.cart-empty-state { text-align: center; padding: 80px 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; }
.cart-actions-row { padding: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.cart-actions-left { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-input { width: 50px; }
.continue-shopping-link { font-size: 14px; color: var(--text-tertiary); }
.checkout-login-notice { text-align: center; padding: 40px; }
.checkout-login-notice h3 { border: none; padding: 0; }
.checkout-login-notice p { color: var(--text-secondary); margin-bottom: 20px; }
.order-review-sticky { position: sticky; top: 90px; }
.thankyou-confirmation { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 40px; text-align: center; margin-bottom: 32px; }
.thankyou-icon { font-size: 64px; margin-bottom: 16px; }
.thankyou-title { margin-bottom: 12px; }
.thankyou-text { color: var(--text-secondary); margin-bottom: 8px; }
.thankyou-meta { color: var(--text-tertiary); font-size: 14px; }
.thankyou-order-details-box { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; margin-bottom: 32px; }
.thankyou-order-details-box h3 { margin-bottom: 20px; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.shop-sidebar-link { font-size: 14px; text-decoration: none; }
.shop-no-results { text-align: center; padding: 80px 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; }
.shop-no-results-icon { font-size: 48px; margin-bottom: 16px; }
.shop-no-results-title { margin-bottom: 12px; }
.shop-no-results-text { color: var(--text-secondary); margin-bottom: 24px; }
.category-desc-box { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 40px; margin-top: 40px; }
.search-results-header { padding-top: 60px; padding-bottom: 80px; max-width: 900px; }
.search-no-results { text-align: center; padding: 80px 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; }
.filter-btn-full { width: 100%; margin-top: 12px; }
.filter-item.active { background: var(--success-bg); border-radius: 6px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-post-image { border-radius: 16px; overflow: hidden; margin-bottom: 40px; border: 1px solid var(--border-light); }
.blog-post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.blog-post-meta-item { color: var(--text-tertiary); font-size: 14px; }
.blog-post-content { font-size: 16px; color: var(--text-secondary); line-height: 1.9; }
.blog-post-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-light); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.blog-post-tags-label { font-size: 13px; color: var(--text-tertiary); font-weight: 600; }
.blog-sidebar-sticky { position: sticky; top: 90px; }
.blog-sidebar-card { background: linear-gradient(135deg, rgba(16,185,129,0.08), transparent); border-color: rgba(16,185,129,0.15); text-align: center; }
.blog-sidebar-card-icon { font-size: 32px; margin-bottom: 12px; }
.blog-sidebar-card-title { margin-bottom: 8px; }
.blog-sidebar-card-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.blog-sidebar-card-btn { width: 100%; justify-content: center; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-404-code { font-size: 8rem; line-height: 1; margin-bottom: 24px; opacity: 0.2; }
.error-404-title { font-size: 6rem; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.error-404-text { margin-bottom: 16px; }
.error-404-desc { color: var(--text-secondary); max-width: 400px; margin: 0 auto 32px; }
.error-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.product-card-link { color: inherit; text-decoration: none; }
.comments-title { font-size: 1.3rem; margin-bottom: 24px; margin-top: 40px; }
.comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.address-card { background: var(--bg-tertiary); border: 1px solid var(--border-light); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.address-card-title { margin-bottom: 12px; font-size: 14px; }
.address-text { font-style: normal; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.section-alt { background: var(--bg-secondary); border-top: 1px solid var(--border-light); }
.overflow-auto { overflow-x: auto; }
.reviews-list { max-width: 700px; display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.content-max { max-width: 700px; }
.address-box { font-style: normal; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.search-bar { display: none; border-top: 1px solid var(--border-light); padding: 16px 0; background: var(--bg-secondary); }
.dashboard-link-card { display: block; background: var(--bg-tertiary); border: 1px solid var(--border-light); border-radius: 12px; padding: 20px; text-align: center; text-decoration: none; transition: var(--transition); }
.dashboard-link-card:hover { border-color: var(--accent); }
.dashboard-link-icon { font-size: 28px; margin-bottom: 8px; }
.dashboard-link-title { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.dashboard-link-desc { font-size: 12px; color: var(--text-tertiary); }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 32px; }
.search-bar-form { display: flex; gap: 12px; }
.search-bar-input { flex: 1; background: var(--bg-tertiary); border: 1px solid var(--border-light); border-radius: 10px; padding: 12px 20px; color: #fff; font-size: 15px; }
.tab-content-area { max-width: 800px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.tab-content-area { max-width: 800px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.strain-highlight-text { font-size: 14px; color: var(--text-secondary); }
.save-amount { font-size: 13px; color: var(--accent); margin-top: 4px; }
.rating-link { font-size: 13px; color: var(--accent); margin-left: 8px; }
.sku-value { font-size: 1rem; }
.product-thc-cbd-meta { margin-bottom: 10px; }
.product-card-subtitle { font-size: 13px; color: var(--text-tertiary); margin-bottom: 8px; line-height: 1.4; }
.out-of-stock-label { font-size: 12px; color: var(--text-tertiary); font-weight: 600; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .product-guarantees { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .age-gate-buttons { flex-direction: column; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .quantity-add-wrap { flex-direction: column; }
  .add-to-cart-btn { width: 100%; }
  .section { padding: 60px 0; }
}
