/* ============================================
   SHARK SOLUTIONS - Premium Peptide Store
   Warm, editorial, medical-premium aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --bg: #f5f0ea;
  --bg-light: #faf7f3;
  --bg-card: #ffffff;
  --bg-elevated: #fbf8f4;

  --text: #1a1a1a;
  --text-secondary: #5c5c5c;
  --text-muted: #999999;
  --text-light: #b5b0a8;

  --green: #2d6b4a;
  --green-bright: #10b981;
  --green-light: #e8f5ee;
  --green-glow: 0 0 6px rgba(16, 185, 129, 0.5), 0 0 16px rgba(16, 185, 129, 0.2);

  --red: #c0392b;
  --red-light: #fdf0ef;
  --amber: #d4a017;

  --border: #e8e3dc;
  --border-light: #efe9e1;

  --dark: #1a1a1a;
  --dark-hover: #333333;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --nav-height: 116px; /* 36px currency bar + 80px navbar */

  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
}

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

/* ============ AGE GATE ============ */
.age-gate-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(24px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.age-gate-overlay.hidden { opacity: 0; pointer-events: none; display: none !important; }
html.age-verified .age-gate-overlay { display: none !important; }

.age-gate-box {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  max-width: 440px; width: 90%;
  text-align: center;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.age-gate-logo {
  font-family: var(--sans);
  font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text); margin-bottom: 32px;
}

.age-gate-box h2 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600;
  margin-bottom: 12px;
}

.age-gate-box > p {
  color: var(--text-secondary); font-size: 14px;
  margin-bottom: 32px; line-height: 1.7;
}

.age-gate-buttons { display: flex; gap: 10px; }

.age-gate-buttons button {
  flex: 1; padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 14px;
  transition: all var(--transition);
}

.age-btn-yes {
  background: var(--dark); color: white;
}
.age-btn-yes:hover { background: var(--dark-hover); }

.age-btn-no {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.age-btn-no:hover { border-color: var(--text-muted); }

.age-gate-disclaimer {
  margin-top: 20px; font-size: 11px;
  color: var(--text-muted); line-height: 1.5;
}

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0;
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}
.navbar.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.04); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 70px; width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.nav-cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  background: none; color: var(--text);
  font-size: 13px; font-weight: 500;
  padding: 8px 0;
}
.nav-cart-btn:hover { color: var(--text-secondary); }

.cart-count {
  position: absolute; top: -4px; right: -14px;
  background: var(--green); color: white;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}

.nav-mobile-toggle { display: none; background: none; padding: 6px; color: var(--text); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  padding: 16px 32px; z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; font-size: 14px;
  color: var(--text-secondary); border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============ MARQUEE TICKER ============ */
.marquee-bar {
  background: var(--dark);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-top: var(--nav-height);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0 40px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ HERO ============ */
.hero {
  padding: calc(var(--nav-height) + 48px) 32px 80px;
  text-align: center;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 500; font-size: 14px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--dark); color: white; border-color: var(--dark);
}
.btn-primary:hover { background: var(--dark-hover); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text); }

.btn-accent {
  background: var(--green); color: white;
}
.btn-accent:hover { background: #245a3d; }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 15px; }

/* ============ PURITY SECTION ============ */
.purity-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 32px;
}

.purity-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 40px;
}

.purity-heading span {
  color: var(--text-muted);
}

.purity-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.purity-sublabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.purity-bar {
  height: 40px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.purity-bar.dark { background: var(--green); }
.purity-bar.medium { background: #34a853; }
.purity-bar.light { background: #5ec77a; }

/* ============ AUSTRALIAN BRAND ============ */
.aus-brand-section {
  padding: 80px 32px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.aus-brand-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.aus-brand-text .section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.aus-brand-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.aus-brand-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aus-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.aus-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.aus-point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.aus-point span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============ SECTIONS ============ */
.section { padding: 80px 32px; }

.section-header {
  margin-bottom: 48px;
}
.section-header.center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px; display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border-light);
}

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

.product-card-image {
  height: 240px;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  object-fit: contain !important;
  padding: 20px 12px 8px !important;
}

.product-card-image .placeholder-icon { color: var(--text-light); opacity: 0.3; }

.product-card-badge {
  position: absolute; top: 8px; right: 8px;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3px;
}

.badge-bestseller, .badge-popular, .badge-highdemand, .badge-premium {
  background: var(--dark); color: white;
}
.badge-essential { background: var(--green); color: white; }
.badge-restocking { background: var(--text-muted); color: white; }

.product-card-stock {
  position: absolute; top: 8px; left: 8px;
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.3px; text-transform: uppercase;
}

.stock-dot {
  width: 5px; height: 5px; border-radius: 50%;
}
.stock-dot.in-stock {
  background: var(--green-bright);
  box-shadow: var(--green-glow);
  animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 10px rgba(16,185,129,0.6), 0 0 20px rgba(16,185,129,0.15); }
}

.stock-dot.out-of-stock { background: var(--text-muted); }
.stock-dot.low-stock { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.4); }

.product-card-body { padding: 18px 20px 20px; }

.product-card-category { display: none; }

.product-card-name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}

.product-card-weight {
  font-size: 12px; color: var(--text-muted);
}

.product-card-desc { display: none; }

.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px; padding-top: 0; border-top: none;
}

.product-card-price {
  font-size: 20px; font-weight: 700; color: var(--text);
  font-family: var(--sans);
}
.product-card-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.product-card-purity { display: none; }

.add-to-cart-btn {
  width: 100%; margin-top: 14px;
  padding: 12px 20px;
  background: var(--dark); color: white;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.add-to-cart-btn:hover { background: var(--dark-hover); }
.add-to-cart-btn:disabled {
  background: var(--border); color: var(--text-muted);
  cursor: not-allowed;
}
.add-to-cart-btn svg { display: none; }

/* Stock info row */
.product-card-stock-row {
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}

.product-card-stock-row .stock-indicator {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
}

.product-card-stock-row .stock-indicator.in-stock { color: var(--green-bright); }
.product-card-stock-row .stock-indicator.out-of-stock { color: var(--text-muted); }
.product-card-stock-row .stock-indicator.low-stock { color: #ef4444; }

/* ============ DISCOUNT BANNER ============ */
.discount-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 32px;
  text-align: center;
}

.discount-banner h3 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500;
  margin-bottom: 8px; color: var(--text);
}
.discount-banner > .container > p {
  color: var(--text-muted); font-size: 14px;
  margin-bottom: 36px;
}

