/* ==================== RESET & VARIABLES ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #1a1a1a;
  --bg-input: #1e1e1e;
  --text: #ffffff;
  --text-dim: #999999;
  --text-muted: #666666;
  --accent: #2e7d32;
  --accent-hover: #43a047;
  --accent-dark: #1b5e20;
  --accent-glow: rgba(46, 125, 50, 0.3);
  --gold: #d4a853;
  --green: #2ecc71;
  --border: #222222;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-script: 'Kaushan Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ==================== LOADER ==================== */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: radial-gradient(ellipse at center, #0f1a0f 0%, #0a0a0a 70%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; display: flex; flex-direction: column; align-items: center; }

.loader-logo-wrap {
  position: relative;
  margin-bottom: 32px;
}
.loader-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlow 2.5s ease-in-out infinite;
  z-index: -1;
}
.loader-logo {
  width: 320px;
  max-width: 75vw;
  filter: drop-shadow(0 0 24px rgba(46, 125, 50, 0.4)) drop-shadow(0 4px 24px rgba(0,0,0,0.6));
  animation: logoFloat 2.5s ease-in-out infinite;
}

.loader-bar {
  width: 240px; max-width: 60vw;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1b5e20, #4caf50, #81c784);
  border-radius: 3px;
  animation: loadProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

.loader-tagline {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: tagFadeIn 1s 0.4s ease both;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes logoGlow {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes tagFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ==================== HEADER ==================== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
#header.scrolled { background: rgba(10, 10, 10, 0.95); }

.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.header-logo { height: 55px; width: auto; filter: drop-shadow(0 0 10px rgba(46, 125, 50, 0.35)); transition: filter var(--transition), transform var(--transition); }
.logo:hover .header-logo { filter: drop-shadow(0 0 16px rgba(46, 125, 50, 0.55)); transform: scale(1.03); }
@media (max-width: 768px) { .header-logo { height: 40px; } }

.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  position: relative; padding: 4px 0;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ==================== NAV DROPDOWN ==================== */
.nav-dd { position: relative; }
.nav-dd-btn {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  color: inherit; display: flex; align-items: center; gap: 5px; padding: 4px 0;
  transition: color var(--transition);
}
.nav-dd-icon { font-size: 9px; transition: transform 0.3s ease; }
.nav-dd:hover .nav-dd-btn { color: var(--accent); }
.nav-dd:hover .nav-dd-icon { transform: rotate(180deg); }

.nav-dd-panel {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 720px; padding-top: 12px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}
.nav-dd-panel > .nav-dd-inner {
  background: #111; border: 1px solid #1e1e1e;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 1px rgba(46,125,50,0.3);
}
.nav-dd:hover .nav-dd-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Top glow line */
.nav-dd-inner::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,125,50,0.6), transparent);
}
.nav-dd-inner { position: relative; }

.nav-dd-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 24px 28px 20px;
  gap: 0;
}
.nav-dd-section { padding: 0 16px; }
.nav-dd-section:first-child { padding-left: 0; }
.nav-dd-section:last-child { padding-right: 0; }
.nav-dd-section:not(:last-child) { border-right: 1px solid #1a1a1a; }

.nav-dd-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent);
  margin-bottom: 12px; padding-bottom: 8px;
}
.nav-dd-section a {
  display: block; padding: 6px 0; font-size: 13.5px;
  color: #888; transition: all 0.2s;
}
.nav-dd-section a:hover {
  color: #fff; padding-left: 6px;
}

.nav-dd-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; background: #0d0d0d; border-top: 1px solid #1a1a1a;
}
.nav-dd-footer-link {
  font-size: 13px; font-weight: 600; color: var(--accent) !important;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.nav-dd-footer-link:hover { gap: 12px; }
.nav-dd-footer-link i { font-size: 12px; }
.nav-dd-guarantee {
  font-size: 12px; color: #555; display: flex; align-items: center; gap: 6px;
}
.nav-dd-guarantee i { color: var(--accent); font-size: 11px; }

/* Mobile nav labels */
.mobile-nav-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--accent); padding: 16px 0 4px;
  border-top: 1px solid var(--border); margin-top: 4px;
}

