/* ==========================================================================
   Pure Chain — Design System
   Ported 1:1 from the Pure Chain React app (colors, type, spacing, effects).
   ========================================================================== */

:root {
  --pc-black: #000000;
  --pc-near-black: #0A0A0A;
  --pc-card: #0A0A0A;
  --pc-white: #ffffff;
  --pc-silver: #C0C0C0;
  --pc-gold: #D4B26A;
  --pc-gold-light: #E5C687;
  --pc-radius-sm: 0.5rem;
  --pc-radius-md: 0.75rem;
  --pc-radius-lg: 1rem;
  --pc-radius-xl: 1.5rem;
  --pc-container: 1280px;
  --pc-font: 'Sora', sans-serif;
}

/* ── Reset / base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.purechain {
  background: var(--pc-black);
  color: var(--pc-white);
  font-family: var(--pc-font);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--pc-font); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: var(--pc-font); }
input, select, textarea { color-scheme: dark; }
::selection { background: rgba(192,192,192,0.3); color: #fff; }

.container { max-width: var(--pc-container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* ── Effects (ported verbatim) ───────────────────────────────── */
.glow-text { text-shadow: 0 0 30px rgba(192,192,192,0.4), 0 0 60px rgba(192,192,192,0.15); }
.glass { background: linear-gradient(135deg, rgba(192,192,192,0.12) 0%, rgba(192,192,192,0.03) 100%), rgba(10,10,10,0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.glass-strong { background: rgba(0,0,0,0.9); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); }
.bg-grid { background-image: linear-gradient(rgba(192,192,192,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(192,192,192,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.bg-dots { background-image: radial-gradient(circle, rgba(192,192,192,0.12) 1px, transparent 1px); background-size: 30px 30px; }
.gradient-text { background: linear-gradient(135deg, #ffffff 0%, #C0C0C0 50%, #9C9C9C 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

@keyframes pc-pulse-glow { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes pc-shimmer-x { 0% { background-position-x: 150%; } 100% { background-position-x: -50%; } }
@keyframes pc-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pc-spin { to { transform: rotate(360deg); } }
.animate-pulse-glow { animation: pc-pulse-glow 3s ease-in-out infinite; }

/* Scroll-reveal (progressive enhancement via IntersectionObserver in main.js) */
.pc-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.25,.1,.25,1); }
.pc-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .pc-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Typography helpers ──────────────────────────────────────── */
.pc-eyebrow { color: var(--pc-silver); font-size: 12px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 16px; }
.pc-eyebrow-pill { display: inline-block; padding: 6px 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; border-radius: 999px; background: rgba(192,192,192,0.08); color: var(--pc-silver); border: 1px solid rgba(192,192,192,0.25); }
.pc-gold { color: var(--pc-gold); }
.pc-silver { color: var(--pc-silver); }
.pc-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.08; }
.pc-h2 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; }
.pc-section-head { text-align: center; margin-bottom: 5rem; }
@media (max-width: 767px) { .pc-section-head { margin-bottom: 2.5rem; } }
.pc-section-head p.pc-eyebrow { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────────── */
.pc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 32px; border: none; cursor: pointer; transition: all 0.3s ease;
  border-radius: var(--pc-radius-sm);
}
.pc-btn-gold { background: var(--pc-gold); color: #000; box-shadow: 0 0 18px rgba(212,178,106,0.25); }
.pc-btn-gold:hover { background: var(--pc-gold-light); box-shadow: 0 0 25px rgba(212,178,106,0.45); transform: scale(1.03); }
.pc-btn-silver { background: var(--pc-silver); color: #000; box-shadow: 0 0 18px rgba(192,192,192,0.25); }
.pc-btn-silver:hover { background: #fff; box-shadow: 0 0 25px rgba(192,192,192,0.45); transform: scale(1.03); }
.pc-btn-outline { background: rgba(192,192,192,0.06); color: var(--pc-silver); border: 1px solid rgba(192,192,192,0.3); }
.pc-btn-outline:hover { background: rgba(192,192,192,0.12); }
.pc-btn-pill { border-radius: 999px; }
.pc-btn-block { width: 100%; }
.pc-btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ── Badges / pills ──────────────────────────────────────────── */
.pc-badge { display: inline-block; padding: 4px 10px; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 999px; }
.pc-badge-gold { background: var(--pc-gold); color: #000; }
.pc-badge-silver { background: var(--pc-silver); color: #000; }
.pc-badge-outline { background: rgba(10,10,10,0.85); color: rgba(255,255,255,0.75); border: 1px solid rgba(192,192,192,0.35); }
.pc-tag { padding: 4px 12px; font-size: 10px; border-radius: 4px; letter-spacing: 0.03em; font-weight: 500; background: rgba(192,192,192,0.07); color: rgba(255,255,255,0.5); border: 1px solid rgba(192,192,192,0.15); }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.pc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0; background: transparent; transition: all 0.4s ease;
}
.pc-header.is-scrolled { background: rgba(0,0,0,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(192,192,192,0.1); padding: 12px 0; }
.pc-header .container { display: flex; align-items: center; justify-content: space-between; }

.pc-logo { display: flex; align-items: center; gap: 12px; }
.pc-logo img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(192,192,192,0.45)); flex-shrink: 0; }
.pc-logo .pc-wordmark { display: flex; flex-direction: column; line-height: 1; }
.pc-logo .pc-word-top { font-weight: 700; letter-spacing: 0.1em; color: #fff; font-size: 18px; transition: color 0.3s; }
.pc-logo .pc-word-bottom { color: var(--pc-gold); font-weight: 600; letter-spacing: 0.3em; font-size: 10px; margin-top: 2px; }
.pc-logo:hover .pc-word-top { color: var(--pc-gold); }

.pc-nav-links { display: none; align-items: center; gap: 36px; }
@media (min-width: 1400px) { .pc-nav-links { display: flex; } }
.pc-nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.pc-nav-links a:hover, .pc-nav-links a.is-active { color: var(--pc-gold); }

.pc-header-actions { display: flex; align-items: center; gap: 8px; }
.pc-icon-btn {
  position: relative; width: 40px; height: 40px; display: none; align-items: center; justify-content: center;
  border-radius: var(--pc-radius-md); border: 1px solid rgba(192,192,192,0.15); background: transparent; color: rgba(255,255,255,0.7);
  cursor: pointer; transition: background 0.2s;
}
@media (min-width: 1400px) { .pc-icon-btn.pc-desktop-only { display: flex; } }
.pc-icon-btn.pc-mobile-only { display: flex; }
@media (min-width: 1400px) { .pc-icon-btn.pc-mobile-only { display: none; } }
.pc-icon-btn:hover { background: rgba(255,255,255,0.05); }
.pc-menu-toggle { display: flex; }
@media (min-width: 1400px) { .pc-menu-toggle { display: none; } }
.pc-cart-badge {
  position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 999px;
  background: var(--pc-gold); color: #000; font-size: 9px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 12px rgba(212,178,106,0.55);
}

/* Mobile menu */
.pc-mobile-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(2,5,12,0.82); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.pc-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: 82%; max-width: 330px;
  display: flex; flex-direction: column; overflow-y: auto;
  background: linear-gradient(180deg, #070707 0%, #000000 100%);
  border-left: 1px solid rgba(192,192,192,0.25);
  box-shadow: -40px 0 120px rgba(0,0,0,0.85);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
body.pc-menu-open .pc-mobile-backdrop { opacity: 1; pointer-events: auto; }
body.pc-menu-open .pc-mobile-panel { transform: translateX(0); }
@media (min-width: 1400px) { .pc-mobile-backdrop, .pc-mobile-panel { display: none; } }
.pc-mobile-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(192,192,192,0.12); background: rgba(192,192,192,0.03); }
.pc-mobile-panel-head .pc-tag-dot { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(192,192,192,0.8); }
.pc-mobile-panel-head .pc-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--pc-silver); box-shadow: 0 0 8px var(--pc-silver); }
.pc-mobile-close { width: 36px; height: 36px; border-radius: var(--pc-radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); cursor: pointer; }
.pc-mobile-links { display: flex; flex-direction: column; padding: 20px 16px; gap: 6px; }
.pc-mobile-links a {
  display: flex; align-items: center; justify-content: space-between; padding: 16px; border-radius: var(--pc-radius-md);
  font-size: 14px; font-weight: 600; letter-spacing: 0.15em; color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.05);
}
.pc-mobile-links a.is-active { color: var(--pc-gold); background: rgba(212,178,106,0.08); border-color: rgba(212,178,106,0.3); }
.pc-mobile-cta { margin-top: auto; padding: 8px 16px 28px; }
.pc-mobile-cta .pc-note { text-align: center; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-top: 16px; }

/* ==========================================================================
   Age gate
   ========================================================================== */
.pc-agegate {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
body.pc-agegate-open .pc-agegate { opacity: 1; pointer-events: auto; }
.pc-agegate-card {
  position: relative; width: 100%; max-width: 440px; border-radius: 1.5rem; overflow: hidden;
  background: rgba(10,10,10,0.9); border: 1px solid rgba(192,192,192,0.18);
  box-shadow: 0 0 90px rgba(192,192,192,0.1); backdrop-filter: blur(24px);
  transform: scale(0.94) translateY(16px); transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
body.pc-agegate-open .pc-agegate-card { transform: scale(1) translateY(0); }
.pc-agegate-bar { height: 4px; background: linear-gradient(90deg, transparent, #C0C0C0, transparent); }
.pc-agegate-body { padding: 36px 32px; text-align: center; }
@media (max-width: 640px) { .pc-agegate-body { padding: 28px 24px; } }
.pc-agegate-icon { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; background: rgba(192,192,192,0.1); border: 1px solid rgba(192,192,192,0.3); animation: pc-icon-glow 2.4s ease-in-out infinite; }
@keyframes pc-icon-glow { 0%,100% { box-shadow: 0 0 30px rgba(192,192,192,0.25); } 50% { box-shadow: 0 0 50px rgba(192,192,192,0.45); } }
.pc-check-row {
  width: 100%; display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border-radius: var(--pc-radius-md);
  text-align: left; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; margin-bottom: 10px;
}
.pc-check-row.is-checked { background: rgba(192,192,192,0.08); border-color: rgba(192,192,192,0.35); }
.pc-check-row .pc-check-box { width: 20px; height: 20px; flex-shrink: 0; border-radius: 6px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.25); margin-top: 2px; }
.pc-check-row.is-checked .pc-check-box { background: var(--pc-silver); border-color: var(--pc-silver); }
.pc-check-row .pc-check-text { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.55); }
.pc-check-row.is-checked .pc-check-text { color: rgba(255,255,255,0.9); }
.pc-check-row a { color: var(--pc-silver); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.pc-cart-backdrop { position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.pc-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999; width: 100%; max-width: 480px;
  display: flex; flex-direction: column; overflow: hidden; background: rgba(0,0,0,0.98);
  border-left: 1px solid rgba(192,192,192,0.18); box-shadow: -60px 0 140px rgba(0,0,0,0.7);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
body.pc-cart-open .pc-cart-backdrop { opacity: 1; pointer-events: auto; }
body.pc-cart-open .pc-cart-drawer { transform: translateX(0); }
.pc-cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(192,192,192,0.1); }
.pc-cart-head-left { display: flex; align-items: center; gap: 12px; }
.pc-cart-head-icon { width: 36px; height: 36px; border-radius: var(--pc-radius-sm); display: flex; align-items: center; justify-content: center; background: rgba(192,192,192,0.08); border: 1px solid rgba(192,192,192,0.25); box-shadow: 0 0 14px rgba(192,192,192,0.15); }
.pc-cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.pc-cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 96px 0; text-align: center; }
.pc-cart-empty-icon { width: 64px; height: 64px; border-radius: var(--pc-radius-lg); display: flex; align-items: center; justify-content: center; background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.12); }
.pc-cart-item { border-radius: var(--pc-radius-lg); padding: 16px; display: flex; gap: 16px; align-items: center; background: rgba(192,192,192,0.04); border: 1px solid rgba(192,192,192,0.1); margin-bottom: 10px; }
.pc-cart-thumb { width: 64px; height: 64px; border-radius: var(--pc-radius-md); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: rgba(192,192,192,0.05); border: 1px solid rgba(192,192,192,0.15); }
.pc-cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.pc-qty-stepper { display: inline-flex; align-items: center; border-radius: var(--pc-radius-sm); overflow: hidden; border: 1px solid rgba(192,192,192,0.2); background: rgba(192,192,192,0.04); }
.pc-qty-stepper button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; }
.pc-qty-stepper button:hover { background: rgba(255,255,255,0.05); }
.pc-qty-stepper .pc-qty-val { width: 36px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; border-left: 1px solid rgba(192,192,192,0.12); border-right: 1px solid rgba(192,192,192,0.12); }
.pc-qty-stepper .quantity { display: contents; }
.pc-qty-stepper input.qty, .pc-qty-stepper input.pc-qty-native {
  width: 40px; height: 40px; text-align: center; font-size: 13px; font-weight: 700; color: #fff; background: none; border: none;
  border-left: 1px solid rgba(192,192,192,0.12); border-right: 1px solid rgba(192,192,192,0.12); -moz-appearance: textfield;
}
.pc-qty-stepper input.qty::-webkit-inner-spin-button, .pc-qty-stepper input.qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pc-qty-stepper button { width: 40px; height: 40px; }
.pc-summary-box { border-radius: var(--pc-radius-lg); padding: 16px 20px; background: rgba(192,192,192,0.03); border: 1px solid rgba(192,192,192,0.1); display: flex; flex-direction: column; gap: 10px; }
.pc-summary-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.pc-summary-row .label { color: rgba(255,255,255,0.4); }
.pc-summary-row .value { font-weight: 600; color: rgba(255,255,255,0.75); }
.pc-summary-total { display: flex; align-items: center; justify-content: space-between; }
.pc-summary-total .label { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pc-silver); }
.pc-summary-total .value { font-size: 15px; font-weight: 700; color: var(--pc-silver); }
.pc-cart-foot { padding: 20px 24px; border-top: 1px solid rgba(192,192,192,0.1); background: rgba(0,0,0,0.98); }
.pc-cart-foot .pc-note { text-align: center; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.18); margin-top: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.pc-hero { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; background: #000; }
@media (min-width: 1024px) { .pc-hero { min-height: 100vh; } }
.pc-hero-bg { position: absolute; inset: 0; z-index: 0; display: none; background-size: auto 100%; background-position: center right; background-repeat: no-repeat; }
.pc-hero-bg.is-desktop { background-image: var(--pc-hero-desktop); }
.pc-hero-bg.is-tablet { background-image: var(--pc-hero-tablet); }
@media (min-width: 1024px) { .pc-hero-bg.is-desktop { display: block; } }
@media (min-width: 768px) and (max-width: 1023px) { .pc-hero-bg.is-tablet { display: block; } }
.pc-hero-overlay { position: absolute; inset: 0; z-index: 0; display: none; background: linear-gradient(100deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.99) 38%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.15) 80%, rgba(0,0,0,0.05) 100%); }
@media (min-width: 768px) { .pc-hero-overlay { display: block; } }
.pc-hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 64px; z-index: 1; pointer-events: none; background: linear-gradient(to top, #000, transparent); }
@media (min-width: 768px) { .pc-hero-fade { height: 160px; } }
.pc-hero-content { position: relative; z-index: 2; padding: 96px 0 40px; }
@media (min-width: 640px) { .pc-hero-content { padding: 112px 0 96px; } }
.pc-hero-inner { max-width: 640px; }
@media (max-width: 767px) { .pc-hero-inner { max-width: none; text-align: center; } }
.pc-hero-headline { font-size: clamp(2rem, 9vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
@media (min-width: 768px) { .pc-hero-headline { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 24px; } }
.pc-hero-headline span { display: block; }
.pc-hero-tagline { color: rgba(255,255,255,0.8); font-size: 16px; font-style: italic; margin-bottom: 16px; }
@media (min-width: 640px) { .pc-hero-tagline { font-size: 18px; } }
.pc-hero-sub p:first-child { color: #fff; font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.pc-hero-sub p:last-child { color: rgba(255,255,255,0.6); font-size: 14px; }
@media (min-width: 640px) { .pc-hero-sub p:first-child { font-size: 18px; } .pc-hero-sub p:last-child { font-size: 16px; } }
.pc-hero-mobile-art { display: block; margin: 24px -20px 0; position: relative; }
@media (min-width: 768px) { .pc-hero-mobile-art { display: none; } }
.only-mobile { display: none; }
@media (max-width: 767px) { .only-mobile { display: inline; } }

/* ==========================================================================
   Trust badges strip
   ========================================================================== */
.pc-trust-strip { padding: 40px 0; background: var(--pc-near-black); border-top: 1px solid rgba(192,192,192,0.08); border-bottom: 1px solid rgba(192,192,192,0.08); }
.pc-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 768px) { .pc-trust-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.pc-trust-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--pc-radius-sm); border: 1px solid rgba(192,192,192,0.12); transition: background 0.3s; }
.pc-trust-item:hover { background: rgba(212,178,106,0.05); }
.pc-trust-item svg { color: var(--pc-gold); flex-shrink: 0; width: 24px; height: 24px; }
.pc-trust-item .pc-trust-title { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; }
.pc-trust-item .pc-trust-desc { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ==========================================================================
   Product cards (featured + shop grid share this)
   ========================================================================== */
.pc-section { padding: 56px 0; background: #000; position: relative; }
@media (min-width: 768px) { .pc-section { padding: 112px 0; } }
.pc-section.is-tight { padding: 56px 0 12px; }
@media (min-width: 768px) { .pc-section.is-tight { padding: 112px 0 0; } }

.pc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .pc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .pc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.pc-card {
  display: flex; flex-direction: column; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(192,192,192,0.12);
  background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
}
.pc-card:hover { border-color: rgba(192,192,192,0.5); box-shadow: 0 0 50px rgba(192,192,192,0.12); transform: translateY(-2px); }
.pc-card-media {
  position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 168px; padding: 16px 0 8px;
  background: radial-gradient(ellipse at 50% 100%, rgba(192,192,192,0.08) 0%, rgba(0,0,0,0) 70%);
}
.pc-card-media img { position: relative; z-index: 1; height: 196px; width: 100%; object-fit: contain; filter: drop-shadow(0 0 18px rgba(212,178,106,0.12)); }
.pc-card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; border-top: 1px solid rgba(192,192,192,0.08); }
.pc-card-cat { align-self: flex-start; margin-bottom: 10px; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; background: rgba(192,192,192,0.1); color: var(--pc-silver); border: 1px solid rgba(192,192,192,0.25); }
.pc-card-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2px; transition: color 0.3s; }
.pc-card:hover .pc-card-title { color: var(--pc-gold); }
.pc-card-dose { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.pc-card-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.pc-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 8px; }
.pc-card-price { font-size: 18px; font-weight: 700; color: var(--pc-silver); font-variant-numeric: tabular-nums; }
.pc-card-cta { padding: 10px 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--pc-gold); color: #000; border: none; cursor: pointer; transition: all 0.3s; }
.pc-card-cta:hover { box-shadow: 0 0 20px rgba(212,178,106,0.5); transform: scale(1.03); }

/* Shop grid card (slightly different proportions / square media) */
.pc-shop-card { background: var(--pc-card); border: 1px solid #5a5a5a; box-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 10px 28px rgba(0,0,0,0.4); border-radius: 1rem; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.pc-shop-card:hover { border-color: #7a7a7a; box-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 16px 36px rgba(0,0,0,0.5); transform: translateY(-3px); }
.pc-shop-card-media {
  position: relative; width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(160deg, #1a1a1a 0%, #232323 35%, #2e2e2e 50%, #232323 65%, #161616 100%);
}
.pc-shop-card-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 45% at 50% 52%, rgba(212,178,106,0.12) 0%, rgba(212,178,106,0.04) 45%, transparent 70%); pointer-events: none; }
.pc-shop-card-media img { position: relative; z-index: 1; width: 100%; height: 80%; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(192,192,192,0.12)); }
.pc-shop-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.pc-shop-card-body { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; border-top: 1px solid rgba(192,192,192,0.1); }
.pc-shop-card-toprow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.pc-shop-card-toprow .dose { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); flex-shrink: 0; }
.pc-shop-card-title { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; color: rgba(255,255,255,0.92); }
.pc-shop-card-desc { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.4); margin-bottom: 14px; flex-grow: 1; }
@media (max-width: 767px) { .pc-shop-card-desc { display: none; } }
.pc-shop-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
@media (max-width: 767px) { .pc-shop-card-foot { flex-direction: column; align-items: stretch; } }
.pc-shop-card-price { font-size: 16px; font-weight: 700; color: var(--pc-silver); font-variant-numeric: tabular-nums; }
.pc-btn-addcart, a.pc-btn-details {
  padding: 8px 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: var(--pc-radius-sm);
  background: var(--pc-gold); color: #000; border: 1px solid transparent; box-shadow: 0 0 14px rgba(212,178,106,0.18); cursor: pointer; text-align: center; transition: all 0.3s;
}
.pc-btn-addcart:hover { background: var(--pc-gold-light); box-shadow: 0 0 20px rgba(212,178,106,0.35); }
.pc-btn-addcart.is-added { background: rgba(212,178,106,0.15); color: var(--pc-gold); border: 1.5px solid var(--pc-gold); box-shadow: none; }
a.pc-btn-details { background: rgba(192,192,192,0.06); color: rgba(255,255,255,0.6); border: 1px solid rgba(192,192,192,0.2); box-shadow: none; }
a.pc-btn-details:hover { background: rgba(192,192,192,0.12); }

/* ==========================================================================
   Shop page (WooCommerce archive)
   ========================================================================== */
.pc-shop-header { position: relative; padding: 128px 0 64px; overflow: hidden; text-align: center; }
.pc-shop-header::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(192,192,192,0.08) 0%, transparent 60%); pointer-events: none; }
.pc-shop-controls { position: sticky; top: 62px; z-index: 40; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(192,192,192,0.08); }
.pc-shop-controls-inner { display: flex; flex-direction: column; gap: 12px; padding: 10px 0; }
@media (min-width: 768px) { .pc-shop-controls-inner { flex-direction: row; align-items: center; padding: 16px 0; } }
.pc-cat-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; flex: 1; overflow-x: auto; }
@media (max-width: 767px) { .pc-cat-pills { flex-wrap: nowrap; } }
.pc-cat-pill { padding: 7px 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; white-space: nowrap; cursor: pointer; background: rgba(192,192,192,0.06); color: rgba(255,255,255,0.5); border: 1px solid rgba(192,192,192,0.15); transition: all 0.2s; }
.pc-cat-pill.is-active { background: var(--pc-silver); color: #000; border-color: var(--pc-silver); }
.pc-shop-tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.pc-search-wrap { position: relative; }
.pc-search-wrap input { padding: 6px 12px 6px 32px; font-size: 11px; font-weight: 500; border-radius: 4px; width: 144px; color: rgba(255,255,255,0.7); background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.15); outline: none; }
.pc-search-wrap input:focus { border-color: var(--pc-gold); box-shadow: 0 0 10px rgba(212,178,106,0.2); }
.pc-search-wrap svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.3); width: 14px; height: 14px; }
.pc-sort-select { padding: 6px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; color: rgba(255,255,255,0.5); background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.15); outline: none; }
.pc-shop-results-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.pc-shop-results-row p { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.pc-shop-results-row .pc-line { flex: 1; height: 1px; margin: 0 24px; background: linear-gradient(to right, rgba(192,192,192,0.15), transparent); }
.pc-shop-empty { text-align: center; padding: 128px 0; }
.pc-shop-empty p:first-child { color: rgba(255,255,255,0.2); font-size: 18px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pc-shop-empty p:last-child { color: rgba(255,255,255,0.15); font-size: 14px; margin-top: 8px; }

/* ==========================================================================
   Single product
   ========================================================================== */
.pc-product-page { padding: 112px 0 96px; }
@media (min-width: 768px) { .pc-product-page { padding: 128px 0 96px; } }
.pc-breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 48px; }
.pc-breadcrumb:hover { color: var(--pc-gold); }
.pc-product-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .pc-product-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.pc-product-visual { position: relative; border-radius: 1.5rem; overflow: hidden; border: 1px solid rgba(212,178,106,0.25); display: flex; align-items: center; justify-content: center; min-height: 480px; background: radial-gradient(ellipse at 50% 60%, rgba(212,178,106,0.07) 0%, rgba(10,10,10,0) 70%), rgba(10,10,10,0.9); }
.pc-product-visual img { position: relative; z-index: 1; height: 320px; width: 100%; object-fit: contain; filter: drop-shadow(0 0 40px rgba(212,178,106,0.12)); }
.pc-product-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.pc-product-trust div { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--pc-radius-md); background: rgba(192,192,192,0.05); border: 1px solid rgba(192,192,192,0.1); }
.pc-product-trust svg { color: var(--pc-silver); width: 16px; height: 16px; flex-shrink: 0; }
.pc-product-trust span { color: rgba(255,255,255,0.5); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.pc-product-cat { display: inline-block; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; background: rgba(212,178,106,0.1); color: var(--pc-gold); border: 1px solid rgba(212,178,106,0.35); margin-bottom: 20px; }
.pc-product-title { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
@media (min-width: 768px) { .pc-product-title { font-size: 48px; } }
.pc-product-dose { color: rgba(255,255,255,0.3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.pc-product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pc-product-desc { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
.pc-product-divider { height: 1px; margin-bottom: 40px; background: linear-gradient(to right, rgba(192,192,192,0.2), transparent); }
.pc-spec-title { font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.pc-spec-title svg { color: var(--pc-silver); width: 16px; height: 16px; }
.pc-spec-table { border-radius: var(--pc-radius-lg); overflow: hidden; border: 1px solid rgba(192,192,192,0.1); margin-bottom: 40px; }
.pc-spec-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 24px; border-bottom: 1px solid rgba(192,192,192,0.07); }
.pc-spec-row:last-child { border-bottom: none; }
.pc-spec-row:nth-child(odd) { background: rgba(192,192,192,0.03); }
.pc-spec-row .label { color: rgba(255,255,255,0.35); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; width: 176px; flex-shrink: 0; padding-top: 2px; }
.pc-spec-row .value { color: rgba(255,255,255,0.75); font-size: 14px; font-family: monospace; }
.pc-spec-row a.value { color: var(--pc-gold); display: inline-flex; align-items: center; gap: 6px; }
.pc-blend-card { border-radius: var(--pc-radius-lg); border: 1px solid rgba(192,192,192,0.12); padding: 20px; background: rgba(192,192,192,0.03); margin-bottom: 12px; }
.pc-blend-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.pc-blend-head .name { color: #fff; font-weight: 700; font-size: 16px; }
.pc-blend-meta { display: flex; align-items: center; gap: 12px; }
.pc-blend-dose { padding: 4px 10px; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }
.pc-blend-cas { font-size: 9px; font-family: monospace; color: rgba(255,255,255,0.25); }
.pc-blend-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }
.pc-recon-note { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; border-radius: var(--pc-radius-md); margin-bottom: 40px; background: rgba(255,200,0,0.06); border: 1px solid rgba(255,200,0,0.2); }
.pc-recon-note svg { color: #FFD200; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.pc-recon-note p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.pc-recon-note strong { color: #eab308; font-weight: 600; }
.pc-buybox { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-radius: var(--pc-radius-lg); border: 1px solid rgba(212,178,106,0.2); background: rgba(10,10,10,0.9); flex-wrap: wrap; gap: 16px; }
.pc-buybox-price { font-size: 26px; font-weight: 700; color: var(--pc-silver); font-variant-numeric: tabular-nums; }
.pc-buybox-dose { color: rgba(255,255,255,0.3); font-size: 12px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.pc-buybox-actions { display: flex; align-items: center; gap: 12px; }
.pc-outofstock-pill { padding: 12px 28px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; background: rgba(192,192,192,0.06); color: var(--pc-silver); border: 1px solid rgba(192,192,192,0.35); }

/* ==========================================================================
   Cart / Checkout / My Account (WooCommerce restyle)
   ========================================================================== */
.pc-wc-page { padding: 112px 0 80px; min-height: 60vh; }
@media (max-width: 767px) { .pc-wc-page { padding: 96px 0 60px; } }
.pc-wc-page h1.page-title, .pc-wc-page .entry-title { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px; }

/* WooCommerce table/base overrides */
.pc-wc-page table.shop_table { width: 100%; border-collapse: collapse; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14); border-radius: var(--pc-radius-lg); overflow: hidden; }
.pc-wc-page table.shop_table th { text-align: left; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); padding: 14px 16px; border-bottom: 1px solid rgba(192,192,192,0.1); }
.pc-wc-page table.shop_table td { padding: 16px; border-bottom: 1px solid rgba(192,192,192,0.08); color: rgba(255,255,255,0.8); font-size: 13px; vertical-align: middle; }
.pc-wc-page table.shop_table td.product-thumbnail img { width: 64px; border-radius: var(--pc-radius-sm); border: 1px solid rgba(192,192,192,0.15); background: rgba(192,192,192,0.05); }
.pc-wc-page table.shop_table td.product-name a { color: #fff; font-weight: 600; }
.pc-wc-page table.shop_table td.product-remove a { color: rgba(255,255,255,0.35); font-size: 18px; }
.pc-wc-page table.shop_table td.product-remove a:hover { color: #ff6b6b; }
.pc-wc-page .quantity input.qty {
  width: 56px; padding: 8px; text-align: center; background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.2); border-radius: var(--pc-radius-sm); color: #fff;
}
.pc-wc-page .coupon { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pc-wc-page .coupon .input-text { padding: 10px 14px; background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.2); border-radius: var(--pc-radius-sm); color: #fff; }
.pc-wc-page .cart-collaterals { margin-top: 32px; }
.pc-wc-page .cart_totals { border-radius: var(--pc-radius-lg); padding: 24px; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14); max-width: 420px; margin-left: auto; }
.pc-wc-page .cart_totals h2 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.pc-wc-page .cart_totals table { width: 100%; }
.pc-wc-page .cart_totals table th, .pc-wc-page .cart_totals table td { border: none; padding: 8px 0; font-size: 12px; }
.pc-wc-page .cart_totals table th { color: rgba(255,255,255,0.4); font-weight: 500; text-align: left; }
.pc-wc-page .cart_totals table td { text-align: right; color: rgba(255,255,255,0.8); font-weight: 600; }
.pc-wc-page .cart_totals .order-total th, .pc-wc-page .cart_totals .order-total td { border-top: 1px solid rgba(192,192,192,0.15); padding-top: 14px; color: var(--pc-silver); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; }
.pc-wc-page .cart_totals .order-total td { font-size: 16px; }
.pc-wc-page .wc-proceed-to-checkout a.checkout-button {
  display: block; width: 100%; text-align: center; padding: 16px; margin-top: 16px; border-radius: var(--pc-radius-md);
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--pc-gold); color: #000 !important; box-shadow: 0 0 26px rgba(212,178,106,0.3);
}
.pc-wc-page a.button, .pc-wc-page button.button, .pc-wc-page input.button {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--pc-radius-sm);
  background: var(--pc-silver); color: #000 !important; font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s;
}
.pc-wc-page a.button:hover, .pc-wc-page button.button:hover, .pc-wc-page input.button:hover { background: #fff; box-shadow: 0 0 20px rgba(192,192,192,0.35); }
.pc-wc-page .woocommerce-message, .pc-wc-page .woocommerce-info, .pc-wc-page .woocommerce-error, .pc-wc-page .woocommerce-noreviews {
  list-style: none; padding: 14px 20px; border-radius: var(--pc-radius-md); background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.2); color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.pc-wc-page .woocommerce-error { background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.3); color: #FF9B9B; }
.pc-wc-page .woocommerce-error li { list-style: none; }

/* Checkout: place WooCommerce's default checkout DOM into a 2-column layout
   (billing/shipping cards on the left, sticky order review on the right)
   without overriding the form template — keeps every gateway/plugin hook intact. */
.pc-wc-page form.checkout.woocommerce-checkout {
  display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start;
}
@media (max-width: 1023px) { .pc-wc-page form.checkout.woocommerce-checkout { grid-template-columns: 1fr; } }
.pc-wc-page form.checkout #customer_details { grid-column: 1; grid-row: 1 / span 3; display: flex; flex-direction: column; gap: 24px; }
.pc-wc-page form.checkout #customer_details .col2-set,
.pc-wc-page form.checkout #customer_details.col2-set { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.pc-wc-page form.checkout #customer_details .col-1,
.pc-wc-page form.checkout #customer_details .col-2 { width: 100%; float: none; border-radius: var(--pc-radius-lg); padding: 24px; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14); }
.pc-wc-page form.checkout #order_review_heading { grid-column: 2; grid-row: 1; font-size: 15px; font-weight: 700; color: #fff; }
.pc-wc-page form.checkout #order_review { grid-column: 2; grid-row: 2; }
@media (min-width: 1024px) { .pc-wc-page form.checkout #order_review_heading, .pc-wc-page form.checkout #order_review { position: sticky; top: 112px; } }
.pc-wc-page form.checkout .woocommerce-additional-fields { grid-column: 1; margin-top: 0; border-radius: var(--pc-radius-lg); padding: 24px; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14); }
.pc-wc-page form.checkout .woocommerce-additional-fields > h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }

/* Checkout card sections */
.pc-checkout-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .pc-checkout-grid { grid-template-columns: 1fr 380px; gap: 32px; } }
.pc-checkout-main { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.pc-checkout-side { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1024px) { .pc-checkout-side { position: sticky; top: 112px; } }
.pc-section-card { border-radius: var(--pc-radius-lg); padding: 24px; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14); }
@media (max-width: 767px) { .pc-section-card { padding: 16px; } }
.pc-section-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pc-section-card-head .icon { width: 32px; height: 32px; border-radius: var(--pc-radius-sm); display: flex; align-items: center; justify-content: center; background: rgba(192,192,192,0.08); border: 1px solid rgba(192,192,192,0.25); color: var(--pc-gold); flex-shrink: 0; }
.pc-section-card-head h2, .pc-section-card-head h3 { color: #fff; font-weight: 700; font-size: 15px; }

.pc-wc-page .woocommerce-billing-fields h3,
.pc-wc-page .woocommerce-shipping-fields h3,
.pc-wc-page .woocommerce-additional-fields h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.pc-wc-page .woocommerce-checkout .form-row { margin-bottom: 16px; }
.pc-wc-page .woocommerce-checkout label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.pc-wc-page .woocommerce-checkout label .required { color: var(--pc-silver); text-decoration: none; }
.pc-wc-page .woocommerce-checkout input[type=text],
.pc-wc-page .woocommerce-checkout input[type=email],
.pc-wc-page .woocommerce-checkout input[type=tel],
.pc-wc-page .woocommerce-checkout input[type=password],
.pc-wc-page .woocommerce-checkout textarea,
.pc-wc-page .woocommerce-checkout select,
.pc-wc-page .select2-container .select2-selection--single {
  width: 100%; padding: 12px 16px; border-radius: var(--pc-radius-md); font-size: 13px; color: #fff !important;
  background: rgba(192,192,192,0.04) !important; border: 1px solid rgba(192,192,192,0.18) !important; outline: none; transition: all 0.2s; height: auto !important;
}
.pc-wc-page .select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff; line-height: 44px; }
.pc-wc-page .select2-container .select2-selection--single { height: 44px !important; }
.pc-wc-page .woocommerce-checkout input:focus, .pc-wc-page .woocommerce-checkout textarea:focus { border-color: var(--pc-gold) !important; box-shadow: 0 0 10px rgba(212,178,106,0.15); }
.pc-wc-page #ship-to-different-address label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; text-transform: none; letter-spacing: normal; color: rgba(255,255,255,0.7); }
.pc-wc-page .woocommerce-shipping-fields { margin-top: 16px; }

.pc-wc-page #order_review, .pc-wc-page table.woocommerce-checkout-review-order-table {
  border-radius: var(--pc-radius-lg); background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14);
}
.pc-wc-page table.woocommerce-checkout-review-order-table { padding: 24px; border: none; background: none; }
.pc-wc-page #order_review { padding: 24px; }
.pc-wc-page table.woocommerce-checkout-review-order-table th,
.pc-wc-page table.woocommerce-checkout-review-order-table td { border: none; padding: 8px 0; }
.pc-wc-page #payment { background: rgba(192,192,192,0.03); border-radius: var(--pc-radius-lg); border: 1px solid rgba(192,192,192,0.14); padding: 4px; margin-top: 16px; }
.pc-wc-page #payment ul.payment_methods { padding: 12px; }
.pc-wc-page #payment ul.payment_methods li { list-style: none; padding: 10px 4px; border-bottom: 1px solid rgba(192,192,192,0.08); }
.pc-wc-page #payment ul.payment_methods li:last-child { border-bottom: none; }
.pc-wc-page #payment ul.payment_methods li label { text-transform: none; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: normal; display: inline; }
.pc-wc-page #payment .payment_box { background: rgba(192,192,192,0.05); border-radius: var(--pc-radius-sm); padding: 14px; margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.6); }
.pc-wc-page #payment #place_order {
  width: 100%; margin-top: 16px; padding: 18px; border-radius: var(--pc-radius-md); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--pc-silver) !important; color: #000 !important; box-shadow: 0 0 26px rgba(192,192,192,0.35);
}
.pc-wc-page .woocommerce-terms-and-conditions-wrapper { margin: 16px 0; }
.pc-wc-page .woocommerce-form__label-for-checkbox { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.6); text-transform: none; letter-spacing: normal; }
.pc-wc-page .woocommerce-form__label-for-checkbox input { width: 16px; height: 16px; accent-color: var(--pc-silver); }