.discount-tiers {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

.discount-tier {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  min-width: 180px;
  transition: all var(--transition);
}
.discount-tier:hover { border-color: var(--text-muted); }

.discount-tier .tier-qty {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.discount-tier .tier-discount {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600; color: var(--text);
}
.discount-tier .tier-label {
  font-size: 11px; color: var(--text-light); margin-top: 4px;
}

.free-ship-note {
  margin-top: 28px; font-size: 13px; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ============ COA SECTION ============ */
.coa-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.coa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px; margin-top: 28px;
}

.coa-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.coa-item:hover { border-color: var(--green); }

.coa-item-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}

.coa-item-info h4 { font-size: 13px; font-weight: 600; }
.coa-item-info p { font-size: 11px; color: var(--text-muted); }
.coa-item-purity { margin-left: auto; font-size: 13px; font-weight: 700; color: var(--green); }

.coa-item.has-coa-image .coa-item-icon {
  width: 44px; height: 44px; overflow: hidden;
  background: none; border: 1px solid var(--border-light);
}
.coa-item.has-coa-image:hover { border-color: var(--green); background: var(--green-light); }
.coa-item.has-coa-image .coa-item-purity::after {
  content: ' ›'; font-size: 14px;
}

/* Product detail COA card */
.detail-coa-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; margin-top: 20px;
  background: var(--green-light);
  border: 2px solid rgba(45,107,74,0.2);
  border-radius: var(--radius-md);
  cursor: pointer; transition: all var(--transition);
}
.detail-coa-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(45,107,74,0.15);
}
.detail-coa-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.detail-coa-info { flex: 1; }
.detail-coa-title {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 2px;
}
.detail-coa-desc {
  font-size: 12px; color: var(--text-secondary);
}
.detail-coa-action {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--green);
  flex-shrink: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-sm); }

.testimonial-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}

.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: var(--text-secondary);
}

.testimonial-name { font-weight: 600; font-size: 13px; }
.testimonial-location { font-size: 11px; color: var(--text-muted); }

.testimonial-verified {
  font-size: 10px; color: var(--green);
  font-weight: 600;
  display: flex; align-items: center; gap: 3px;
}

.testimonial-stars { display: flex; gap: 1px; margin-bottom: 10px; }
.testimonial-stars svg { color: var(--amber); width: 14px; height: 14px; }

.testimonial-text {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7; font-style: italic;
}

.testimonial-date { margin-top: 12px; font-size: 11px; color: var(--text-light); }

.testimonial-age { font-size: 11px; color: var(--text-muted); }

.testimonial-image {
  width: 100%; border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
  max-height: 240px; cursor: pointer;
}
.testimonial-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.testimonial-image:hover img { transform: scale(1.03); }

/* Review lightbox */
.review-lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.review-lightbox.open { opacity: 1; visibility: visible; }
.review-lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.review-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.15); border: none;
  color: white; width: 40px; height: 40px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  transition: background 0.2s;
}
.review-lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* Review summary bar */
.reviews-summary {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding: 16px 20px;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.reviews-summary-rating {
  font-family: var(--serif); font-size: 36px; font-weight: 500;
  color: var(--text); line-height: 1;
}
.reviews-summary-stars { display: flex; gap: 2px; color: var(--amber); }
.reviews-summary-count { font-size: 13px; color: var(--text-muted); }

/* Photo reviews strip (for product page) */
.review-photos-strip {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 8px; margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.review-photos-strip::-webkit-scrollbar { display: none; }
.review-photo-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s;
}
.review-photo-thumb:hover { border-color: var(--green); }
.review-photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Product page reviews section */
.product-reviews-section {
  max-width: 960px; margin: 0 auto;
  padding: 48px 24px 24px;
}
.product-reviews-section .section-header { margin-bottom: 24px; }
.product-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* Show more reviews button */
.reviews-show-more {
  display: block; width: 100%; max-width: 320px;
  margin: 24px auto 0; padding: 12px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px;
  font-weight: 500; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition);
  text-align: center;
}
.reviews-show-more:hover { border-color: var(--text); color: var(--text); }

/* Reviews page */
.reviews-page-container {
  max-width: 960px; margin: 0 auto; padding: 24px;
}

.reviews-filter-bar {
  display: flex; gap: 8px; margin-bottom: 24px;
  flex-wrap: wrap;
}

.reviews-filter-btn {
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text-secondary);
  font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}

.reviews-filter-btn:hover { border-color: var(--text); color: var(--text); }

.reviews-filter-btn.active {
  background: var(--text); color: var(--bg-card);
  border-color: var(--text);
}

/* ============ RESULTS SLIDER ============ */
.results-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.results-slider-container {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 800px; margin: 0 auto;
  border: 1px solid var(--border);
}

.results-slider { display: flex; transition: transform 0.5s ease; }

.result-slide {
  min-width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
}

.result-before, .result-after {
  height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.result-before { background: var(--bg); }
.result-after { background: var(--green-light); }

.result-label {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.result-before .result-label { background: white; color: var(--text-secondary); }
.result-after .result-label { background: var(--green); color: white; }
.result-before, .result-after { position: relative; }

.result-placeholder { color: var(--text-muted); font-size: 13px; }

.results-nav {
  display: flex; justify-content: center; gap: 10px; margin-top: 20px;
}
.results-nav button {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all var(--transition);
}
.results-nav button:hover { border-color: var(--text); color: var(--text); }

.results-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.results-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all var(--transition);
}
.results-dot.active { background: var(--text); width: 20px; border-radius: 3px; }

/* ============ REVIEW FORM ============ */
.review-form-section { background: var(--bg); }

.review-form-card {
  max-width: 560px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text); font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--text-muted); }

textarea.form-input { resize: vertical; min-height: 90px; }
select.form-input {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.star-rating-input { display: flex; gap: 2px; margin-bottom: 4px; }
.star-rating-input button {
  background: none; padding: 2px;
  color: var(--border); transition: color var(--transition);
}
.star-rating-input button.active,
.star-rating-input button:hover { color: var(--amber); }

.review-success { display: none; text-align: center; padding: 28px; }
.review-success.show { display: block; }
.review-success svg { color: var(--green); margin-bottom: 14px; }
.review-success h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500; margin-bottom: 8px;
}
.review-success p { color: var(--text-secondary); font-size: 13px; }

/* ============ FAQ SECTION ============ */
.faq-section {
  max-width: 650px; margin: 0 auto;
  padding: 80px 32px;
}

