/** Shopify CDN: Minification failed

Line 327:0 Unexpected "<"
Line 329:7 Expected ":"
Line 333:7 Expected ":"
Line 342:2 Expected identifier but found "showAdded("
Line 345:9 Unexpected "buyNow("
Line 346:7 Expected ":"
Line 350:23 Unexpected "="
Line 350:43 Expected ":"
Line 350:44 Expected identifier but found ":"
Line 353:9 Unexpected "showAdded("
... and 4 more hidden warnings

**/
/* GLOBAL RESET + BASE */
body {
  background: #0b0b0b;
  color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* CONTAINER */
.product-container {
  display: flex;
  gap: 60px;
  padding: 60px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.product-images img {
  width: 100%;
  border-radius: 12px;
}

/* INFO */
.product-info {
  max-width: 500px;
}

/* TITLE */
.product-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* PRICE */
.price {
  font-size: 22px;
  margin-bottom: 20px;
}

/* BUTTON */
button {
  background: white;
  color: black;
  border: none;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
}

button:hover {
  opacity: 0.9;
}

/* ===== HEADER SYSTEM ===== */

.header {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

/* LOGO */
.site-logo img {
  height: 50px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a, .dropdown-toggle {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.dropdown-toggle:hover {
  opacity: 0.6;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #111;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 12px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
}

/* CART BUTTON */
.cart-nav {
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cart-nav:hover {
  transform: scale(1.05);
}

#cart-count-bubble {
  background: black;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
}
/* ===== HERO SYSTEM ===== */

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
}

.hero-btn {
  padding: 14px 30px;
  margin: 10px;
  border-radius: 8px;
  font-weight: bold;
}

.hero-btn.primary {
  background: white;
  color: black;
}

.hero-btn.secondary {
  border: 2px solid white;
  color: white;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
/* ===== GLOBAL CONSISTENCY ===== */

* {
  box-sizing: border-box;
}

.section {
  padding: 80px 20px;
}

h1,h2,h3 {
  letter-spacing: 0.5px;
}

.card {
  border-radius: 16px;
  transition: all .3s ease;
}

.card:hover {
  transform: translateY(-6px);
}
/* PRODUCT PAGE */

.product-page {
  padding: 100px 40px;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.product-images img {
  width: 100%;
  border-radius: 16px;
}

/* INFO */
.product-title {
  font-size: 32px;
  font-weight: 700;
}

.price {
  font-size: 22px;
  margin: 10px 0;
}

/* TRUST */
.product-trust {
  font-size: 14px;
  opacity: 0.7;
}

/* URGENCY */
.urgency {
  color: #00e5ff;
  margin: 10px 0;
}

/* VARIANT */
.variant-select {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border-radius: 10px;
  background: #111;
  color: white;
  border: 1px solid #222;
}

/* BENEFITS */
.product-benefits {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.85;
}

.product-benefits p {
  margin: 4px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
  }
}
<script>
async function addToCartAjax() {
  const variantId =
    document.getElementById("variant-id")?.value ||
    "{{ product.variants.first.id }}";

  await fetch('/cart/add.js', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      id: variantId,
      quantity: 1
    })
  });

  showAdded();
}

function buyNow() {
  const variantId =
    document.getElementById("variant-id")?.value ||
    "{{ product.variants.first.id }}";

  window.location.href = `/cart/${variantId}:1`;
}

function showAdded() {
  const el = document.getElementById("cart-feedback");
  el.classList.add("show");

  setTimeout(() => {
    el.classList.remove("show");
  }, 2000);
}
</script>

.product-page {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}
/* Hide sticky cart bar */
.cart-drawer,
.cart-notification,
.sticky-cart,
.cart-bar {
  display: none !important;
}