/* Order received / thank you */
.pc-order-success { display: flex; align-items: center; justify-content: center; min-height: 50vh; padding: 40px 20px; }
.pc-order-success-card { width: 100%; max-width: 520px; margin: 0 auto; border-radius: 1.5rem; padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.16); box-shadow: 0 0 80px rgba(192,192,192,0.06); }
@media (max-width: 767px) { .pc-order-success-card { padding: 24px; } }
.pc-order-success-icon { width: 96px; height: 96px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: rgba(212,178,106,0.08); border: 1.5px solid rgba(212,178,106,0.45); box-shadow: 0 0 50px rgba(212,178,106,0.35); color: var(--pc-gold); }
.pc-order-success h1 { font-size: 28px; }
.pc-order-success .order-num { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(192,192,192,0.7); margin-top: 8px; }
.pc-order-info-box { width: 100%; border-radius: var(--pc-radius-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px; text-align: left; background: rgba(192,192,192,0.04); border: 1px solid rgba(192,192,192,0.14); }

/* My account */
.pc-wc-page .woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pc-wc-page .woocommerce-MyAccount-navigation li { list-style: none; }
.pc-wc-page .woocommerce-MyAccount-navigation li a { display: block; padding: 8px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.15); color: rgba(255,255,255,0.6); }
.pc-wc-page .woocommerce-MyAccount-navigation li.is-active a { background: var(--pc-silver); color: #000; }
.pc-wc-page form.login, .pc-wc-page form.register, .pc-wc-page form.woocommerce-ResetPassword {
  max-width: 440px; margin: 0 auto; border-radius: var(--pc-radius-lg); padding: 32px; background: var(--pc-card); border: 1px solid rgba(192,192,192,0.14);
}
.pc-wc-page form.login p, .pc-wc-page form.register p { margin-bottom: 16px; }
.pc-wc-page form.login label, .pc-wc-page form.register label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.pc-wc-page form.login input[type=text], .pc-wc-page form.login input[type=password], .pc-wc-page form.login input[type=email],
.pc-wc-page form.register input[type=text], .pc-wc-page form.register input[type=password], .pc-wc-page form.register input[type=email] {
  width: 100%; padding: 12px 16px; border-radius: var(--pc-radius-md); background: rgba(192,192,192,0.04); border: 1px solid rgba(192,192,192,0.18); color: #fff; outline: none;
}
.pc-wc-page form.login .button, .pc-wc-page form.register .button { width: 100%; justify-content: center; margin-top: 8px; }
.pc-wc-page .lost_password a, .pc-wc-page .woocommerce-LostPassword a { color: var(--pc-gold); font-size: 12px; }
.pc-wc-page .u-columns { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .pc-wc-page .u-columns { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Content pages (About / Contact / FAQ / COAs / Legal)
   ========================================================================== */
.pc-page-hero { position: relative; padding: 160px 0 64px; overflow: hidden; text-align: center; }
@media (min-width: 768px) { .pc-page-hero { padding: 192px 0 96px; } }
.pc-page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(192,192,192,0.08) 0%, transparent 70%); }
.pc-page-hero .inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.pc-page-hero h1 { font-size: 36px; line-height: 1.1; margin-bottom: 24px; }
@media (min-width: 768px) { .pc-page-hero h1 { font-size: 60px; } }
.pc-page-hero p.lead { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto; }
@media (min-width: 768px) { .pc-page-hero p.lead { font-size: 18px; } }

.pc-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.pc-wide { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

.pc-feature-panel {
  border-radius: 1.5rem; padding: 48px 32px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(192,192,192,0.08) 0%, rgba(192,192,192,0.02) 100%); border: 1px solid rgba(192,192,192,0.25);
}
@media (min-width: 768px) { .pc-feature-panel { padding: 80px 64px; } }
.pc-feature-panel .icon-badge { width: 64px; height: 64px; border-radius: var(--pc-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; background: rgba(192,192,192,0.1); border: 1px solid rgba(192,192,192,0.2); color: var(--pc-silver); }
.pc-feature-panel h2 { font-size: 30px; margin-bottom: 24px; }
@media (min-width: 768px) { .pc-feature-panel h2 { font-size: 36px; } }
.pc-feature-panel p { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; margin-bottom: 24px; }
@media (min-width: 768px) { .pc-feature-panel p { font-size: 20px; } }

.pc-why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .pc-why-grid { grid-template-columns: 1fr 1fr; } }
.pc-why-card { border-radius: 1.5rem; padding: 32px; border: 1px solid rgba(192,192,192,0.16); }
@media (min-width: 768px) { .pc-why-card { padding: 40px; } }
.pc-why-card .icon-badge { width: 56px; height: 56px; border-radius: var(--pc-radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; background: rgba(192,192,192,0.1); border: 1px solid rgba(192,192,192,0.25); color: var(--pc-gold); }
.pc-why-card h3 { font-size: 20px; margin-bottom: 12px; }
.pc-why-card p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; }

.pc-cta-panel { border-radius: 1.5rem; padding: 40px 32px; text-align: center; background: rgba(10,10,10,0.8); border: 1px solid rgba(192,192,192,0.15); box-shadow: 0 0 40px rgba(192,192,192,0.05); }
@media (min-width: 768px) { .pc-cta-panel { padding: 64px; } }
.pc-cta-panel h2 { font-size: 30px; margin-bottom: 24px; }
@media (min-width: 768px) { .pc-cta-panel h2 { font-size: 48px; } }
.pc-cta-panel p { color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1.7; max-width: 640px; margin: 0 auto 40px; }

.pc-disclaimer-block { border-radius: 1.5rem; overflow: hidden; background: #000; border: 1px solid rgba(212,178,106,0.35); box-shadow: 0 0 30px rgba(212,178,106,0.08); }
.pc-disclaimer-block .head { padding: 20px 32px; text-align: center; background: rgba(212,178,106,0.06); border-bottom: 1px solid rgba(212,178,106,0.2); }
.pc-disclaimer-block .head p { font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pc-gold); }
.pc-disclaimer-block .body { padding: 32px; text-align: center; }
.pc-disclaimer-block .body p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.7; max-width: 700px; margin: 0 auto; }