.faq-category {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.5px;
  margin-bottom: 4px; margin-top: 28px;
}
.faq-category:first-of-type { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%; padding: 18px 0;
  background: none; text-align: left;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question svg {
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 18px;
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ PRODUCT DETAIL ============ */
.product-detail {
  padding-top: calc(var(--nav-height) + 32px);
  min-height: 100vh;
}

.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width); margin: 0 auto; padding: 32px;
}

.product-detail-image {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  height: 500px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  position: sticky; top: calc(var(--nav-height) + 32px);
}

.product-detail-info { padding: 8px 0; }

.product-detail-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 20px;
}
.product-detail-breadcrumb a:hover { color: var(--text); }

.product-detail-stock {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; margin-bottom: 14px;
}
.stock-in { background: var(--green-light); color: var(--green); }
.stock-out { background: var(--red-light); color: var(--red); }
.stock-low { background: #fef2f2; color: #ef4444; }

.product-detail-name {
  font-family: var(--serif);
  font-size: 36px; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}

.product-detail-fullname {
  font-size: 14px; color: var(--text-muted); margin-bottom: 20px;
}

.product-detail-price {
  font-size: 32px; font-weight: 700; color: var(--text);
  font-family: var(--sans); margin-bottom: 4px;
}

.product-detail-weight-info {
  font-size: 13px; color: var(--text-secondary); margin-bottom: 24px;
}

.product-detail-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 28px;
}

.product-detail-quantity {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}

.qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-control button {
  width: 38px; height: 38px;
  background: var(--bg-light); color: var(--text);
  font-size: 16px; transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-control button:hover { background: var(--bg); }
.qty-control input {
  width: 44px; height: 38px; text-align: center;
  border: none;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  font-weight: 600; font-size: 14px;
  background: white; color: var(--text); outline: none;
}

.detail-add-btn {
  flex: 1; padding: 13px 28px;
  background: var(--dark); color: white;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.detail-add-btn:hover { background: var(--dark-hover); }
.detail-add-btn:disabled { background: var(--border); color: var(--text-muted); cursor: not-allowed; }

/* Product tabs */
.product-tabs { margin-top: 32px; }

.product-tabs-nav {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.product-tabs-nav button {
  padding: 12px 18px;
  background: none; color: var(--text-muted);
  font-weight: 500; font-size: 13px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.product-tabs-nav button:hover { color: var(--text); }
.product-tabs-nav button.active { color: var(--text); border-bottom-color: var(--text); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.benefit-list { list-style: none; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: 13px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

.info-table { width: 100%; }
.info-table tr { border-bottom: 1px solid var(--border-light); }
.info-table td { padding: 10px 0; font-size: 13px; }
.info-table td:first-child { font-weight: 600; width: 40%; }
.info-table td:last-child { color: var(--text-secondary); }

/* ============ CART PAGE ============ */
.cart-page { padding-top: calc(var(--nav-height) + 32px); min-height: 100vh; }

.cart-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px;
  max-width: var(--max-width); margin: 0 auto; padding: 32px;
}

.cart-items-section h2 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500;
  margin-bottom: 24px;
}

.cart-item {
  display: flex; gap: 16px; padding: 18px;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); margin-bottom: 10px;
  transition: all var(--transition);
}
.cart-item:hover { border-color: var(--border); }

.cart-item-image {
  width: 72px; height: 72px;
  background: var(--bg); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.cart-item-weight { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-controls { display: flex; align-items: center; gap: 12px; }

.cart-item-price { text-align: right; min-width: 70px; }
.cart-item-price .price { font-size: 16px; font-weight: 700; }
.cart-item-price .each { font-size: 11px; color: var(--text-muted); }

.cart-remove-btn {
  background: none; color: var(--text-muted); font-size: 12px;
  padding: 4px 8px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.cart-remove-btn:hover { color: var(--red); }

.cart-empty { text-align: center; padding: 64px 24px; }
.cart-empty svg { color: var(--text-light); margin-bottom: 16px; }
.cart-empty h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; margin-bottom: 8px;
}
.cart-empty p { color: var(--text-muted); margin-bottom: 20px; font-size: 13px; }

/* Cart summary */
.cart-summary { position: sticky; top: calc(var(--nav-height) + 32px); }

.cart-summary-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.cart-summary-card h3 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.summary-row {
  display: flex; justify-content: space-between;
  padding: 7px 0; font-size: 13px;
}
.summary-row .label { color: var(--text-secondary); }
.summary-row .value { font-weight: 600; }
.summary-row.discount .value { color: var(--green); }
.summary-row.shipping .value.free { color: var(--green); }
.summary-row.total {
  padding-top: 14px; margin-top: 8px;
  border-top: 1px solid var(--border); font-size: 16px;
}
.summary-row.total .value { font-size: 22px; font-weight: 700; }

.free-shipping-progress {
  margin: 14px 0; padding: 12px;
  background: var(--green-light); border-radius: var(--radius-sm);
  font-size: 12px; color: var(--green);
}
.free-shipping-bar {
  height: 3px; background: rgba(0,0,0,0.08);
  border-radius: 2px; margin-top: 8px; overflow: hidden;
}
.free-shipping-bar-fill {
  height: 100%; background: var(--green);
  border-radius: 2px; transition: width 0.5s ease;
}

.checkout-btn {
  width: 100%; padding: 14px;
  background: var(--dark); color: white;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 18px; transition: all var(--transition);
}
.checkout-btn:hover { background: var(--dark-hover); }

/* Cart upsells */
.cart-upsells { margin-top: 20px; }
.cart-upsells h4 { font-size: 13px; font-weight: 600; margin-bottom: 12px; }

.upsell-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); margin-bottom: 8px;
  transition: all var(--transition);
}
.upsell-item:hover { border-color: var(--border); }

.upsell-item-icon {
  width: 40px; height: 40px;
  background: var(--bg); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.upsell-item-info { flex: 1; }
.upsell-item-name { font-size: 12px; font-weight: 600; }
.upsell-item-price { font-size: 11px; color: var(--text-muted); }

.upsell-add-btn {
  padding: 6px 12px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  transition: all var(--transition);
}
.upsell-add-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }

/* ============ CHECKOUT ============ */
.checkout-page { padding-top: calc(var(--nav-height) + 32px); min-height: 100vh; }

.checkout-layout {
  display: grid; grid-template-columns: 1fr 400px; gap: 32px;
  max-width: var(--max-width); margin: 0 auto; padding: 32px;
}

.checkout-form-section h2 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500; margin-bottom: 24px;
}

.checkout-step {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px;
}

.checkout-step h3 {
  font-size: 15px; font-weight: 600;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}

.step-number {
  width: 26px; height: 26px;
  background: var(--dark); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.checkout-order-summary { position: sticky; top: calc(var(--nav-height) + 32px); }

.checkout-summary-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.checkout-summary-card h3 {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500; margin-bottom: 18px;
}

.checkout-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13px;
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item .item-name { font-weight: 500; }
.checkout-item .item-qty { color: var(--text-muted); font-size: 11px; }
.checkout-item .item-price { font-weight: 600; }

/* Bank transfer */
.bank-details-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; margin-top: 18px;
}
.bank-details-card h4 {
  font-size: 14px; font-weight: 600;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}

.bank-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 13px;
}
.bank-detail-row:last-child { border-bottom: none; }
.bank-label { color: var(--text-secondary); }
.bank-value { font-weight: 700; font-family: var(--sans); letter-spacing: 0.3px; }

.bank-copy-btn {
  background: none; color: var(--green); font-size: 11px;
  font-weight: 600; padding: 2px 6px; border-radius: 4px;
  margin-left: 6px; transition: all var(--transition);
}
.bank-copy-btn:hover { background: var(--green-light); }

.bank-note {
  margin-top: 14px; font-size: 11px;
  color: var(--text-secondary); line-height: 1.6;
  padding: 10px; background: var(--bg);
  border-radius: var(--radius-sm);
}

/* Checkout upsells */
.checkout-upsells {
  margin-top: 16px; background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px;
}
.checkout-upsells h4 { font-size: 13px; font-weight: 600; margin-bottom: 12px; }

.place-order-btn {
  width: 100%; padding: 16px;
  background: var(--dark); color: white;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 18px; transition: all var(--transition);
}
.place-order-btn:hover { background: var(--dark-hover); }
.place-order-btn:disabled { background: var(--border); color: var(--text-muted); cursor: not-allowed; }

/* ============ CONFIRMATION ============ */
.confirmation-page {
  padding-top: calc(var(--nav-height) + 64px);
  min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
}

.confirmation-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px; max-width: 520px; width: 90%;
  text-align: center; animation: slideUp 0.5s ease;
}