@media (max-width: 900px) {
  .nav-dd { display: none; }
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.search-toggle, .cart-btn { font-size: 18px; padding: 8px; transition: color var(--transition); position: relative; }
.search-toggle:hover, .cart-btn:hover { color: var(--accent); }
.cart-count {
  position: absolute; top: 0; right: -4px;
  background: var(--accent); color: white; font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: white; transition: var(--transition); }

.search-bar {
  max-width: 1400px; margin: 0 auto; padding: 0 32px 16px;
  display: none; gap: 8px;
}
.search-bar.active { display: flex; }
.search-bar input {
  flex: 1; background: var(--bg-input); border: 1px solid var(--border);
  color: white; padding: 12px 20px; border-radius: 50px;
  font-size: 15px; outline: none;
  transition: border-color var(--transition);
}
.search-bar input:focus { border-color: var(--accent); }
.search-bar button {
  background: var(--accent); color: white; width: 48px; height: 48px;
  border-radius: 50%; font-size: 16px;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--accent-hover); }

/* ==================== MOBILE NAV ==================== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-inner { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-nav-inner a {
  font-family: var(--font-heading); font-size: 28px; font-weight: 700;
  transition: color var(--transition);
}
.mobile-nav-inner a:hover { color: var(--accent); }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--accent); border-radius: 50%;
  opacity: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46, 125, 50, 0.1); border: 1px solid rgba(46, 125, 50, 0.3);
  padding: 6px 16px; border-radius: 50px; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
  color: var(--accent); margin-bottom: 24px;
}
.hero-badge i { font-size: 8px; }
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; line-height: 1.05; margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .script {
  font-family: var(--font-script); font-weight: 400;
  display: block; font-size: 0.5em; color: var(--accent);
}
.hero-desc {
  font-size: 18px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: none; }
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0.8; } }

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px; font-size: 14px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent); color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 30px rgba(46, 125, 50, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.2); color: white;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-icon { width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 32px;
  max-width: 1400px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-tag {
  font-family: var(--font-script); color: var(--accent);
  font-size: 20px; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(28px, 3vw, 44px);
  font-weight: 900; margin-bottom: 16px;
}
.section-desc { color: var(--text-dim); font-size: 17px; max-width: 500px; margin: 0 auto; }

/* ==================== CATEGORIES ==================== */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.category-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px 24px; text-align: center;
  cursor: pointer; transition: all var(--transition);
}
.category-card:hover {
  border-color: var(--accent); transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.category-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: rgba(46, 125, 50, 0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  transition: all var(--transition);
}
.category-card:hover .category-icon {
  background: var(--accent); color: white;
  transform: scale(1.1);
}
.category-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 6px; }
.category-card p { font-size: 13px; color: var(--text-muted); }

