/* ============================================
   WE ARE ENERGY — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --red: #CC1A1A;
  --red-dim: rgba(204, 26, 26, 0.15);
  --red-glow: rgba(204, 26, 26, 0.08);
  --red-border: rgba(204, 26, 26, 0.3);
  --black: #050508;
  --black-card: rgba(255, 255, 255, 0.02);
  --white: #ffffff;
  --gray-100: #e0e0e0;
  --gray-200: #cccccc;
  --gray-300: #999999;
  --gray-400: #777777;
  --gray-500: #666666;
  --gray-600: #555555;
  --gray-700: #444444;
  --gray-800: #333333;
  --gray-900: #1a1a1a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(204, 26, 26, 0.3);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--gray-100);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(204, 26, 26, 0.1);
  height: var(--nav-height);
}

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

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--red);
  letter-spacing: 3px;
}

.nav-logo-text {
  font-size: 9px;
  color: var(--gray-500);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.nav-cart:hover { color: var(--red); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 26, 26, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
  position: relative;
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-size: 15px;
  color: var(--gray-400);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
  position: relative;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid rgba(204, 26, 26, 0.4);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(204, 26, 26, 0.05);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}

.btn-primary:hover {
  background: rgba(204, 26, 26, 0.15);
  border-color: var(--red);
}

/* ============================================
   TAGLINE BAR
   ============================================ */

.tagline-bar {
  border-top: 1px solid rgba(204, 26, 26, 0.08);
  border-bottom: 1px solid rgba(204, 26, 26, 0.08);
  padding: 22px 24px;
  text-align: center;
  background: rgba(204, 26, 26, 0.015);
}

.tagline-bar span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gray-600);
  text-transform: uppercase;
}

/* ============================================
   SECTIONS GRID (HOME)
   ============================================ */

.sections-grid {
  padding: 72px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sections-grid h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 44px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.section-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.section-card:hover {
  border-color: var(--border-hover);
  background: rgba(204, 26, 26, 0.03);
}

.section-card .tag {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-card .enter {
  margin-top: 22px;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   VOI SECTION
   ============================================ */

.voi-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 72px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(204, 26, 26, 0.025) 100%);
  text-align: center;
}

.voi-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.voi-equation {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.voi-section .desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   DISCLAIMERS
   ============================================ */

.disclaimer-bar {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 24px;
}

.disclaimer-bar .disclaimer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.disclaimer-bar h4 {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.disclaimer-bar p {
  font-size: 10px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 10px;
}

.disclaimer-bar p:last-child { margin-bottom: 0; }

.disclaimer-bar .disclaimer-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.disclaimer-bar .disclaimer-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 10px;
  color: var(--gray-700);
  letter-spacing: 1px;
}

.footer .credentials {
  margin-top: 8px;
  font-size: 9px;
  color: var(--gray-800);
}

/* ============================================
   PEPTIDE STOREFRONT
   ============================================ */

.store-header {
  padding: 48px 0 0;
}

.store-header h1 {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
}

.store-header .desc {
  font-size: 14px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* FILTERS */
.store-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 32px 0;
  align-items: center;
}

.filter-btn {
  padding: 8px 22px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.2s;
}

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

.filter-btn.active {
  background: var(--red-dim);
  border-color: var(--red);
  color: var(--red);
}

.filter-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-700);
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}

.product-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.product-card-img {
  height: 220px;
  background: linear-gradient(180deg, rgba(204, 26, 26, 0.05) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.product-card-img img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(204, 26, 26, 0.15));
}

.product-card-img .placeholder-vial {
  width: 56px;
  height: 76px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(204, 26, 26, 0.2), rgba(204, 26, 26, 0.05));
  border: 1px solid rgba(204, 26, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.product-card-img .placeholder-vial .wre-mark {
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--red);
  font-weight: 700;
}

.product-card-img .img-glow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: rgba(204, 26, 26, 0.08);
  border-radius: 50%;
  filter: blur(20px);
}

.product-card-info {
  padding: 18px 22px 22px;
}

.product-card-info h3 {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card-info .dose {
  font-size: 11px;
  color: var(--gray-600);
}

.product-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--red);
  font-weight: 700;
}

.btn-add-cart {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gray-300);
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  font-weight: 600;
}

.btn-add-cart:hover {
  border-color: var(--red);
  color: var(--red);
}

.product-learn-more {
  margin-top: 14px;
  font-size: 9px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.product-card:hover .product-learn-more {
  color: var(--red);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero h1 { font-size: 32px; }
  .hero { min-height: 420px; padding: 60px 24px; }

  .grid-5 { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-card-img { height: 160px; }
  .product-card-info { padding: 12px 16px 16px; }
  .product-card-info h3 { font-size: 11px; }
  .product-price { font-size: 14px; }

  .store-header h1 { font-size: 24px; }
  .store-filters { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 9px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