.confirmation-icon {
  width: 64px; height: 64px;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.confirmation-icon svg { color: var(--green); }

.confirmation-card h2 {
  font-family: var(--serif);
  font-size: 30px; font-weight: 500; margin-bottom: 8px;
}
.confirmation-card .order-number { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.confirmation-card .confirmation-msg {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px;
}

.confirmation-details {
  text-align: left;
  background: var(--bg-light); border-radius: var(--radius-md);
  padding: 20px; margin-bottom: 24px;
}
.confirmation-details h4 { font-size: 13px; font-weight: 600; margin-bottom: 10px; }

/* ============ CALCULATOR ============ */
.calculator-page { padding-top: calc(var(--nav-height) + 32px); min-height: 100vh; }

.calculator-container {
  max-width: 800px; margin: 0 auto; padding: 32px;
}

.calculator-container h1 {
  font-family: var(--serif);
  font-size: 36px; font-weight: 500; margin-bottom: 8px;
}
.calculator-container > p { color: var(--text-muted); margin-bottom: 28px; font-size: 14px; }

.calc-presets { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.calc-preset {
  padding: 8px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; font-weight: 500;
  color: var(--text-secondary); transition: all var(--transition);
}
.calc-preset:hover { border-color: var(--text); color: var(--text); }
.calc-preset.active { background: var(--dark); color: white; border-color: var(--dark); }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.calc-form-card, .calc-results-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.calc-form-card h3, .calc-results-card h3 {
  font-size: 15px; font-weight: 600; margin-bottom: 18px;
}

.calc-input-group { display: flex; gap: 8px; margin-bottom: 14px; align-items: center; }
.calc-input-group .form-input { flex: 1; }
.calc-input-group select.form-input { flex: 0 0 85px; }
.calc-input-suffix { font-size: 13px; color: var(--text-muted); font-weight: 500; flex-shrink: 0; }

.preset-info {
  margin-top: 16px; padding: 14px 16px;
  background: var(--green-light); border-radius: var(--radius-sm);
  border: 1px solid rgba(45,107,74,0.15);
}
.preset-info-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-secondary);
  padding: 4px 0;
}
.preset-info-row span:first-child { font-weight: 600; color: var(--text); }
.preset-info-row span:last-child { color: var(--green); font-weight: 500; }

#calcResults { opacity: 0; transform: translateY(8px); transition: all var(--transition); }
#calcResults.show { opacity: 1; transform: translateY(0); }

.calc-result-item {
  padding: 12px; background: var(--bg);
  border-radius: var(--radius-sm); margin-bottom: 8px;
  border: 1px solid var(--border-light);
}
.calc-result-label {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px;
}
.calc-result-value { font-size: 18px; font-weight: 700; color: var(--text); }

.syringe-visual { margin-top: 16px; display: flex; flex-direction: column; align-items: center; }
.syringe-graphic {
  width: 36px; height: 180px;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: 0 0 4px 4px;
  position: relative; overflow: hidden;
}
.syringe-graphic::before {
  content: ''; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 12px;
  background: var(--border); border-radius: 2px 2px 0 0;
}
#syringeFill {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(45,107,74,0.25), rgba(45,107,74,0.5));
  transition: height 0.5s ease;
}
#syringeFillLabel { margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--text-secondary); }

/* ============ CART NOTIFICATION ============ */
.cart-notification {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 9999;
  transform: translateY(120%); transition: transform 0.3s ease;
}
.cart-notification.show { transform: translateY(0); }

.cart-notif-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  min-width: 300px;
}
.cart-notif-content svg { color: var(--green); flex-shrink: 0; }
.cart-notif-content strong { display: block; font-size: 13px; }
.cart-notif-sub { display: block; font-size: 11px; color: var(--text-muted); }
.cart-notif-btn {
  padding: 7px 14px;
  background: var(--dark); color: white !important;
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px 32px;
  text-align: center;
}

.footer-disclaimer-main {
  max-width: 600px; margin: 0 auto 28px;
  font-size: 11px; color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13px; color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

.footer-bottom-info {
  font-size: 12px; color: var(--text-muted);
}
.footer-bottom-info a { color: var(--text-muted); }

/* Old footer classes - hide if present */
.footer-grid { display: none; }
.footer-bottom { display: none; }
.footer-disclaimer { display: none; }

/* ============ FILTER BAR (Products Page) ============ */
.products-page-layout {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 32px;
  max-width: var(--max-width); margin: 0 auto; padding: 32px;
}

.products-sidebar {
  position: sticky; top: calc(var(--nav-height) + 32px);
  align-self: start;
}

.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
}

