/* ===== FONTS ===== */
/* Bebas Neue + DM Sans loaded via layout head */

/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #07070a;
  color: #e8e8e8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #07070a; }
::-webkit-scrollbar-thumb { background: #00e5ff; border-radius: 3px; }

/* ===== STICKY NAV ===== */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7,7,10,0.75);
  border-bottom: 1px solid rgba(0,229,255,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #00e5ff;
  text-decoration: none;
  line-height: 1;
}

.logo-o { color: #ff2d7b; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(232,232,232,0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: #00e5ff; }

.nav-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ff2d7b;
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(0,229,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(255,45,123,0.09) 0%, transparent 70%),
    linear-gradient(160deg, #07070a 0%, #0d0d14 50%, #07070a 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  top: 10%; right: 10%;
  filter: blur(60px);
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,123,0.1) 0%, transparent 70%);
  bottom: 10%; right: 20%;
  filter: blur(80px);
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00e5ff;
  margin-bottom: 24px;
}

.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 28px;
}

.headline-accent { color: #00e5ff; }

.hero-sub {
  font-size: 18px;
  color: rgba(232,232,232,0.55);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00e5ff;
  color: #07070a;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  transition: all 0.2s;
  box-shadow: 0 0 24px rgba(0,229,255,0.35);
}

.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 32px rgba(0,229,255,0.6);
  transform: translateY(-2px);
}

.btn-arrow { font-size: 18px; }

.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(232,232,232,0.4); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }

.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(232,232,232,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.trust-icon { color: #00e5ff; font-size: 12px; }
.trust-sep { width: 1px; height: 14px; background: rgba(232,232,232,0.15); }

/* ===== HERO VISUAL (Product Card Float) ===== */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.product-card-float {
  position: relative;
  animation: float-card 6s ease-in-out infinite;
}

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

.card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.2) 0%, rgba(255,45,123,0.1) 50%, transparent 80%);
  filter: blur(30px);
}

.card-inner {
  position: relative;
  width: 280px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,229,255,0.15), 0 20px 60px rgba(0,0,0,0.6);
}

.card-badge-fire {
  position: absolute;
  top: 12px; left: 12px;
  background: #ff2d7b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.card-product-art {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(0,229,255,0.08) 0%, rgba(255,45,123,0.05) 100%);
}

.product-shape {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.6) 0%, rgba(0,229,255,0.1) 100%);
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
  animation: pulse-shape 2s infinite;
}

.product-shape-2 {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.2);
  animation: expand-ring 3s infinite;
}

.product-ring {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,123,0.15);
  animation: expand-ring 3s infinite 0.5s;
}

@keyframes pulse-shape {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0,229,255,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0,229,255,0.7); }
}

@keyframes expand-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.card-info { padding: 20px; }
.card-category { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #00e5ff; margin-bottom: 6px; }
.card-name { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.price-new { font-size: 22px; font-weight: 700; color: #fff; }
.price-old { font-size: 14px; color: rgba(232,232,232,0.35); text-decoration: line-through; }
.card-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #ffb800; font-size: 13px; letter-spacing: 1px; }
.review-count { font-size: 11px; color: rgba(232,232,232,0.4); }

/* ===== HOT NOW SECTION ===== */
.hot-now-section {
  padding: 100px 60px;
  position: relative;
}

.section-header { margin-bottom: 48px; }
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff2d7b;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  color: #fff;
}

/* Countdown Bar */
.countdown-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 6px;
  padding: 16px 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.countdown-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(232,232,232,0.5); }

.countdown-timer { display: flex; align-items: center; gap: 4px; }
.timer-block { display: flex; flex-direction: column; align-items: center; }
.timer-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #00e5ff;
  line-height: 1;
}
.timer-unit { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(232,232,232,0.4); }
.timer-sep { font-size: 22px; color: rgba(0,229,255,0.4); font-weight: 300; margin: 0 2px; }

.countdown-deal {
  margin-left: auto;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: rgba(0,229,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,229,255,0.08);
}

.card-img-wrap {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,13,20,0.8) 0%, rgba(7,7,10,0.8) 100%);
  overflow: hidden;
}

/* CSS Product Art for each card */
.card-art-1 {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00e5ff22, #00e5ff08);
  border: 1px solid rgba(0,229,255,0.3);
  box-shadow: 0 0 30px rgba(0,229,255,0.15);
}

.card-art-2 {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,150,50,0.2) 0%, transparent 70%);
  border: 1px solid rgba(255,150,50,0.3);
  box-shadow: 0 0 30px rgba(255,100,30,0.15);
}

.card-art-3 {
  width: 60px; height: 80px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0,229,255,0.15) 0%, rgba(255,45,123,0.1) 100%);
  border: 1px solid rgba(0,229,255,0.2);
}

.card-art-4 {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255,200,50,0.4);
  border-top-color: transparent;
  animation: spin-slow 4s linear infinite;
  box-shadow: 0 0 20px rgba(255,200,50,0.1);
}

.card-art-5 {
  width: 70px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(100,200,100,0.1) 0%, rgba(100,200,100,0.05) 100%);
  border: 1px solid rgba(100,200,100,0.3);
}