/* Contact */
.pc-mail-card { border-radius: 1.5rem; padding: 48px 32px; text-align: center; background: linear-gradient(135deg, rgba(192,192,192,0.12) 0%, rgba(192,192,192,0.03) 100%); border: 1px solid rgba(192,192,192,0.4); box-shadow: 0 0 60px rgba(192,192,192,0.12); }
.pc-mail-card .icon-badge { width: 64px; height: 64px; border-radius: var(--pc-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; background: rgba(192,192,192,0.12); border: 1px solid rgba(192,192,192,0.3); color: var(--pc-silver); }
.pc-mail-card h2 { font-size: 26px; margin-bottom: 12px; }
.pc-mail-card .email { font-size: 20px; font-weight: 600; color: var(--pc-silver); text-shadow: 0 0 30px rgba(192,192,192,0.35); margin-bottom: 36px; word-break: break-all; }
.pc-info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 768px) { .pc-info-grid { grid-template-columns: 1fr 1fr; } }
.pc-reminder-row { display: flex; align-items: flex-start; gap: 16px; border-radius: var(--pc-radius-lg); padding: 20px; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; }
.pc-reminder-row .icon-badge { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--pc-radius-md); display: flex; align-items: center; justify-content: center; background: rgba(192,192,192,0.1); border: 1px solid rgba(192,192,192,0.2); color: var(--pc-silver); }
.pc-reminder-row h3 { font-size: 15px; margin-bottom: 4px; }
.pc-reminder-row p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }
.pc-reminder-row a { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pc-gold); }

