:root {
  --bg: #0e0f11;              
  --panel: #16181b;           
  --text: #e4e6e8;            
  --muted: #8c9196;           
  --accent: #b08d57;               
  --border: #2a2d31;          
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

body.age-locked {
  overflow: hidden;
}

header, main, footer {
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; }

header {
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: #121315;
}

.logo-container { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  position: relative; 
}

.logo-container::before {
  content: "";
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: -115px;   
  right: -115px; 
  background: radial-gradient(circle at center,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%);
  filter: blur(12px);
  z-index: 0; 
}

.logo-container img { 
  height: 60px;
  width: auto; 
  z-index: 1; 
  position: relative; 
}

nav a {
  margin-left: 32px;
  font-size: 1rem;
  position: relative;
  font-weight: 600;
  display: inline-block;
  transition: filter 0.2s ease, text-shadow 0.2s ease;
}

nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after { width: 100%; }

.hero {
  max-width: 1100px;
  margin: 120px auto 120px;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

h1, h2, h4, h5, h6 { margin-top: 0; }
h3 { margin-top: 24px; }

.hero-logo {
  margin-bottom: 24px;
  position: relative;
}

.hero-logo img {
  width: clamp(260px, 40vw, 520px);
  height: auto;
  display: inline-block;
  margin: 0 auto;
  position: relative;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.2) 0%,
    rgba(255,255,255,0.1) 40%,
    transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

.hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

section { 
  position: relative; 
  z-index: 1; 
  max-width: 1100px; 
  margin: 80px auto; 
  padding: 0 32px; 
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 40px;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.card.hover-effect { filter: brightness(1.2); }

.card h2 { margin-bottom: 16px; }

.card p { 
  color: var(--muted); 
  font-size: 0.95rem; 
  margin-bottom: 16px; 
}

.specs {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  list-style: none;
  margin-top: 24px;
  padding-left: 20px;
}

.specs li {
  position: relative;
  padding: 2px 6px;
  margin-bottom: 8px;
  border-radius: 4px;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease;
  width: fit-content;
}

.specs li::before {
  content: "▹";
  position: relative;
  left: 0;
  color: var(--accent);
  margin-right: 6px;
}

.specs li:hover {
  background: rgba(47,185,255,0.14);
  color: var(--accent);
}

.products-layout { display: block; }

.products-layout .products-image { margin-top: 16px; }

.products-image img {
  width: auto;
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
}

@media (max-width: 900px) {
  .products-layout { grid-template-columns: 1fr; }
  .products-image { order: -1; }
}

footer {
  border-top: 1px solid var(--border);
  padding: 48px 64px;
  color: var(--muted);
  font-size: 0.85rem;
  background: #121315;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-contact {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-legal-link,
.footer-contact-link {
  color: var(--accent);
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal-link:hover,
.footer-contact-link:hover {
  color: var(--accent);
}

.footer-copied-bubble {
  position: absolute;
  top: -30px;
  left: 50px;
  transform: translateX(-100%);
  background: var(--accent);
  color: #0e0f11;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.footer-logo img { 
  height: 64px; 
  opacity: 0.9; 
  margin-bottom: 4px; 
}

.neon-email {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.copy-email {
  position: relative;
  display: inline-block;
}

.copy-email .copied-bubble {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0e0f11;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.activation-title {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
}

.cta { display: inline-flex; gap: 16px; }

.button {
  padding: 14px 28px;
  min-width: 180px;
  text-align: center;
  letter-spacing: 2px;
  cursor: pointer;
  border: 1px solid var(--accent);
  font-size: 1rem;
  background: transparent; 
  color: var(--accent); 
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.button.buy-now {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 24px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.brand-name {
  color: red;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.brand-red {
  color: red; 
  font-weight: 600;
}

.flag-icon {
  width: 32px;
  height: 18px;
  margin-left: 6px;
  transform: translateY(-2px);
  border-radius: 2px;
}

.made-usa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.add-to-cart {
  margin: 40px 0;
  position: relative;

}

.add-to-cart .cart-bubble {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0e0f11;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}

#age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: var(--text);
  flex-direction: column;
  text-align: center;
  padding: 32px;
}

#age-modal h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

#age-modal button {
  padding: 12px 24px;
  margin: 8px;
  font-size: 1rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  border-radius: 6px;
}

#age-modal button:hover {
  filter: brightness(1.2);
}

#cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  padding: 40px;
  overflow: auto;
}

.cart-content {
  background: #16181b;
  max-width: 600px;
  margin: auto;
  padding: 25px;
  border-radius: 14px;
}

#cart-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-controls input[type="number"] {
  width: 70px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  text-align: center;
}

.cart-controls input[type="number"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cart-total {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.cart-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.remove-btn {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-width: 2px;
}

.remove-btn {
  min-width: unset;
}

.cart-buttons .button {
  padding: 8px 16px;   
  font-size: 0.9rem;   
  min-width: auto;     
}

.add-to-cart.button:active {
  background: var(--accent); 
  color: #ffffff;            
  border-color: var(--accent); 
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.product-quantity {
  width: 60px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 1rem;
  text-align: center;
}

.product-quantity:focus {
  outline: 2px solid var(--accent);
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 10px; 
  margin-top: 10px;
}

.products-section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: -20px;
}

.section-divider {
  width: 100%;
  height: 5px;
  background: var(--accent);
  
}

.product-block {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}



.product-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0 25px;
}

#products {
  padding-bottom: 0px; 
}

.stripe-payment {
  display: flex;
  align-items: center;
  gap: 10px; 
  margin-bottom: 20px;
}

.stripe-logo {
  height: 24px; 
  width: auto;
  display: inline-block;
}

.footer-payments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #8c9196;
  font-size: 13px;
  width: 100%;
}

.payment-icons {
  margin: 8px 0;
}

.payment-icons img {
  height: 40px;
  margin: 0 6px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.payment-icons img:hover {
  opacity: 1;
}

.powered-by {
  font-size: 12px;
  opacity: 0.7;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-top: 100px;
}

.checkout-success main {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 100px;
}

.checkout-success h1 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.checkout-success .cta {
  margin-top: 40px;
}

.tos-page main {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  padding-top: 140px;
}

.tos-page h1 {
  margin-bottom: 20px;
}

.tos-page h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.tos-page h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.tos-page p {
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.tos-page ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.tos-page li {
  margin-bottom: 8px;
  color: var(--muted);
}

body.tos-page main {
  padding-bottom: 40px;
  padding-left: 80px;
  padding-right: 80px;
}

#footer-contact-link {
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.footer-slim {
  min-height: unset;
  padding: 24px 64px;
}

.product-group-header {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 40px 0 16px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  text-align: center;
  scroll-margin-top: 120px;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 32px;
}

.nav-dropdown > a {
  margin-left: 0;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #121315;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 240px;
  z-index: 1001;
  overflow: hidden;
  padding-top: 12px;
  padding-bottom: 8px;
}

.nav-dropdown-menu a {
  display: block;
  margin-left: 0;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 1px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(47,185,255,0.14);
  color: var(--accent);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

#products {
  padding-bottom: 0px;
  scroll-margin-top: 80px;
}