.sidebar-card h4 {
  font-size: 14px; font-weight: 600;
  margin-bottom: 4px;
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-card h4 button {
  font-size: 11px; color: var(--text-muted);
  background: none; font-weight: 500;
}
.sidebar-card h4 button:hover { color: var(--text); }

.sidebar-section { margin-top: 20px; }
.sidebar-section-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}

.sidebar-filter-btn {
  display: block; width: 100%;
  padding: 7px 12px; margin-bottom: 4px;
  background: none; text-align: left;
  font-size: 12px; font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sidebar-filter-btn:hover { background: var(--bg); color: var(--text); }
.sidebar-filter-btn.active { background: var(--dark); color: white; }

.sidebar-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 6px 0;
  background: none; text-align: left;
  font-size: 12px; color: var(--text-secondary);
}

.sidebar-toggle-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); margin-right: 8px;
  display: inline-block;
}
.sidebar-toggle-dot.green { background: var(--green-bright); box-shadow: var(--green-glow); }
.sidebar-toggle-dot.red { background: var(--text-muted); }

.sidebar-toggle .badge {
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 100px;
  background: var(--green-light); color: var(--green);
}

.sidebar-count {
  margin-top: 16px; font-size: 11px; color: var(--text-muted);
}

/* Products main */
.products-main-content h2 {
  font-family: var(--serif);
  font-size: 36px; font-weight: 500; margin-bottom: 6px;
}
.products-main-content > p {
  font-size: 13px; color: var(--text-muted); margin-bottom: 28px;
}

.products-section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px; margin-top: 40px;
}
.products-section-label:first-of-type { margin-top: 0; }