/* FAQ */
.pc-faq-search { position: relative; max-width: 560px; margin: 40px auto 0; }
.pc-faq-search input { width: 100%; padding: 16px 20px 16px 48px; border-radius: 1rem; font-size: 14px; color: #fff; background: rgba(255,255,255,0.03); border: 1px solid rgba(192,192,192,0.18); outline: none; }
.pc-faq-search input:focus { border-color: var(--pc-gold); box-shadow: 0 0 24px rgba(212,178,106,0.15); }
.pc-faq-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: rgba(192,192,192,0.5); width: 16px; height: 16px; }
.pc-faq-item { border-radius: var(--pc-radius-lg); border: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px; overflow: hidden; }
.pc-faq-item.is-open { border-color: var(--pc-gold); box-shadow: 0 0 20px rgba(212,178,106,0.15); }
.pc-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; color: #fff; font-weight: 600; font-size: 15px; text-align: left; cursor: pointer; }
.pc-faq-q:hover { color: var(--pc-gold); }
.pc-faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: rgba(255,255,255,0.4); }
.pc-faq-item.is-open .pc-faq-q svg { transform: rotate(180deg); color: var(--pc-gold); }
.pc-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.pc-faq-item.is-open .pc-faq-a { max-height: 400px; }
.pc-faq-a-inner { padding: 0 24px 24px; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

/* COAs */
.pc-coa-filters { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
@media (min-width: 768px) { .pc-coa-filters { flex-direction: row; align-items: center; justify-content: space-between; } }
.pc-coa-filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-coa-filter-pill { padding: 10px 20px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: rgba(192,192,192,0.05); color: rgba(255,255,255,0.5); border: 1px solid rgba(192,192,192,0.15); cursor: pointer; }
.pc-coa-filter-pill.is-active { background: var(--pc-silver); color: #000; box-shadow: 0 0 20px rgba(192,192,192,0.3); }
.pc-coa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 1024px) { .pc-coa-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1280px) { .pc-coa-grid { grid-template-columns: repeat(4, 1fr); } }
.pc-coa-card { border-radius: 1.5rem; overflow: hidden; background: rgba(0,0,0,0.8); border: 1px solid rgba(192,192,192,0.12); }
.pc-coa-card-media { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 16px; background: radial-gradient(circle at 50% 42%, rgba(192,192,192,0.06), transparent 70%); }
.pc-coa-card-media img { object-fit: contain; width: 100%; height: 100%; }
.pc-coa-status { position: absolute; top: 10px; right: 10px; }
.pc-coa-card-body { padding: 16px; border-top: 1px solid rgba(192,192,192,0.08); }
.pc-coa-card-body h3 { font-size: 15px; }
.pc-coa-card-body .strength { color: rgba(255,255,255,0.4); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; margin: 2px 0 12px; }
.pc-coa-meta-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 6px; }
.pc-coa-meta-row .label { color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.05em; }
.pc-coa-meta-row .value { color: rgba(255,255,255,0.6); font-weight: 600; }
.pc-status-badge { display: inline-block; padding: 4px 12px; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 999px; }
.pc-status-verified { color: #7CFC9B; background: rgba(80,220,120,0.08); border: 1px solid rgba(80,220,120,0.3); }
.pc-status-pending { color: #E8D28A; background: rgba(230,200,110,0.08); border: 1px solid rgba(230,200,110,0.3); }
.pc-status-soon { color: var(--pc-silver); background: rgba(192,192,192,0.08); border: 1px solid rgba(192,192,192,0.25); }

.pc-coa-modal-bg { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
body.pc-coa-modal-open .pc-coa-modal-bg { display: flex; }
.pc-coa-modal { position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; border-radius: 1.5rem; padding: 32px; background: linear-gradient(135deg, rgba(20,20,20,0.98) 0%, rgba(8,8,8,0.98) 100%); border: 1px solid rgba(192,192,192,0.2); box-shadow: 0 0 80px rgba(192,192,192,0.1); }
.pc-coa-modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: rgba(192,192,192,0.08); border: 1px solid rgba(192,192,192,0.2); color: rgba(255,255,255,0.6); cursor: pointer; }
.pc-coa-modal-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: var(--pc-radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: rgba(192,192,192,0.03); border: 1px dashed rgba(192,192,192,0.2); }
.pc-coa-modal-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.pc-coa-modal-meta div { border-radius: var(--pc-radius-lg); padding: 12px 16px; background: rgba(192,192,192,0.04); border: 1px solid rgba(192,192,192,0.12); }
.pc-coa-modal-meta .label { color: rgba(255,255,255,0.35); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.pc-coa-modal-meta .value { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; }

/* Legal pages (Terms / Privacy / Research Policy / Compliance) */
.pc-legal-banner { display: flex; align-items: flex-start; gap: 16px; border-radius: var(--pc-radius-lg); padding: 20px 32px; margin-bottom: 56px; background: rgba(255,40,40,0.06); border: 1px solid rgba(255,60,60,0.2); }
.pc-legal-banner p { font-size: 14px; line-height: 1.6; color: rgba(255,130,130,0.9); }
.pc-legal-banner strong { color: #fff; }
.pc-legal-sections { display: flex; flex-direction: column; gap: 32px; }
.pc-legal-section { border-radius: var(--pc-radius-lg); padding: 32px; background: rgba(192,192,192,0.03); border: 1px solid rgba(192,192,192,0.1); }
.pc-legal-section.is-alt { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.06); }
.pc-legal-section-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.pc-legal-num { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; background: rgba(192,192,192,0.1); color: var(--pc-silver); border: 1px solid rgba(192,192,192,0.2); flex-shrink: 0; margin-top: 2px; }
.pc-legal-section h2 { font-size: 18px; }
.pc-legal-body { padding-left: 40px; }
.pc-legal-body p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.pc-legal-body .label { color: rgba(255,255,255,0.4); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 12px; }
.pc-legal-body ul { display: flex; flex-direction: column; gap: 8px; }
.pc-legal-body li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.55); }
.pc-legal-body li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--pc-silver); margin-top: 7px; flex-shrink: 0; }
.pc-legal-note { font-size: 12px; line-height: 1.6; font-style: italic; color: rgba(255,255,255,0.35); border-left: 2px solid rgba(192,192,192,0.3); padding-left: 16px; margin-top: 8px; }
.pc-legal-footer { margin-top: 56px; border-radius: var(--pc-radius-lg); padding: 24px 32px; text-align: center; background: rgba(192,192,192,0.03); border: 1px solid rgba(192,192,192,0.1); }
.pc-legal-footer p { color: rgba(255,255,255,0.3); font-size: 12px; line-height: 1.6; }
.pc-legal-stamp { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.pc-legal-stamp span { font-size: 10px; font-weight: 900; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,110,110,0.85); }