/* ==================== PRODUCT GRID ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
  position: relative;
}
.product-card:hover {
  border-color: rgba(46, 125, 50, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.product-image {
  position: relative; padding-top: 100%;
  background: var(--bg-elevated); overflow: hidden;
}
.product-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--text-muted);
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.badge {
  padding: 4px 12px; border-radius: 50px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-sale { background: var(--accent); color: white; }
.badge-new { background: var(--gold); color: black; }
.badge-soldout { background: rgba(0,0,0,0.7); color: var(--text-dim); }

.product-quick-add {
  position: absolute; bottom: 12px; right: 12px;
  opacity: 0; transform: translateY(8px);
  transition: all var(--transition);
}
.product-card:hover .product-quick-add { opacity: 1; transform: translateY(0); }

.product-info { padding: 20px; }
.product-category {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); font-weight: 600; margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  margin-bottom: 2px; line-height: 1.3;
}
.product-sci-name {
  font-size: 12px; color: var(--text-muted); margin-bottom: 4px;
}
.product-meta {
  font-size: 12px; color: var(--text-muted); margin-bottom: 12px;
}
.product-meta span { margin-right: 12px; }
.product-pricing { display: flex; align-items: center; gap: 10px; }
.product-price { font-size: 22px; font-weight: 700; color: var(--accent); }
.product-compare {
  font-size: 15px; color: var(--text-muted);
  text-decoration: line-through;
}

/* ==================== PRODUCT DETAIL ==================== */
.product-detail {
  padding: 120px 32px 80px;
  max-width: 1200px; margin: 0 auto;
}
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.detail-image {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
}
.detail-image-placeholder {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--text-muted);
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.detail-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.detail-info { padding-top: 20px; }
.detail-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
}
.detail-breadcrumb a { transition: color var(--transition); }
.detail-breadcrumb a:hover { color: var(--accent); }
.detail-title {
  font-family: var(--font-heading); font-size: 36px; font-weight: 900;
  margin-bottom: 4px; line-height: 1.2;
}
.detail-sci-name {
  font-size: 16px; color: var(--text-muted); margin-bottom: 16px;
}
.detail-price {
  font-size: 32px; font-weight: 700; color: var(--accent);
  margin-bottom: 24px; display: flex; align-items: center; gap: 16px;
}
.detail-compare { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.detail-save {
  background: rgba(46, 125, 50, 0.1); color: var(--accent);
  padding: 4px 12px; border-radius: 50px; font-size: 14px; font-weight: 600;
}
.detail-desc {
  color: var(--text-dim); font-size: 16px; line-height: 1.8;
  margin-bottom: 32px;
}
.detail-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 32px;
}
.spec {
  background: var(--bg-elevated); padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.spec-value { font-weight: 600; margin-top: 2px; }

.detail-stock {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px; font-size: 14px;
}
.stock-dot { width: 8px; height: 8px; border-radius: 50%; }
.stock-dot.in-stock { background: var(--green); }
.stock-dot.low-stock { background: var(--gold); }
.stock-dot.out-stock { background: var(--accent); }

.qty-selector {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:first-child { border-radius: 8px 0 0 8px; }
.qty-btn:last-child { border-radius: 0 8px 8px 0; }
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-value {
  width: 60px; height: 44px;
  background: var(--bg-input); border: 1px solid var(--border); border-left: 0; border-right: 0;
  color: white; text-align: center; font-size: 16px; font-weight: 600;
}

.detail-actions { display: flex; gap: 12px; margin-bottom: 40px; }
.detail-actions .btn { flex: 1; justify-content: center; }

.detail-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.feature { text-align: center; padding: 16px; }
.feature i { font-size: 24px; color: var(--accent); margin-bottom: 8px; }
.feature span { display: block; font-size: 12px; color: var(--text-dim); }

/* ==================== SHOP PAGE ==================== */
.shop-hero {
  padding: 140px 32px 60px;
  text-align: center; position: relative;
  background: linear-gradient(180deg, rgba(46,125,50,0.05) 0%, transparent 100%);
}
.shop-hero h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 900; margin-bottom: 8px; }
.shop-hero p { color: var(--text-dim); font-size: 17px; margin-bottom: 24px; }
.shop-search {
  max-width: 560px; margin: 0 auto;
  position: relative; display: flex; align-items: center;
}
.shop-search i.fa-search {
  position: absolute; left: 18px; color: var(--text-muted); font-size: 16px; pointer-events: none;
}
.shop-search input {
  width: 100%; padding: 14px 48px 14px 48px;
  background: var(--bg-input); border: 1px solid var(--border); border-radius: 50px;
  color: var(--text); font-size: 15px; font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.shop-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
  outline: none;
}
.shop-search input::placeholder { color: var(--text-muted); }
.shop-search-clear {
  position: absolute; right: 14px; background: none; border: none;
  color: var(--text-muted); font-size: 14px; cursor: pointer; padding: 8px;
}
.shop-search-clear:hover { color: var(--text); }

.shop-filters {
  max-width: 1400px; margin: 0 auto; padding: 0 32px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; border-radius: 50px; font-size: 13px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--accent); border-color: var(--accent); color: white;
}
.sort-select {
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: white; padding: 8px 16px; border-radius: 8px;
  font-size: 13px; outline: none; cursor: pointer;
}

.shop-content {
  max-width: 1400px; margin: 0 auto; padding: 0 32px 80px;
}

/* ==================== CART ==================== */
.cart-page {
  padding: 120px 32px 80px;
  max-width: 1000px; margin: 0 auto;
}
.cart-page h1 { font-family: var(--font-heading); font-size: 36px; margin-bottom: 40px; }

.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; transition: all var(--transition);
}
.cart-item:hover { border-color: rgba(46,125,50,0.2); }
.cart-item-img {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--text-muted);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 4px; }
.cart-item-info p { font-size: 13px; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.cart-item-qty button {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: white; transition: all var(--transition);
}
.cart-item-qty button:hover { border-color: var(--accent); color: var(--accent); }
.cart-item-price { font-size: 18px; font-weight: 700; color: var(--accent); min-width: 80px; text-align: right; }
.cart-remove {
  color: var(--text-muted); font-size: 18px; padding: 8px;
  transition: color var(--transition);
}
.cart-remove:hover { color: var(--accent); }

.cart-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-top: 32px;
}
.cart-summary-row {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: 16px;
}
.cart-summary-row:last-child { border: none; font-size: 22px; font-weight: 700; }
.cart-summary-row:last-child span:last-child { color: var(--accent); }
.cart-empty {
  text-align: center; padding: 80px 20px;
  color: var(--text-dim);
}
.cart-empty i { font-size: 64px; color: var(--text-muted); margin-bottom: 24px; }
.cart-empty h2 { font-family: var(--font-heading); margin-bottom: 12px; }