.card-art-6 {
  width: 50px; height: 70px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0,150,255,0.1) 0%, rgba(0,100,200,0.05) 100%);
  border: 1px solid rgba(0,150,255,0.2);
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.card-fire-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #ff2d7b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.stock-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  color: #ffb800;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.card-body { padding: 20px; }
.card-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #00e5ff; margin-bottom: 6px; }
.card-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.card-desc { font-size: 12px; color: rgba(232,232,232,0.45); margin-bottom: 16px; line-height: 1.5; }
.card-footer-row { display: flex; align-items: center; justify-content: space-between; }
.card-pricing { display: flex; align-items: baseline; gap: 8px; }
.c-price { font-size: 20px; font-weight: 700; color: #fff; }
.c-old { font-size: 13px; color: rgba(232,232,232,0.3); text-decoration: line-through; }
.card-rating-sm { font-size: 12px; color: #ffb800; font-weight: 500; }

/* ===== MANIFESTO ===== */
.manifesto-section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.manifesto-bg-element {
  position: absolute;
  right: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,123,0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.manifesto-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,229,255,0.5);
  margin-bottom: 28px;
}

.manifesto-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 40px;
  max-width: 700px;
}

.manifesto-accent { color: #ff2d7b; }

.manifesto-body {
  max-width: 600px;
  margin-bottom: 60px;
}

.manifesto-body p {
  font-size: 17px;
  color: rgba(232,232,232,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.pillar { padding: 28px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; }

.pillar-icon {
  font-size: 28px;
  color: #00e5ff;
  margin-bottom: 16px;
  display: block;
}

.pillar-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.pillar-desc { font-size: 13px; color: rgba(232,232,232,0.45); line-height: 1.6; }

.manifesto-stats {
  display: flex;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #00e5ff;
  line-height: 1;
}

.mstat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(232,232,232,0.35); margin-top: 6px; }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,229,255,0.03) 50%, transparent 100%);
}

.section-title-rev {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 48px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 32px;
}