/* ==========================================================================
   Featured/why-cards on home (Features.tsx)
   ========================================================================== */
.pc-why-strip { padding: 40px 0 64px; background: #000; }
@media (min-width: 768px) { .pc-why-strip { padding: 64px 0 128px; } }
.pc-why-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 768px) { .pc-why-strip-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.pc-why-strip-card { display: flex; gap: 24px; padding: 32px; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
@media (max-width: 767px) { .pc-why-strip-card { flex-direction: column; gap: 8px; padding: 14px; } }
.pc-why-strip-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: rgba(212,178,106,0.2); transition: box-shadow 0.5s, background 0.5s; }
.pc-why-strip-card:hover::before { background: var(--pc-gold); box-shadow: 0 0 20px rgba(212,178,106,0.6); }
.pc-why-strip-card svg { width: 48px; height: 48px; color: var(--pc-gold); flex-shrink: 0; }
@media (max-width: 767px) { .pc-why-strip-card svg { width: 32px; height: 32px; } }
.pc-why-strip-card h3 { font-size: 20px; margin-bottom: 12px; }
@media (max-width: 767px) { .pc-why-strip-card h3 { font-size: 14px; margin-bottom: 4px; } }
.pc-why-strip-card p { color: rgba(255,255,255,0.5); line-height: 1.6; }
@media (max-width: 767px) { .pc-why-strip-card p { font-size: 12px; } }

/* Lineup showcase */
.pc-lineup { padding: 64px 0 80px; background: #000; }
.pc-lineup-head { text-align: center; margin-bottom: 40px; }
.pc-lineup-head h2 { font-size: 30px; margin: 16px 0 12px; }
@media (min-width: 768px) { .pc-lineup-head h2 { font-size: 36px; } }
.pc-lineup-head p { color: rgba(255,255,255,0.4); font-size: 14px; max-width: 420px; margin: 0 auto; line-height: 1.6; }
.pc-lineup-frame { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 0 100px rgba(192,192,192,0.15), 0 40px 90px rgba(0,0,0,0.6); border: 1px solid rgba(192,192,192,0.12); }
.pc-lineup-frame img { width: 100%; height: auto; display: block; }
.pc-lineup-foot { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pc-lineup-foot p { color: rgba(255,255,255,0.45); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; text-align: center; }
@media (max-width: 639px) { .pc-lineup-foot p { display: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.pc-footer { background: #000; padding-top: 96px; padding-bottom: 48px; position: relative; overflow: hidden; border-top: 1px solid rgba(192,192,192,0.2); }
@media (max-width: 767px) { .pc-footer { padding-top: 48px; padding-bottom: 32px; } }
.pc-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(192,192,192,0.5), transparent); box-shadow: 0 0 15px rgba(192,192,192,0.8); }
.pc-footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 1024px) { .pc-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 80px; } }
.pc-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (min-width: 1024px) { .pc-footer-cols { display: contents; } }
.pc-footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.pc-footer-brand-logo img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(192,192,192,0.45)); }
.pc-footer-brand-logo .top { font-weight: 700; color: #fff; font-size: 22px; letter-spacing: 0.1em; }
.pc-footer-brand-logo .bottom-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.pc-footer-brand-logo .bottom { font-weight: 600; letter-spacing: 0.3em; font-size: 11px; color: var(--pc-silver); }
.pc-footer-brand-logo .rule { height: 1px; width: 36px; background: linear-gradient(to right, var(--pc-silver), transparent); }
.pc-footer p.desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 32px; max-width: 380px; }
.pc-footer-notice { padding: 20px; border-radius: var(--pc-radius-sm); color: rgba(255,255,255,0.8); font-size: 12px; line-height: 1.7; max-width: 380px; border: 1px solid rgba(212,178,106,0.4); border-left: 4px solid var(--pc-gold); background: rgba(212,178,106,0.06); box-shadow: 0 0 24px rgba(212,178,106,0.08); }
.pc-footer-notice strong { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font-weight: 700; color: var(--pc-gold); }
.pc-footer h4 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.pc-footer ul { display: flex; flex-direction: column; gap: 16px; }
.pc-footer ul a, .pc-footer ul button { color: rgba(255,255,255,0.5); font-size: 14px; background: none; border: none; cursor: pointer; padding: 0; }
.pc-footer ul a:hover, .pc-footer ul button:hover { color: var(--pc-gold); }
.pc-footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.3); }
@media (min-width: 768px) { .pc-footer-bottom { flex-direction: row; } }
.pc-footer-bottom .links { display: flex; gap: 24px; }
.pc-footer-bottom a:hover { color: var(--pc-silver); }

/* ==========================================================================
   404
   ========================================================================== */
.pc-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 160px 24px 96px; }
.pc-404 .code { font-size: 96px; font-weight: 800; color: rgba(192,192,192,0.15); line-height: 1; }
.pc-404 h1 { font-size: 28px; margin: 16px 0; }
.pc-404 p { color: rgba(255,255,255,0.5); margin-bottom: 32px; }

/* ==========================================================================
   Misc utility
   ========================================================================== */
.pc-mt-lg { margin-top: 48px; }
.pc-flex-center { display: flex; align-items: center; justify-content: center; }
.pc-visually-loading { opacity: 0.5; pointer-events: none; }