/* Old filter bar - override */
.filter-bar { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-detail-image { height: 300px; position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .products-page-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { position: relative; justify-content: center; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-logo img { height: 56px; }
  .nav-actions { position: absolute; right: 16px; }
  .hero { padding: calc(var(--nav-height) + 24px) 24px 60px; }
  .hero h1 { font-size: 36px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card-image { height: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .result-slide { grid-template-columns: 1fr; }
  .result-before, .result-after { height: 180px; }
  .calc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 24px; }
  .purity-section { padding: 60px 24px; }
  .aus-brand-section { padding: 60px 24px; }
  .aus-brand-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-section { padding: 60px 24px; }
  .discount-tiers { flex-direction: column; align-items: center; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* Cart drawer narrower on mobile */
  .cart-drawer { width: 85vw; max-width: 340px; }
  .cart-drawer-header { padding: 16px 18px; }
  .cart-drawer-header h3 { font-size: 17px; }
  .cart-drawer-body { padding: 14px 18px; }
  .cart-drawer-footer { padding: 14px 18px; }
  .drawer-item { gap: 10px; }
  .drawer-item-image { width: 40px; height: 40px; }
  .drawer-item-name { font-size: 13px; }
  .drawer-item-meta { font-size: 11px; }
  .drawer-item-price { font-size: 13px; }
  .drawer-checkout-btn { font-size: 12px; padding: 12px; }
  .drawer-viewcart-btn { font-size: 11px; }

  /* Product detail grid single column */
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-image { min-height: 200px; }

  /* Bundle selector stack on small screens */
  .bundle-selector { flex-direction: column; }
  .bundle-option { flex: unset; }

  /* Checkout layout single column */
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-order-summary { position: static; }

  /* Cart layout single column */
  .cart-layout { grid-template-columns: 1fr; }

  /* Variant selectors wrap + center */
  .detail-variant-selector { flex-wrap: wrap; justify-content: center; }
  .detail-variant-btn { flex: 1; min-width: 0; padding: 8px 12px; font-size: 12px; }
  .detail-variant-btn .variant-price { font-size: 10px; }

  /* Products page layout single column, hide desktop sidebar */
  .products-page-layout { grid-template-columns: 1fr; padding: 16px 24px; gap: 16px; }
  .products-sidebar { display: none; }

  /* Mobile filter bar visible */
  .mobile-filter-toggle { display: flex; }

  /* Product detail mobile */
  .product-detail { padding-top: calc(var(--nav-height) + 16px); }
  .product-detail-grid { padding: 0 16px; gap: 16px; }
  .product-detail-image { height: 250px; border-radius: var(--radius-md); }
  .product-detail-info { text-align: center; padding: 0; }
  .product-detail-breadcrumb { justify-content: center; flex-wrap: wrap; font-size: 11px; }
  .product-detail-name { font-size: 24px; }
  .product-detail-fullname { font-size: 12px; }
  .product-detail-price { font-size: 24px; }
  .product-detail-desc { font-size: 13px; text-align: left; }
  .detail-add-btn { font-size: 13px; }

  /* Bundle selector centered row on mobile */
  .bundle-selector { flex-direction: row; justify-content: center; }
  .bundle-option { flex: 1; min-width: 0; padding: 10px 6px; }
  .bundle-option-label { font-size: 11px; }
  .bundle-option-price { font-size: 11px; }
  .bundle-option-tag { font-size: 9px; padding: 2px 6px; }

  /* Product card mobile tweaks */
  .product-card-body { padding: 10px 10px 12px; }
  .product-card-name { font-size: 13px; }
  .product-card-weight { font-size: 11px; }
  .product-card-price { font-size: 13px; }
  .product-card-price span { font-size: 10px; }
  .add-to-cart-btn { font-size: 11px; padding: 8px 10px; }
  .product-card-image { height: 150px; }

  /* Products page heading mobile */
  .products-main-content h2 { font-size: 24px; }
  .products-main-content > p { font-size: 12px; margin-bottom: 12px; }
  .products-section-label { font-size: 10px; margin-bottom: 8px; }

  /* Detail accessories */
  .detail-accessory-item { flex-wrap: wrap; }
  .detail-accessory-btn { width: 100%; text-align: center; margin-top: 6px; }

  /* Tabs mobile */
  .product-tabs-nav { flex-wrap: wrap; gap: 4px; justify-content: center; }
  .product-tabs-nav button { font-size: 11px; padding: 6px 10px; }

  /* Checkout mobile - order summary on top */
  .checkout-page { padding: 0; padding-top: var(--nav-height); }
  .checkout-layout { gap: 16px; padding: 16px; }
  .checkout-order-summary { order: -1; }
  .checkout-form-section h2 { font-size: 22px; }
  .checkout-step h3 { font-size: 15px; }
  .form-input { font-size: 14px; padding: 10px 12px; }
  .place-order-btn { font-size: 13px; padding: 14px; }
  .checkout-summary-card { padding: 16px; }
  .checkout-summary-card h3 { font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }

  /* Cart mobile */
  .cart-page { padding: 0; padding-top: var(--nav-height); }
  .cart-layout { gap: 16px; padding: 16px; }
  .cart-items-section h2 { font-size: 22px; }
  .cart-item { padding: 14px; gap: 12px; }
  .cart-item-name { font-size: 13px; }
  .cart-item-price .price { font-size: 14px; }
  .cart-item-price .each { font-size: 10px; }
  .cart-summary-card { padding: 18px; }
  .cart-summary-card h3 { font-size: 16px; margin-bottom: 14px; padding-bottom: 10px; }
  .summary-row { font-size: 12px; }
  .summary-row.total { font-size: 14px; }
  .summary-row.total .value { font-size: 18px; }
  .variant-selector { flex-wrap: wrap; gap: 4px; }
  .variant-btn { padding: 4px 8px; font-size: 10px; }

  /* Upsell images on mobile */
  .upsell-item-icon { width: 40px; height: 40px; min-width: 40px; overflow: hidden; border-radius: 6px; }
  .upsell-item-icon img { width: 100%; height: 100%; object-fit: cover; }

  /* Drawer addon bundle */
  .drawer-addon-bundle { flex-direction: column; gap: 8px; text-align: center; }

  .reviews-summary { flex-direction: column; text-align: center; gap: 8px; }
  .product-reviews-grid { grid-template-columns: 1fr; }
  .review-photo-thumb { width: 64px; height: 64px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .coa-grid { grid-template-columns: 1fr; }
  .age-gate-box { padding: 32px 24px; }
  .age-gate-buttons { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Cart items tighter */
  .cart-item { gap: 8px; padding: 12px; }
  .cart-item-image { width: 44px; height: 44px; }
  .cart-item-name { font-size: 12px; }
  .cart-item-price .price { font-size: 13px; }
  .cart-layout { padding: 12px; }
  .checkout-layout { padding: 12px; }

  /* Checkout step indicators compact */
  .checkout-step-indicator { font-size: 11px; }
  .checkout-step-indicator .step-circle { font-size: 11px; }
  .checkout-steps-indicator { gap: 4px; }

  /* Hero smaller text */
  .hero h1 { font-size: 26px; }
  .hero-subtitle { font-size: 13px; }

  /* Product card even smaller */
  .product-card-image { height: 130px; }
  .product-card-name { font-size: 12px; }
  .product-card-weight { font-size: 10px; }
  .product-card-price { font-size: 12px; }
  .add-to-cart-btn { font-size: 10px; padding: 7px 8px; }

  /* Detail accessory bundle */
  .detail-accessory-bundle { flex-direction: column; gap: 6px; text-align: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }
}

/* ============ VARIANT SELECTOR ============ */
.variant-selector {
  display: flex; gap: 6px; margin-top: 8px; margin-bottom: 6px;
}
.variant-btn {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 11px; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.variant-btn:hover { border-color: var(--text-muted); color: var(--text); }
.variant-btn.active {
  background: var(--dark); color: white; border-color: var(--dark);
}

/* Detail page variant selector */
.detail-variant-selector {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.detail-variant-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.detail-variant-btn:hover { border-color: var(--text-muted); color: var(--text); }
.detail-variant-btn.active {
  background: var(--dark); color: white; border-color: var(--dark);
}
.detail-variant-btn .variant-price {
  display: block; font-size: 11px; font-weight: 400; margin-top: 2px; opacity: 0.8;
}

/* ============ BUNDLE SELECTOR ============ */
.bundle-selector {
  display: flex; gap: 8px; margin-bottom: 18px;
}
.bundle-option {
  flex: 1;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-light);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.bundle-option:hover { border-color: var(--text-muted); }
.bundle-option.active {
  border-color: var(--dark); background: white;
  box-shadow: 0 0 0 1px var(--dark);
}
.bundle-option-label {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.bundle-option-price {
  font-size: 12px; color: var(--text-secondary); margin-top: 2px;
}
.bundle-option-tag {
  position: absolute; top: -8px; right: -4px;
  padding: 2px 8px;
  background: var(--green); color: white;
  border-radius: 100px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3px; text-transform: uppercase;
}

/* ============ CONTEXTUAL UPSELL ============ */
.contextual-upsell {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 10px;
}
.contextual-upsell-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.contextual-upsell-header .upsell-tag {
  padding: 3px 8px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contextual-upsell-msg {
  font-size: 12px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 10px;
  font-style: italic;
}
.contextual-upsell-product {
  display: flex; align-items: center; gap: 10px;
}
.contextual-upsell-product .upsell-item-info { flex: 1; }
.contextual-upsell-product .upsell-item-name { font-size: 13px; font-weight: 600; }
.contextual-upsell-product .upsell-item-price { font-size: 12px; color: var(--text-muted); }

/* ============ CHECKOUT STEPS (Multi-step flow) ============ */
.checkout-steps-indicator {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 28px;
}
.checkout-step-indicator {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.checkout-step-indicator.active { color: var(--text); }
.checkout-step-indicator.completed { color: var(--green); }
.checkout-step-indicator .step-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: all var(--transition);
}
.checkout-step-indicator.active .step-circle {
  border-color: var(--dark); background: var(--dark); color: white;
}
.checkout-step-indicator.completed .step-circle {
  border-color: var(--green); background: var(--green); color: white;
}
.checkout-step-divider {
  flex: 1; height: 2px; background: var(--border);
  margin: 0 12px;
}
.checkout-step-divider.completed { background: var(--green); }

/* Step panels */
.checkout-step-panel { display: none; }
.checkout-step-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* Bank details step */
.bank-transfer-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.bank-transfer-step h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  margin-bottom: 6px;
}
.bank-transfer-step .step-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 24px;
}
.bank-order-ref {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}

/* Confirmation step */
.payment-confirm-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.payment-confirm-step h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  margin-bottom: 8px;
}
.payment-confirm-step .step-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 24px;
}
.confirm-paid-btn {
  width: 100%; padding: 16px;
  background: var(--green); color: white;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all var(--transition);
}
.confirm-paid-btn:hover { background: #245a3d; }

/* Tracking message step */
.tracking-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
.tracking-step .tracking-icon {
  width: 72px; height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.tracking-step .tracking-icon svg { color: var(--green); }
.tracking-step h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  margin-bottom: 8px;
}
.tracking-step .order-ref {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 16px;
}
.tracking-step .tracking-msg {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 28px;
  max-width: 400px; margin-left: auto; margin-right: auto;
}

/* Cart item variant/bundle info */
.cart-item-variant {
  font-size: 11px; color: var(--text-muted); margin-bottom: 2px;
}
.cart-item-bundle-tag {
  display: inline-block;
  padding: 2px 6px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 4px;
  font-size: 10px; font-weight: 700;
  margin-left: 6px;
}
.cart-item-original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 12px;
  margin-right: 4px;
}

/* ============ ADD TO CART TOAST ============ */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10000;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cart-toast svg { color: var(--green-bright); flex-shrink: 0; }
.cart-toast-link {
  color: var(--green-bright);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}
.cart-toast-link:hover { text-decoration: underline; }

/* ============ CART DRAWER ============ */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.5);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 92vw;
  background: var(--bg-light);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.cart-drawer-header h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
}
.cart-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.cart-drawer-close:hover { background: var(--border); color: var(--text); }

.cart-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 20px 24px;
}

/* Just-added confirmation */
.drawer-added-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid rgba(45, 107, 74, 0.15);
}
.drawer-added-item svg { color: var(--green); flex-shrink: 0; }
.drawer-added-item .added-info { flex: 1; }
.drawer-added-item .added-name { font-size: 13px; font-weight: 600; }
.drawer-added-item .added-detail { font-size: 11px; color: var(--green); }

/* Drawer cart items */
.drawer-item {
  display: flex; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.drawer-item:last-child { border-bottom: none; }

.drawer-item-image {
  width: 52px; height: 52px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.drawer-item-meta { font-size: 11px; color: var(--text-muted); }
.drawer-item-price { font-size: 14px; font-weight: 700; text-align: right; white-space: nowrap; }

.drawer-item-remove {
  background: none; color: var(--text-muted);
  font-size: 11px; padding: 2px 0;
  transition: color var(--transition);
}
.drawer-item-remove:hover { color: var(--red); }

/* Drawer sections */
.drawer-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.drawer-section-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Accessory add-ons in drawer */
.drawer-addon {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  transition: all var(--transition);
}
.drawer-addon:hover { border-color: var(--border); }
.drawer-addon-info { flex: 1; }
.drawer-addon-name { font-size: 12px; font-weight: 600; }
.drawer-addon-price { font-size: 11px; color: var(--text-muted); }
.drawer-addon-btn {
  padding: 5px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.drawer-addon-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }
.drawer-addon-btn.added {
  background: var(--green-light); color: var(--green);
  border-color: rgba(45,107,74,0.2);
  pointer-events: none;
}

.drawer-addon-bundle {
  padding: 10px 12px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition);
}
.drawer-addon-bundle:hover { background: var(--dark-hover); }
.drawer-addon-bundle .bundle-left { }
.drawer-addon-bundle .bundle-label { font-size: 12px; font-weight: 700; }
.drawer-addon-bundle .bundle-desc { font-size: 10px; opacity: 0.7; margin-top: 1px; }
.drawer-addon-bundle .bundle-price { font-size: 13px; font-weight: 700; }

/* Drawer upsell */
.drawer-upsell {
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.drawer-upsell-msg {
  font-size: 11px; color: var(--text-secondary);
  line-height: 1.5; margin-bottom: 8px;
  font-style: italic;
}
.drawer-upsell-product {
  display: flex; align-items: center; gap: 8px;
}
.drawer-upsell-product .upsell-item-name { font-size: 12px; font-weight: 600; }
.drawer-upsell-product .upsell-item-price { font-size: 11px; color: var(--text-muted); }

/* Drawer footer */
.cart-drawer-footer {
  padding: 20px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.drawer-totals {
  margin-bottom: 14px;
}
.drawer-total-row {
  display: flex; justify-content: space-between;
  padding: 4px 0; font-size: 13px;
}
.drawer-total-row .label { color: var(--text-secondary); }
.drawer-total-row .value { font-weight: 600; }
.drawer-total-row.total {
  padding-top: 10px; margin-top: 6px;
  border-top: 1px solid var(--border-light);
  font-size: 16px;
}
.drawer-total-row.total .value { font-size: 20px; font-weight: 700; }
.drawer-total-row.discount .value { color: var(--green); }

.drawer-checkout-btn {
  width: 100%; padding: 14px;
  background: var(--dark); color: white;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all var(--transition);
  display: block; text-align: center;
  margin-bottom: 8px;
}
.drawer-checkout-btn:hover { background: var(--dark-hover); }

.drawer-viewcart-btn {
  width: 100%; padding: 12px;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: 13px;
  transition: all var(--transition);
  display: block; text-align: center;
}
.drawer-viewcart-btn:hover { border-color: var(--text); color: var(--text); }

/* ============ ACCESSORY ADD-ONS (Product Detail) ============ */
.detail-accessories {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.detail-accessories-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.detail-accessories-toggle {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer; padding: 8px 0; margin-bottom: 4px;
  transition: color var(--transition);
}
.detail-accessories-toggle:hover { color: var(--text); }
.detail-accessories-toggle .supplies-chevron {
  transition: transform 0.2s ease;
}
.detail-accessories-toggle.open .supplies-chevron {
  transform: rotate(180deg);
}
.detail-accessory-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  transition: all var(--transition);
}
.detail-accessory-item:hover { border-color: var(--border); }
.detail-accessory-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.detail-accessory-info { flex: 1; }
.detail-accessory-name { font-size: 13px; font-weight: 600; }
.detail-accessory-desc { font-size: 11px; color: var(--text-muted); }
.detail-accessory-btn {
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.detail-accessory-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }

.detail-accessory-bundle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.detail-accessory-bundle:hover { background: var(--dark-hover); }
.detail-accessory-bundle .acc-bundle-info { }
.detail-accessory-bundle .acc-bundle-label { font-size: 13px; font-weight: 700; }
.detail-accessory-bundle .acc-bundle-desc { font-size: 11px; opacity: 0.7; margin-top: 1px; }
.detail-accessory-bundle .acc-bundle-price { font-size: 14px; font-weight: 700; }

/* ============ SHIPPING OPTIONS ============ */
.shipping-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); margin-bottom: 6px;
  cursor: pointer; transition: all 0.2s ease; font-size: 13px;
}
.shipping-option:hover { border-color: var(--border); }
.shipping-option.active {
  border-color: var(--dark); background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--dark);
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============ MOBILE FILTER BAR ============ */
.mobile-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.mobile-filter-toggle .mobile-filter-chevron {
  margin-left: auto;
  transition: transform 0.2s ease;
}
.mobile-filter-toggle.open .mobile-filter-chevron {
  transform: rotate(180deg);
}
.mobile-filter-panel {
  display: none;
  margin-bottom: 16px;
}
.mobile-filter-panel.open {
  display: block;
}
.mobile-filter-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.mobile-filter-buttons .sidebar-filter-btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 12px;
  padding: 8px 10px;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 64px;
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-container h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.legal-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-section li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.legal-section a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .legal-container h1 {
    font-size: 28px;
  }
  .legal-section h2 {
    font-size: 18px;
  }
}

/* ============ SHIPPING COUNTRIES SECTION ============ */
.shipping-countries-section {
  padding: 64px 0 48px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.country-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.country-flag {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}

.country-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.country-detail {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.crypto-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 8px;
}

.crypto-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.crypto-banner strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.crypto-banner span {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .crypto-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============ CHECKOUT: PAYMENT METHOD TABS ============ */
.payment-method-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-tab {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.payment-tab:hover {
  border-color: var(--border);
}

.payment-tab.active {
  border-color: var(--dark);
  color: var(--text);
  background: var(--bg-elevated);
}

.payment-tab .tab-icon {
  display: block;
  margin: 0 auto 6px;
}

.payment-tab .tab-discount {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  margin-top: 4px;
}

/* ============ CHECKOUT: CRYPTO SECTION ============ */
.crypto-payment-section {
  display: none;
}

.crypto-payment-section.active {
  display: block;
}

.bank-transfer-section {
  display: none;
}

.bank-transfer-section.active {
  display: block;
}

.crypto-discount-banner {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.crypto-discount-banner .discount-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--serif);
}

.crypto-discount-banner .discount-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.crypto-discount-banner .discount-text strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.crypto-select-group {
  margin-bottom: 20px;
}

.crypto-select-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.crypto-select-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text);
}

.crypto-address-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.crypto-address-card .crypto-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.crypto-address-card .crypto-addr {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--text);
  word-break: break-all;
  background: var(--bg-card);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.crypto-addr code {
  flex: 1;
  word-break: break-all;
}

.crypto-how-to {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.crypto-how-to h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.crypto-steps-simple {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.crypto-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.crypto-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.crypto-step-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 4px;
}

.crypto-step-text strong {
  color: var(--text);
}

.crypto-help-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.crypto-help-note strong {
  color: var(--text-secondary);
}

/* ============ CHECKOUT: PROOF OF PAYMENT UPLOAD ============ */
.proof-upload-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.proof-upload-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.proof-upload-section .upload-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.proof-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-elevated);
}

.proof-dropzone:hover,
.proof-dropzone.dragover {
  border-color: var(--green);
  background: var(--green-light);
}

.proof-dropzone .dropzone-icon {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.proof-dropzone .dropzone-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.proof-dropzone .dropzone-text strong {
  color: var(--green);
  cursor: pointer;
}

.proof-dropzone .dropzone-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.proof-preview {
  display: none;
  margin-top: 12px;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: 12px;
}

.proof-preview.visible {
  display: flex;
}

.proof-preview img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.proof-preview .file-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.proof-preview .proof-file-info {
  flex: 1;
}

.proof-preview .proof-file-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.proof-preview .proof-file-size {
  font-size: 11px;
  color: var(--text-muted);
}

.proof-remove-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
}

.proof-remove-btn:hover {
  text-decoration: underline;
}

/* ============ CHECKOUT: COUNTRY SELECTOR ============ */
.country-select-wrapper select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

/* ============ CHECKOUT: PHONE INPUT WITH COUNTRY PREFIX ============ */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.phone-input-wrapper:focus-within {
  border-color: var(--dark);
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.08);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border-light);
  flex-shrink: 0;
  user-select: none;
}