.review-stars { color: #ffb800; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }

.review-text { font-size: 15px; color: rgba(232,232,232,0.75); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.review-author { font-size: 12px; color: rgba(232,232,232,0.35); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== CLOSING ===== */
.closing-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-bg-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; }

.closing-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00e5ff;
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 28px;
}

.closing-sub { font-size: 17px; color: rgba(232,232,232,0.5); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }

.closing-vision {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,229,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: #00e5ff;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: rgba(232,232,232,0.35); }

.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(232,232,232,0.3); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(232,232,232,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #00e5ff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(232,232,232,0.25);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .hero-visual { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .manifesto-stats { flex-wrap: wrap; gap: 28px; }
  .countdown-deal { display: none; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-top { flex-direction: column; }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-section { padding: 100px 20px 48px; }
  .hot-now-section, .manifesto-section, .reviews-section, .closing-section { padding: 60px 20px; }
  .site-footer { padding: 40px 20px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 64px; }
  .trust-row { flex-wrap: wrap; gap: 12px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links { display: none; }
  .shop-product-grid { grid-template-columns: 1fr; }
  .shop-detail-modal { align-items: flex-end; }
  .shop-detail-panel { border-radius: 16px 16px 0 0; max-height: 85vh; }
  .cart-drawer { width: 100%; }
}

/* ===== SHOP PAGE ===== */
.shop-page {
  min-height: 100vh;
  padding-top: 60px;
}

.shop-header {
  padding: 60px 60px 40px;
  position: relative;
  overflow: hidden;
}

.shop-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.shop-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  color: #fff;
  margin-bottom: 12px;
}

.shop-subtitle {
  font-size: 15px;
  color: rgba(232,232,232,0.45);
  margin-bottom: 32px;
}

/* Shop countdown bar */
.shop-countdown {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 6px;
  padding: 14px 20px;
  width: fit-content;
}

.shop-countdown-icon {
  font-size: 16px;
  color: #ff2d7b;
}

.shop-countdown-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232,232,232,0.5);
  margin-right: 8px;
}

/* Shop product grid */
.shop-grid-section {
  padding: 0 60px 80px;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.shop-card:hover {
  border-color: rgba(0,229,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,229,255,0.1);
}

.shop-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0d0d18 0%, #07070a 100%);
  overflow: hidden;
}

.shop-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.shop-card:hover .shop-product-img {
  transform: scale(1.05);
}

.shop-detail-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.shop-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.shop-card-badge.fire {
  background: #ff2d7b;
  color: #fff;
}

.shop-card-badge.new {
  background: #00e5ff;
  color: #07070a;
}

.shop-card-stock {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: #ffb800;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

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

.shop-card-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00e5ff;
  margin-bottom: 6px;
}

.shop-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.shop-card-desc {
  font-size: 12px;
  color: rgba(232,232,232,0.4);
  margin-bottom: 14px;
  line-height: 1.5;
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.shop-price-new {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.shop-price-old {
  font-size: 13px;
  color: rgba(232,232,232,0.3);
  text-decoration: line-through;
}

.shop-card-rating {
  font-size: 12px;
  color: #ffb800;
  font-weight: 500;
}

/* Product detail modal */
.shop-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,7,10,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.shop-detail-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.shop-detail-panel {
  background: #0d0d18;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.shop-detail-overlay.active .shop-detail-panel {
  transform: scale(1);
}

.shop-detail-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.shop-detail-close:hover { background: rgba(255,255,255,0.15); }

.shop-detail-img {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d18 0%, #07070a 100%);
  border-radius: 16px 16px 0 0;
  position: relative;
}

.shop-detail-body {
  padding: 28px 32px 32px;
}

.shop-detail-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #00e5ff;
  margin-bottom: 10px;
}

.shop-detail-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1;
}

.shop-detail-desc {
  font-size: 14px;
  color: rgba(232,232,232,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.shop-selectors {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.selector-group { display: flex; flex-direction: column; gap: 8px; }
.selector-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232,232,232,0.4);
}

.selector-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.selector-opt {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: transparent;
  color: rgba(232,232,232,0.6);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.selector-opt:hover,
.selector-opt.selected {
  border-color: #00e5ff;
  color: #00e5ff;
  background: rgba(0,229,255,0.08);
}

.shop-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shop-detail-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.shop-detail-price-new {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.shop-detail-price-old {
  font-size: 16px;
  color: rgba(232,232,232,0.3);
  text-decoration: line-through;
}

.btn-add-cart {
  background: #00e5ff;
  color: #07070a;
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}

.btn-add-cart:hover {
  background: #fff;
  box-shadow: 0 0 32px rgba(0,229,255,0.6);
  transform: translateY(-1px);
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  height: 100vh;
  background: #0d0d18;
  border-left: 1px solid rgba(0,229,255,0.15);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,7,10,0.7);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.04em;
}

.cart-close {
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(232,232,232,0.6);
  width: 32px; height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(232,232,232,0.3);
  font-size: 14px;
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: flex-start;
}

.cart-item-art {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 11px;
  color: rgba(232,232,232,0.4);
  margin-bottom: 10px;
}

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

.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: transparent;
  color: rgba(232,232,232,0.7);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: monospace;
}

.qty-btn:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}

.cart-item-qty {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(232,232,232,0.25);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
}

.cart-item-remove:hover { color: #ff2d7b; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #07070a;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(232,232,232,0.5);
}

.cart-summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-checkout {
  width: 100%;
  background: #ff2d7b;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(255,45,123,0.3);
}

.btn-checkout:hover {
  background: #ff4d91;
  box-shadow: 0 0 32px rgba(255,45,123,0.5);
  transform: translateY(-1px);
}

/* Nav cart button */
.cart-btn {
  background: none;
  border: none;
  color: rgba(232,232,232,0.6);
  cursor: pointer;
  position: relative;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.cart-btn:hover { color: #00e5ff; }

.cart-count-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: #ff2d7b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Trust bar on shop page */
.shop-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 60px;
  background: rgba(0,229,255,0.04);
  border-top: 1px solid rgba(0,229,255,0.08);
  border-bottom: 1px solid rgba(0,229,255,0.08);
  overflow-x: auto;
}

.shop-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(232,232,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #00e5ff;
  font-weight: 500;
}

/* Social proof */
.shop-social-proof {
  padding: 60px;
  text-align: center;
}

.sproof-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,229,255,0.5);
  margin-bottom: 24px;
}

.sproof-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sproof-badge {
  font-size: 14px;
  font-weight: 500;
  color: rgba(232,232,232,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sproof-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  flex-shrink: 0;
}

/* CSS art for product shapes in shop cards */
.art-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(0,229,255,0.3);
  border-top-color: rgba(0,229,255,0.8);
  animation: spin-slow 5s linear infinite;
  box-shadow: 0 0 20px rgba(0,229,255,0.15);
}

.art-diamond {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(255,45,123,0.3), rgba(255,45,123,0.05));
  border: 1px solid rgba(255,45,123,0.4);
  transform: rotate(45deg);
  box-shadow: 0 0 24px rgba(255,45,123,0.2);
}

.art-sphere {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,200,80,0.6) 0%, rgba(255,100,30,0.2) 60%, transparent 100%);
  box-shadow: 0 0 30px rgba(255,150,50,0.3);
}

.art-hex {
  width: 70px; height: 80px;
  background: linear-gradient(180deg, rgba(0,229,255,0.2) 0%, rgba(0,180,255,0.1) 100%);
  border: 1px solid rgba(0,229,255,0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 20px rgba(0,229,255,0.15);
}

.art-pyramid {
  width: 0; height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 70px solid rgba(255,80,120,0.2);
  border-top: none;
  filter: drop-shadow(0 0 16px rgba(255,80,120,0.15));
}

.art-torus {
  width: 75px; height: 75px;
  border-radius: 50%;
  border: 18px solid transparent;
  border-color: rgba(150,100,255,0.3);
  background: linear-gradient(#07070a, #07070a) padding-box,
              linear-gradient(135deg, rgba(150,100,255,0.5), rgba(0,229,255,0.3)) border-box;
  box-shadow: 0 0 20px rgba(150,100,255,0.15);
}