/* ==================== CHECKOUT ==================== */
.checkout-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 32px;
}
.checkout-form .full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); }
.form-group input, .form-group select {
  background: var(--bg-input); border: 1px solid var(--border);
  color: white; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 15px; outline: none; transition: border-color var(--transition);
}
.form-group input:focus { border-color: var(--accent); }

/* ==================== CONTACT ==================== */
.contact-page {
  padding: 140px 32px 80px;
  max-width: 800px; margin: 0 auto;
}
.contact-page h1 { font-family: var(--font-heading); font-size: 48px; text-align: center; margin-bottom: 16px; }
.contact-page > p { text-align: center; color: var(--text-dim); margin-bottom: 48px; font-size: 17px; }
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.contact-info-card {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition);
}
.contact-info-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-info-card i { font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.contact-info-card h3 { font-size: 14px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-dim); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form textarea {
  background: var(--bg-input); border: 1px solid var(--border);
  color: white; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; outline: none;
  resize: vertical; min-height: 150px; transition: border-color var(--transition);
}
.contact-form textarea:focus { border-color: var(--accent); }

/* ==================== MARQUEE ==================== */
.marquee {
  overflow: hidden; background: var(--accent); padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.marquee-item i { font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==================== FEATURED BANNER ==================== */
.featured-banner {
  padding: 0 32px; max-width: 1400px; margin: 0 auto;
}
.banner-inner {
  background: linear-gradient(135deg, #1a0505 0%, #0a0a0a 50%, #1a0505 100%);
  border: 1px solid rgba(46, 125, 50, 0.2); border-radius: 20px;
  padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; position: relative; overflow: hidden;
}
.banner-glow {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  right: -50px; top: -50px; filter: blur(80px);
}
.banner-text { position: relative; z-index: 2; }
.banner-text h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.banner-text p { color: var(--text-dim); margin-bottom: 32px; font-size: 17px; }

/* ==================== ORDER CONFIRMATION ==================== */
.order-confirm {
  text-align: center; padding: 160px 32px 80px;
  max-width: 600px; margin: 0 auto;
}
.order-confirm .check-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(46, 204, 113, 0.1); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 36px; color: var(--green);
}
.order-confirm h1 { font-family: var(--font-heading); margin-bottom: 16px; }
.order-confirm .order-num {
  font-size: 24px; font-weight: 700; color: var(--accent); margin-bottom: 16px;
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--bg-elevated); border: 1px solid var(--accent);
  color: white; padding: 16px 24px; border-radius: var(--radius);
  font-weight: 600; transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ==================== FOOTER ==================== */
#footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 80px 32px 32px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
}
.footer-logo {
  font-family: var(--font-heading); font-size: 24px; font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 70px; width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(46, 125, 50, 0.25));
}
.footer-col p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px; color: var(--accent);
}
.footer-col a {
  display: block; color: var(--text-dim); font-size: 14px;
  padding: 4px 0; transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.newsletter { margin-top: 16px; }
.newsletter-form {
  display: flex; gap: 8px; margin-top: 8px;
}
.newsletter-form input {
  flex: 1; background: var(--bg-input); border: 1px solid var(--border);
  color: white; padding: 10px 16px; border-radius: 8px;
  font-size: 14px; outline: none;
}
.newsletter-form button {
  background: var(--accent); color: white; padding: 10px 16px;
  border-radius: 8px; transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent-hover); }