.phone-flag {
  font-size: 18px;
  line-height: 1;
}

.phone-code {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.phone-with-prefix {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}

.phone-with-prefix:focus {
  box-shadow: none !important;
}

/* ============ CURRENCY SELECTOR BAR ============ */
.currency-bar {
  background: var(--dark);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 36px;
  display: flex;
  align-items: center;
}

.currency-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.currency-bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.currency-selector {
  position: relative;
}

.currency-selector-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.currency-selector-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  overflow: hidden;
  z-index: 9999;
}

.currency-dropdown.open {
  display: block;
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
}

.currency-option:hover {
  background: var(--bg-elevated);
}

.currency-option.active {
  background: var(--green-light);
  font-weight: 600;
  color: var(--green);
}

.currency-option-flag {
  font-size: 16px;
}

@media (max-width: 480px) {
  .currency-bar-label {
    display: none;
  }
  .currency-bar-inner {
    justify-content: flex-end;
  }
}

/* ============ MODERN ANIMATIONS ============ */

/* Smooth fade-in-up for page sections */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

/* Scroll-triggered animations via IntersectionObserver */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.animate-stagger.visible > *:nth-child(2) { transition-delay: 60ms; }
.animate-stagger.visible > *:nth-child(3) { transition-delay: 120ms; }
.animate-stagger.visible > *:nth-child(4) { transition-delay: 180ms; }
.animate-stagger.visible > *:nth-child(5) { transition-delay: 240ms; }
.animate-stagger.visible > *:nth-child(6) { transition-delay: 300ms; }
.animate-stagger.visible > *:nth-child(7) { transition-delay: 360ms; }
.animate-stagger.visible > *:nth-child(8) { transition-delay: 420ms; }