.footer-bottom {
  max-width: 1400px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; color: var(--text-muted); font-size: 13px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banner-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; padding: 140px 20px 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section { padding: 60px 20px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .cart-item { grid-template-columns: 60px 1fr auto; gap: 12px; }
  .cart-item-qty { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .detail-specs { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; gap: 8px; }
  .checkout-form { grid-template-columns: 1fr; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .shop-filters { flex-direction: column; align-items: stretch; }
  .header-inner { padding: 14px 20px; }
  .banner-inner { padding: 40px 24px; }
  .seo-content { padding: 40px 20px; }
}

/* SEO Content Section */
.seo-content {
  max-width: 900px;
  margin: 80px auto 40px;
  padding: 60px 40px;
  background: var(--bg-card, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 16px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
}
.seo-content h1, .seo-content h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent, #2e7d32);
}
.seo-content h1:first-child, .seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
  color: #fff;
  font-size: 20px;
  margin: 32px 0 12px;
}
.seo-content h4 {
  color: #ddd;
  font-size: 17px;
  margin: 24px 0 8px;
}
.seo-content p { margin: 0 0 16px; }
.seo-content a { color: var(--accent, #2e7d32); text-decoration: underline; }
.seo-content a:hover { color: #ff4444; }
.seo-content ul, .seo-content ol {
  margin: 0 0 16px 24px;
  color: #bbb;
}
.seo-content li { margin-bottom: 6px; }
.seo-content strong { color: #fff; }
.seo-content em { color: #aaa; }
.seo-content blockquote {
  border-left: 3px solid var(--accent, #2e7d32);
  padding: 12px 20px;
  margin: 16px 0;
  background: rgba(46,125,50,0.05);
  border-radius: 0 8px 8px 0;
}
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.seo-content th, .seo-content td {
  padding: 10px 14px;
  border: 1px solid #333;
  text-align: left;
}
.seo-content th { background: #222; color: #fff; font-weight: 600; }

/* Product SEO Content Tabs */
.product-seo-content {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.seo-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.seo-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.seo-tab:hover { color: var(--text); }
.seo-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.seo-tab-content {
  max-width: 900px;
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 15px;
}
.seo-tab-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text);
  margin: 0 0 16px;
}
.seo-tab-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}
.seo-tab-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 8px;
}
.seo-tab-content p { margin: 0 0 16px; }
.seo-tab-content ul, .seo-tab-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.seo-tab-content li { margin-bottom: 6px; }
.seo-tab-content strong { color: var(--text); }
.seo-tab-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}
.seo-tab-content th, .seo-tab-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}
.seo-tab-content th { background: var(--bg-elevated); color: var(--text); font-weight: 600; }
.seo-tab-content .care-tip {
  background: rgba(46, 125, 50, 0.08);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 16px 0 24px;
  border-radius: 0 8px 8px 0;
}
.seo-tab-content .warning-tip {
  background: rgba(241, 196, 15, 0.08);
  border-left: 3px solid #f1c40f;
  padding: 16px 20px;
  margin: 16px 0 24px;
  border-radius: 0 8px 8px 0;
}
.seo-section { display: none; }
.seo-section[data-section="overview"] { display: block; }

/* Product Blog Content */
.product-blog-content {
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 900px; color: var(--text-dim);
  line-height: 1.9; font-size: 15px;
}
.product-blog-content h2 {
  font-family: var(--font-heading); font-size: 30px;
  color: var(--text); margin: 48px 0 16px; line-height: 1.3;
}
.product-blog-content h2:first-child { margin-top: 0; }
.product-blog-content h3 {
  font-size: 22px; font-weight: 700; color: var(--text); margin: 36px 0 12px;
}
.product-blog-content p { margin: 0 0 18px; }
.product-blog-content a { color: var(--accent); text-decoration: underline; }
.product-blog-content a:hover { color: var(--accent-hover); }
.product-blog-content ul, .product-blog-content ol {
  margin: 0 0 18px; padding-left: 24px;
}
.product-blog-content li { margin-bottom: 8px; }
.product-blog-content strong { color: var(--text); }
.product-blog-content blockquote {
  border-left: 3px solid var(--accent); padding: 16px 20px;
  margin: 20px 0; background: rgba(46,125,50,0.05); border-radius: 0 8px 8px 0;
  font-style: italic;
}
.product-blog-content .blog-cta {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px; margin: 32px 0;
  text-align: center;
}
.product-blog-content .blog-cta h3 { margin: 0 0 8px; font-size: 20px; }
.product-blog-content .blog-cta p { margin: 0 0 16px; }
@media (max-width: 768px) {
  .seo-tabs { gap: 0; }
  .seo-tab { padding: 10px 14px; font-size: 12px; }
}

/* Policy & Blog Pages */
.policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}
.policy-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #2e7d32);
}
.blog-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46,125,50,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent, #2e7d32);
  margin-bottom: 16px;
}
.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-link {
  color: var(--accent, #2e7d32);
  font-size: 14px;
  font-weight: 600;
}
.blog-link i { margin-left: 4px; transition: transform 0.2s; }
.blog-card:hover .blog-link i { transform: translateX(4px); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .policy-page { padding: 100px 16px 40px; }
  .policy-page h1 { font-size: 32px; }
}