.animate-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance */
.hero-section {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

/* Product cards hover lift */
.product-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* Buttons smooth interactions */
.btn {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0px) scale(0.98);
}

/* Section headers animate in */
.section-header {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Testimonial cards */
.testimonial-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Country cards bounce */
.country-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.country-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Trust badges */
.badge-item, .trust-feature {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-item:hover, .trust-feature:hover {
  transform: translateY(-2px);
}

/* Cart drawer slide */
.cart-drawer {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Checkout panels smooth transition */
.checkout-step-panel.active {
  animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Crypto address card pulse on copy */
.crypto-addr.copied {
  animation: pulse-soft 0.5s ease;
}

/* Proof upload dropzone hover */
.proof-dropzone {
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.proof-dropzone:hover {
  transform: scale(1.01);
  border-color: var(--green);
  background: var(--green-light);
}

/* Smooth nav scroll shadow */
.navbar {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Calc presets */
.calc-preset {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.calc-preset:hover {
  transform: translateY(-2px);
}

/* FAQ accordion */
.faq-answer {
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
}

/* Mobile menu slide */
.mobile-menu {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

/* Link underline animation */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a {
  position: relative;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-in { opacity: 1; transform: none; }
  .animate-stagger > * { opacity: 1; transform: none; }
}
