/* ===== RAZIA — unic, smecher, albastru ===== */

:root{
  --bg: #050a17;
  --bg-2: #071026;
  --blue-1: #0a3d91;
  --blue-2: #1e6fd9;
  --blue-electric: #2f8bff;
  --cyan: #4dd8ff;
  --ice: #bfe9ff;
  --white: #f3f8ff;
  --muted: #8fa3c4;
  --glass: rgba(160, 200, 255, 0.06);
  --glass-border: rgba(160, 200, 255, 0.16);
  --shadow-blue: 0 0 60px rgba(47, 139, 255, 0.35);
  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

/* Custom scrollbar */
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, var(--blue-electric), var(--cyan));
  border-radius: 100px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover{ background: var(--cyan); }
html{ scrollbar-color: var(--blue-electric) var(--bg); scrollbar-width: thin; }

body{
  background: var(--bg);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: default;
  position: relative;
}

::selection{ background: var(--blue-electric); color: #030712; }

h1,h2,h3{ font-family: 'Syne', sans-serif; font-weight: 700; letter-spacing: -0.02em; }

a{ color: inherit; text-decoration: none; }

/* ---------- Background canvas + orbs ---------- */
#bg-canvas{
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 20% -10%, #0d1f47 0%, var(--bg) 55%);
}

.grid-overlay{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(160,200,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,200,255,.06) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 78%);
}

/* ---------- Custom cursor ---------- */
@media (pointer: fine){
  html, a, button, input, textarea{ cursor: none; }
}
.cursor-dot{
  position: fixed; top:0; left:0;
  width: 6px; height:6px; border-radius:50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(77,216,255,.8);
  pointer-events:none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: opacity .3s, transform .15s;
}
.cursor-ring{
  position: fixed; top:0; left:0;
  width: 32px; height:32px; border-radius:50%;
  border: 1.5px solid rgba(77,216,255,.55);
  pointer-events:none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, background .3s, opacity .3s;
}
.cursor-ring.hover{
  width: 62px; height:62px;
  background: rgba(77,216,255,.08);
  border-color: var(--cyan);
}
.cursor-ring.click{ transform: translate(-50%,-50%) scale(.8); }
.cursor-dot.hidden, .cursor-ring.hidden{ opacity:0; }
@media (pointer: coarse){
  .cursor-dot, .cursor-ring{ display:none; }
}

.grain{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position: fixed;
  top:0; left:0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,139,255,0.18) 0%, rgba(47,139,255,0) 70%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s;
}

/* ---------- Loader ---------- */
.loader{
  position: fixed; inset:0; z-index: 999;
  background: var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 22px;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-name{
  font-family:'Syne', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--ice), var(--cyan), var(--blue-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 2s linear infinite;
  background-size: 200% auto;
}
.loader-bar{
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar span{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  animation: load 1.4s var(--ease) forwards;
}
@keyframes load{ to{ width:100%; } }
@keyframes shimmer{ to{ background-position: -200% center; } }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 5%;
  transition: background .4s, padding .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  padding: 14px 5%;
  background: rgba(5, 10, 23, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-left, .nav-right{
  display:flex; align-items:center; gap: 18px;
}

.logo{
  font-family:'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.logo .dot{ color: var(--cyan); }
.nav-links{ display:flex; gap: 34px; }
.nav-links a{
  position:relative; font-size:.92rem; color: var(--muted);
  transition: color .3s;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-6px;
  width:0; height:1px; background: var(--cyan);
  transition: width .3s var(--ease);
}
.nav-links a:hover{ color: var(--white); }
.nav-links a:hover::after{ width:100%; }

.nav-cta{
  border: 1px solid var(--glass-border);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: .88rem;
  background: var(--glass);
  transition: all .3s var(--ease);
}
.nav-cta:hover{
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  box-shadow: 0 0 24px rgba(47,139,255,.6);
  color: #04122b;
}

/* ---------- Auth: login button / user chip ---------- */
.auth-wrap{ position: relative; }

.login-btn{
  display:flex; align-items:center; gap:8px;
  padding: 9px 18px 9px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  font-family:'Space Grotesk', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.login-btn svg{ color: var(--cyan); }
.login-btn:hover{
  border-color: var(--blue-electric);
  background: rgba(160,200,255,.12);
  box-shadow: 0 0 20px rgba(47,139,255,.35);
}

.user-chip{
  display:none;
  align-items:center; gap:9px;
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.user-chip:hover{ border-color: var(--blue-electric); background: rgba(160,200,255,.1); }
.user-chip.show{ display:flex; }

.user-avatar{
  width: 28px; height: 28px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan));
  color: #04122b;
  font-family:'Syne', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
}
.user-email{
  font-size: .84rem;
  color: var(--ice);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chip-caret{ color: var(--muted); transition: transform .3s; }
.user-chip.open .chip-caret{ transform: rotate(180deg); }

.user-dropdown{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 16, 38, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(47,139,255,.12);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: all .3s var(--ease);
  z-index: 120;
}
.user-dropdown.show{ opacity:1; transform: translateY(0); visibility: visible; }
.dropdown-label{ font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.dropdown-email{
  font-size: .92rem; color: var(--white); font-weight:600;
  margin: 6px 0 16px;
  word-break: break-all;
}
.dropdown-logout{
  display:flex; align-items:center; gap: 8px;
  width:100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255,80,80,.06);
  color: #ffb3b3;
  font-family:'Space Grotesk', sans-serif;
  font-size: .86rem; font-weight:600;
  cursor:pointer;
  transition: all .3s;
}
.dropdown-logout:hover{ background: rgba(255,80,80,.16); border-color: rgba(255,120,120,.4); }

.dropdown-link{
  display:flex; align-items:center; gap: 8px;
  width:100%;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--ice);
  font-size: .86rem; font-weight:600;
  transition: all .3s;
}
.dropdown-link:hover{ border-color: var(--blue-electric); background: rgba(160,200,255,.1); }

/* ---------- Currency selector ---------- */
.currency-wrap{ position: relative; }
.currency-btn{
  display:flex; align-items:center; gap:6px;
  padding: 9px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  font-family:'Space Grotesk', sans-serif;
  font-size: .86rem; font-weight:600;
  cursor:pointer;
  transition: all .3s var(--ease);
}
.currency-btn:hover{ border-color: var(--blue-electric); }
.currency-btn svg{ color: var(--cyan); transition: transform .3s; }
.currency-wrap.open .currency-btn svg{ transform: rotate(180deg); }

.currency-dropdown{
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 130px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(7, 16, 38, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  opacity:0; transform: translateY(-8px); visibility:hidden;
  transition: all .3s var(--ease);
  z-index: 120;
}
.currency-dropdown.show{ opacity:1; transform: translateY(0); visibility:visible; }
.currency-dropdown button{
  display:flex; justify-content:space-between; width:100%;
  padding: 8px 10px; border-radius: 8px;
  font-size: .86rem; color: var(--muted);
  cursor:pointer; transition: all .2s;
}
.currency-dropdown button span{ color: var(--cyan); }
.currency-dropdown button:hover{ background: rgba(160,200,255,.1); color: var(--white); }
.currency-dropdown button.active{ color: var(--white); background: rgba(47,139,255,.15); }

/* ---------- Discord button ---------- */
.discord-btn{
  display:flex; align-items:center; gap:8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: linear-gradient(90deg, #4a6bff, #2f8bff);
  color: #fff;
  font-size: .88rem; font-weight:700;
  box-shadow: 0 0 20px rgba(74,107,255,.35);
  transition: box-shadow .3s var(--ease), transform .15s ease-out;
}
.discord-btn:hover{ box-shadow: 0 0 30px rgba(74,107,255,.6); }

/* ---------- Cart button ---------- */
.cart-btn{
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  cursor:pointer;
  transition: all .3s var(--ease);
}
.cart-btn:hover{ border-color: var(--blue-electric); background: rgba(160,200,255,.12); }
.cart-badge{
  position:absolute; top:-6px; right:-6px;
  min-width: 18px; height:18px; padding: 0 4px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  color:#04122b;
  font-size: .68rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}

/* ---------- Login modal ---------- */
.modal-overlay{
  position: fixed; inset:0; z-index: 500;
  background: rgba(3, 7, 17, 0.72);
  backdrop-filter: blur(8px);
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.modal-overlay.show{ opacity:1; visibility: visible; }

.login-modal{
  position: relative;
  width: 100%; max-width: 420px;
  padding: 44px 34px 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14,26,55,.95), rgba(6,12,26,.98));
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(47,139,255,.15);
  text-align:center;
  transform: scale(.92) translateY(20px);
  opacity: 0;
  transition: all .4s var(--ease);
}
.modal-overlay.show .login-modal{ transform: scale(1) translateY(0); opacity:1; }

.modal-close{
  position:absolute; top: 18px; right: 18px;
  width: 34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  cursor:pointer;
  transition: all .3s;
}
.modal-close:hover{ color: var(--white); border-color: var(--blue-electric); transform: rotate(90deg); }

.modal-icon{
  width: 56px; height:56px; margin: 0 auto 20px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(47,139,255,.3), rgba(77,216,255,.12));
  color: var(--cyan);
}

.login-modal h3{ font-size: 1.5rem; margin-bottom: 8px; }
.modal-sub{ color: var(--muted); font-size: .92rem; margin-bottom: 28px; }

.login-form{ display:flex; flex-direction:column; gap: 18px; text-align:left; }

.login-error{
  display:none;
  color: #ff8a8a;
  font-size: .8rem;
  margin-top: -6px;
}
.login-error.show{ display:block; }

.login-note{
  margin-top: 22px;
  font-size: .74rem;
  line-height: 1.5;
  color: var(--muted);
  opacity: .8;
}

/* ---------- Toast ---------- */
.toast{
  position: fixed;
  top: 26px; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 600;
  padding: 14px 26px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(47,139,255,.95), rgba(77,216,255,.95));
  color: #04122b;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 10px 40px rgba(47,139,255,.5);
  transition: transform .5s var(--ease);
}
.toast.show{ transform: translate(-50%, 0); }

/* ---------- Cart drawer ---------- */
.cart-overlay{
  position: fixed; inset:0; z-index: 400;
  background: rgba(3,7,17,.6);
  backdrop-filter: blur(4px);
  opacity:0; visibility:hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.cart-overlay.show{ opacity:1; visibility:visible; }

.cart-drawer{
  position: fixed; top:0; right:0; bottom:0; z-index: 450;
  width: 100%; max-width: 400px;
  background: linear-gradient(180deg, rgba(10,20,44,.98), rgba(5,10,23,.99));
  border-left: 1px solid var(--glass-border);
  box-shadow: -20px 0 60px rgba(0,0,0,.5);
  display:flex; flex-direction:column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.cart-drawer.show{ transform: translateX(0); }

.cart-header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--glass-border);
}
.cart-header h3{ font-size: 1.2rem; }

.cart-items{
  flex:1; overflow-y:auto;
  padding: 18px 24px;
  display:flex; flex-direction:column; gap: 16px;
}
.cart-empty{ color: var(--muted); text-align:center; margin-top: 60px; font-size: .92rem; }

.cart-item{
  display:flex; gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.cart-item-thumb{
  width: 52px; height:52px; border-radius: 12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  color:#04122b;
}
.cart-item-info{ flex:1; min-width:0; }
.cart-item-info h4{ font-size: .92rem; font-weight:700; margin-bottom: 4px; }
.cart-item-price{ font-size: .82rem; color: var(--cyan); font-weight:700; }
.cart-item-controls{
  display:flex; align-items:center; gap: 10px; margin-top: 8px;
}
.qty-btn{
  width: 22px; height:22px; border-radius:6px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-size: .82rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.qty-btn:hover{ border-color: var(--blue-electric); }
.cart-item-remove{
  margin-left:auto;
  color: var(--muted);
  cursor:pointer;
  font-size: .78rem;
  transition: color .3s;
}
.cart-item-remove:hover{ color: #ff8a8a; }

.cart-footer{
  padding: 20px 24px 26px;
  border-top: 1px solid var(--glass-border);
}
.cart-subtotal{
  display:flex; justify-content:space-between;
  margin-bottom: 16px;
  font-size: 1rem; font-weight:700;
}
.cart-subtotal span:last-child{ color: var(--cyan); }
.cart-hint{ text-align:center; margin-top: 12px; font-size:.72rem; color: var(--muted); opacity:.8; }

/* ---------- Section sub ---------- */
.section-sub{
  max-width: 520px; margin: 16px auto 0;
  color: var(--muted); font-size: .98rem; line-height:1.6;
}

/* ---------- Products (bento layout) ---------- */
.products-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 22px;
}
.products-grid .product-card:nth-child(1){
  grid-column: span 2; grid-row: span 2;
  display:flex; flex-direction:column;
}
.products-grid .product-card:nth-child(1) .product-thumb{
  height: auto; flex: 1 1 auto; min-height: 220px;
}
.products-grid .product-card:nth-child(1) .product-thumb svg{ width: 46px; height:46px; }
.products-grid .product-card:nth-child(1) .product-body{ flex: 0 0 auto; }
.products-grid .product-card:nth-child(2){ grid-column: span 2; }
.products-grid .product-card:nth-child(3){ grid-column: span 1; }
.products-grid .product-card:nth-child(4){ grid-column: span 1; }
.products-grid .product-card:nth-child(5){ grid-column: span 2; }
.products-grid .product-card:nth-child(6){ grid-column: span 2; }
.product-card{
  position: relative;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.product-card:hover{ transform: translateY(-8px); border-color: var(--blue-electric); }
.product-card::after, .review-card::after{
  content:'';
  position:absolute; top:0; left:-60%;
  width: 40%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-20deg);
  transition: left .75s ease;
  pointer-events:none;
  z-index: 5;
}
.product-card:hover::after, .review-card:hover::after{ left: 130%; }
.product-thumb{
  position: relative;
  height: 150px;
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.92);
}
.product-thumb svg{ position:relative; z-index:1; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)); }
.product-tag{
  position:absolute; top:12px; left:12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .68rem; font-weight:800; letter-spacing:.04em;
  background: rgba(5,10,23,.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  z-index:2;
}
.thumb-g1{ background: linear-gradient(135deg, #0a3d91, #071026); }
.thumb-g2{ background: linear-gradient(135deg, #1e6fd9, #0a1f47); }
.thumb-g3{ background: linear-gradient(135deg, #2f8bff, #0a3d91); }
.thumb-g4{ background: linear-gradient(135deg, #071026, #4dd8ff); }
.thumb-g5{ background: linear-gradient(135deg, #4dd8ff, #1e6fd9); }
.thumb-g6{ background: linear-gradient(135deg, #0a1f47, #2f8bff); }

.product-body{ padding: 22px; }
.product-body h3{ font-size: 1.1rem; margin-bottom: 8px; }
.product-body p{ font-size: .88rem; color: var(--muted); line-height:1.55; min-height: 42px; }
.product-footer{
  display:flex; align-items:center; justify-content:space-between;
  margin-top: 18px;
}
.product-price{ font-family:'Syne', sans-serif; font-weight:800; font-size: 1.15rem; color: var(--cyan); }
.btn-add-cart{
  display:flex; align-items:center; gap:5px;
  padding: 8px 14px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  color: #04122b;
  font-size: .72rem; font-weight:700;
  cursor:pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-add-cart svg{
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.btn-add-cart:hover{ box-shadow: 0 0 20px rgba(77,216,255,.55); transform: translateY(-2px); }
.btn-add-cart.added{ background: linear-gradient(90deg, #2ecc71, #4dd8ff); }

/* ---------- Reviews ---------- */
.reviews-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card{
  position: relative;
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.review-card:hover{ transform: translateY(-6px); border-color: var(--blue-electric); }
.review-stars{ color: var(--cyan); letter-spacing: 2px; margin-bottom: 14px; font-size: .95rem; }
.review-stars .empty{ color: rgba(255,255,255,.15); }
.review-text{ font-size: .94rem; color: var(--ice); line-height:1.6; margin-bottom: 20px; }
.review-author{ display:flex; align-items:center; gap: 12px; }
.review-avatar{
  width: 38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan));
  color:#04122b; font-weight:800; font-size:.8rem;
}
.review-author span:last-child{ font-size: .88rem; font-weight:600; }

/* Community video container */
.community-video-container{
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}
.community-video-container::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 139, 255, 0.1), rgba(77, 216, 255, 0.05));
  pointer-events: none;
  z-index: 1;
}
.community-video{
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.burger{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; z-index: 200;
}
.burger span{ width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.burger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2){ opacity:0; }
.burger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset:0; z-index: 150;
  background: rgba(5,10,23,.97);
  backdrop-filter: blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 30px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{ font-family:'Syne',sans-serif; font-size: 1.8rem; font-weight:700; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 140px 6% 80px;
  overflow: hidden;
}

.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-size: .82rem;
  color: var(--ice);
  margin-bottom: 30px;
}
.pulse{
  width:7px; height:7px; border-radius:50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(77,216,255,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(77,216,255,.6); }
  70%{ box-shadow: 0 0 0 10px rgba(77,216,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(77,216,255,0); }
}

.hero-title{ display:flex; flex-direction:column; gap: 4px; }
.hero-title .line{
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
}
.hero-title .big{
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.8rem, 14vw, 10rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 6px 0;
}
.hero-title .big.kinetic{
  position: relative;
  display: inline-block;
  animation: kineticReveal 1.15s cubic-bezier(.16,.84,.44,1) .2s both;
}
@keyframes kineticReveal{
  0%{ clip-path: inset(0 101% 0 0); transform: scale(.94); }
  65%{ clip-path: inset(0 0% 0 0); }
  100%{ clip-path: inset(0 0% 0 0); transform: scale(1); }
}
.hero-title .big.kinetic::after{
  content:'';
  position:absolute; top:0; left:-35%;
  width: 35%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  mix-blend-mode: overlay;
  pointer-events:none;
  animation: sweepLight 1.4s ease 1.1s 1;
}
@keyframes sweepLight{ to{ left: 130%; } }
.outline{
  -webkit-text-stroke: 2px var(--blue-electric);
  color: transparent;
}
.glow{
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan) 50%, var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(47,139,255,.5));
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.hero-sub{
  max-width: 560px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions{ display:flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; justify-content:center; }

/* ---------- Hero stats ---------- */
.hero-stats{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap: 14px;
  margin-top: 50px;
}
.hero-stat{
  min-width: 130px;
  padding: 18px 24px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-align:center;
  transition: transform .4s var(--ease), border-color .4s;
}
.hero-stat:hover{ transform: translateY(-5px); border-color: var(--blue-electric); }
.hero-stat-num, .hero-stat-num-static{
  display:block;
  font-family:'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--cyan), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat-label{
  display:block; margin-top: 6px;
  font-size: .78rem; color: var(--muted);
}

/* ---------- Secure payment methods ---------- */
.payments-section{
  position: relative; z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6% 100px;
}
.payments-box{
  position: relative;
  padding: 44px 6%;
  border-radius: 28px;
  text-align:center;
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(47,139,255,.07), rgba(160,200,255,.02));
  overflow: hidden;
}
.payments-box::before{
  content:''; position:absolute; top:-50%; left:50%; transform:translateX(-50%);
  width: 420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(47,139,255,.28), transparent 70%);
  filter: blur(20px);
  z-index:0;
}
.payments-box h3{ font-size: 1.5rem; position:relative; z-index:1; }
.payments-box p{ color: var(--muted); margin: 10px 0 32px; font-size: .92rem; position:relative; z-index:1; }

.payments-grid{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 34px;
  position: relative; z-index:1;
}
.payment-item{
  display:flex; flex-direction:column; align-items:center; gap: 10px;
}
.payment-item span{ font-size: .8rem; color: var(--muted); font-weight:600; }
.payment-icon{
  width: 56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne', sans-serif; font-weight:800; font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .35s var(--ease);
}
.payment-item:hover .payment-icon{ transform: translateY(-6px) scale(1.05); }
.icon-btc{ background: linear-gradient(135deg, #f7a93b, #d97706); }
.icon-ltc{ background: linear-gradient(135deg, #7d94b5, #345d9d); }
.icon-skrill{ background: linear-gradient(135deg, #9b3fd4, #5c1f8f); font-style: italic; }
.icon-paypal{ background: linear-gradient(135deg, #2f8bff, #003087); }
.icon-eth{ background: linear-gradient(135deg, #8ea6ff, #627eea); }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  transition: box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .15s ease-out;
  border: 1px solid transparent;
  cursor: pointer;
  font-family:'Space Grotesk', sans-serif;
}
.btn svg{ transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(4px); }

.btn-primary{
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  color: #04122b;
  box-shadow: 0 0 30px rgba(47,139,255,.45);
}
.btn-primary:hover{ box-shadow: 0 0 50px rgba(77,216,255,.75); }

.btn-ghost{
  background: var(--glass);
  border-color: var(--glass-border);
  color: var(--white);
}
.btn-ghost:hover{ background: rgba(160,200,255,.12); border-color: var(--cyan); }

.btn-wide{ width:100%; justify-content:center; }

.scroll-cue{
  position:absolute; bottom: 40px; left:50%; transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line{
  width:1px; height: 46px;
  background: linear-gradient(var(--cyan), transparent);
  position:relative; overflow:hidden;
}
.scroll-line::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: linear-gradient(var(--white), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine{ to{ top: 100%; } }

.hero-orb{
  position:absolute; border-radius:50%;
  filter: blur(90px);
  z-index:-1;
  opacity:.55;
}
.orb-1{
  width: 480px; height:480px;
  background: radial-gradient(circle, var(--blue-electric), transparent 70%);
  top: -120px; left: -140px;
  animation: float 9s ease-in-out infinite;
}
.orb-2{
  width: 400px; height:400px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  bottom: -160px; right: -120px;
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(40px) translateX(20px); }
}

/* ---------- Marquee ---------- */
.marquee{
  position: relative; z-index: 3;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(90deg, rgba(47,139,255,.08), rgba(77,216,255,.03));
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track{
  display:flex; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span{
  font-family:'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 20px;
}
@keyframes marquee{ to{ transform: translateX(-50%); } }

.marquee-alt{
  border-top: none;
  background: transparent;
  padding: 10px 0 22px;
}
.marquee-track-reverse{
  animation: marqueeReverse 26s linear infinite;
}
.marquee-track-reverse span{
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  -webkit-text-stroke: 1px rgba(160,200,255,.35);
  color: transparent;
}
@keyframes marqueeReverse{ from{ transform: translateX(-50%); } to{ transform: translateX(0); } }

/* ---------- Sections ---------- */
.section{
  position: relative; z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 6% 40px;
}
.section-head{ text-align:center; margin-bottom: 70px; }
.tag{
  display:inline-block; margin-bottom: 18px;
  font-size: .8rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--cyan);
}
.section-head h2{
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

/* Reveal animation base */
.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in{ opacity:1; transform: translateY(0); }

/* ---------- CTA / Contact ---------- */
.cta-section{ padding-bottom: 140px; }
.cta-box{
  position: relative;
  max-width: 720px; margin: 0 auto;
  text-align:center;
  padding: 70px 6%;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(47,139,255,.09), rgba(160,200,255,.02));
  overflow: hidden;
}
.cta-box::before{
  content:''; position:absolute; top:-40%; left:50%; transform:translateX(-50%);
  width: 500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(47,139,255,.35), transparent 70%);
  filter: blur(20px);
  z-index:0;
}
.cta-box h2{ font-size: clamp(1.9rem, 4.4vw, 2.8rem); position:relative; z-index:1; }
.cta-box p{ color: var(--muted); margin: 18px 0 40px; position:relative; z-index:1; }

.field{ position:relative; }
.field input, .field textarea{
  width:100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 16px 10px;
  color: var(--white);
  font-family:'Space Grotesk', sans-serif;
  font-size: 1rem;
  outline:none;
  transition: border-color .3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus{ border-color: var(--blue-electric); }
.field label{
  position:absolute; left:16px; top:16px;
  color: var(--muted); font-size:1rem;
  transition: all .25s var(--ease);
  pointer-events:none;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label{
  top: 4px; font-size: .72rem; color: var(--cyan);
}

/* ---------- Dashboard ---------- */
.dash-section{
  position: relative; z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 6% 60px;
}

.dash-guard{ display:none; }
.dash-guard.show{ display:flex; justify-content:center; }
.dash-guard-box{
  max-width: 460px; text-align:center;
  padding: 56px 36px;
  border-radius: 26px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.dash-guard-box h2{ font-size: 1.8rem; margin-bottom: 14px; }
.dash-guard-box p{ color: var(--muted); margin-bottom: 30px; line-height:1.6; }

.dash-grid{
  display:none;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items:start;
}
.dash-grid.show{ display:grid; }

.dash-sidebar{
  padding: 26px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  position: sticky; top: 110px;
}
.dash-user{ text-align:center; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--glass-border); }
.dash-avatar{
  width: 60px; height:60px; margin: 0 auto 14px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan));
  color:#04122b; font-family:'Syne', sans-serif; font-weight:800; font-size: 1.5rem;
}
.dash-card-title{ font-family:'Syne', sans-serif; font-weight:700; font-size: 1.05rem; margin-bottom: 10px; }
.dash-sub-label{ font-size: .72rem; color: var(--muted); text-transform:uppercase; letter-spacing:.08em; }
.dash-email{ font-size: .86rem; color: var(--ice); margin-top: 4px; word-break: break-all; }

.dash-nav{ display:flex; flex-direction:column; gap: 6px; }
.dash-nav-item{
  display:flex; align-items:center; gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: .88rem; font-weight:600;
  color: var(--muted);
  cursor:pointer;
  transition: all .25s var(--ease);
  text-align:left;
}
.dash-nav-item svg{ flex-shrink:0; opacity:.8; }
.dash-nav-item:hover{ background: rgba(160,200,255,.08); color: var(--white); }
.dash-nav-item.active{
  background: linear-gradient(90deg, rgba(47,139,255,.25), rgba(77,216,255,.08));
  color: var(--white);
  border: 1px solid rgba(47,139,255,.35);
}
.dash-nav-item.dash-logout{ color: #ffb3b3; margin-top: 10px; }
.dash-nav-item.dash-logout:hover{ background: rgba(255,80,80,.1); }

.dash-main{ min-width: 0; }
.dash-tab[hidden]{ display:none; }

.dash-stats{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 24px;
}
.dash-stat{
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform .4s var(--ease), border-color .4s;
}
.dash-stat:hover{ transform: translateY(-5px); border-color: var(--blue-electric); }
.dash-stat-label{ display:block; font-size: .76rem; color: var(--muted); text-transform:uppercase; letter-spacing:.06em; margin-bottom: 10px; }
.dash-stat-num{
  display:block;
  font-family:'Syne', sans-serif; font-weight:800; font-size: 1.9rem;
  background: linear-gradient(90deg, var(--cyan), var(--white));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.dash-stat-num.small{ font-size: 1.15rem; color: var(--ice); -webkit-text-fill-color: var(--ice); background:none; }

.dash-panel{
  padding: 26px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  margin-bottom: 22px;
}
.dash-panel h3{ font-size: 1.1rem; margin-bottom: 18px; }

.order-row{
  display:flex; align-items:center; gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border);
  margin-bottom: 12px;
}
.order-row:last-child{ margin-bottom:0; }
.order-thumb{
  width: 44px; height:44px; border-radius: 10px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan));
  color:#04122b;
}
.order-info{ flex:1; min-width:0; }
.order-info h4{ font-size: .92rem; font-weight:700; margin-bottom: 4px; }
.order-meta{ font-size: .78rem; color: var(--muted); }
.order-id{ color: var(--cyan); }
.order-total{ font-family:'Syne', sans-serif; font-weight:800; color: var(--white); white-space:nowrap; }

.status-badge{
  display:inline-flex; align-items:center; gap:5px;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: .7rem; font-weight:700;
  background: rgba(46,204,113,.15);
  color: #6fe89a;
  white-space:nowrap;
}
.status-badge::before{ content:''; width:6px; height:6px; border-radius:50%; background: #6fe89a; }

.empty-state{
  text-align:center; padding: 30px 10px;
  color: var(--muted); font-size: .9rem;
}
.empty-state a{ color: var(--cyan); text-decoration: underline; }

.btn-delete-account{
  display:flex; align-items:center; gap:8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(255,80,80,.08);
  border: 1px solid rgba(255,100,100,.3);
  color: #ff9b9b;
  font-size: .86rem; font-weight:700;
  cursor:pointer;
  transition: all .3s;
}
.btn-delete-account:hover{ background: rgba(255,80,80,.18); border-color: rgba(255,120,120,.55); }

.panel-header-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 18px; }
.panel-header-row h3{ margin-bottom: 0; }

.ticket-row{
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.ticket-row:hover{ border-color: var(--blue-electric); background: rgba(160,200,255,.08); transform: translateX(3px); }
.ticket-row-info{ display:flex; flex-direction:column; gap: 4px; min-width:0; }
.ticket-row-subject{ font-size: .92rem; font-weight:700; }
.ticket-row-meta{ font-size: .76rem; color: var(--muted); }
.ticket-row-right{ display:flex; align-items:center; gap: 10px; flex-shrink:0; }
.ticket-row-arrow{ color: var(--muted); }

.ticket-back{
  display:inline-flex; align-items:center; gap:6px;
  background:none; border:none; color: var(--cyan);
  font-size: .85rem; font-weight:700; cursor:pointer;
  margin-bottom: 18px; padding:0;
  font-family:'Space Grotesk', sans-serif;
}
.ticket-back:hover{ text-decoration: underline; }

.ticket-detail-header{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 18px; }
.ticket-detail-header h3{ margin-bottom: 0; }
.ticket-detail-actions{ display:flex; align-items:center; gap: 10px; flex-shrink:0; }

.ticket-delete{
  width: 28px; height: 28px; border-radius: 8px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  cursor:pointer;
  transition: all .25s;
}
.ticket-delete:hover{ background: rgba(255,80,80,.16); border-color: rgba(255,110,110,.45); color:#ff9b9b; }

.ticket-thread{
  display:flex; flex-direction:column; gap: 14px;
  max-height: 380px; overflow-y: auto;
  padding: 4px 4px 16px;
  margin-bottom: 16px;
}
.msg{
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: .89rem;
  line-height: 1.5;
}
.msg-meta{ display:block; margin-top: 6px; font-size: .68rem; opacity: .65; }
.msg.user{
  align-self: flex-end;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  color: #04122b;
  border-bottom-right-radius: 4px;
}
.msg.support{
  align-self: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-border);
  color: var(--ice);
  border-bottom-left-radius: 4px;
}
.msg.typing{ font-style: italic; opacity: .7; }

.ticket-reply-form{
  display:flex; gap: 10px;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}
.ticket-reply-form input{
  flex:1;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 12px 20px;
  color: var(--white);
  font-family:'Space Grotesk', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
}
.ticket-reply-form input:focus{ border-color: var(--blue-electric); }
.ticket-reply-form button{
  width: 44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  color:#04122b; cursor:pointer;
  transition: all .3s;
}
.ticket-reply-form button:hover{ box-shadow: 0 0 20px rgba(77,216,255,.5); transform: translateY(-1px); }

/* ---------- Product Detail Pages ---------- */
.product-detail-section{
  position: relative; z-index:3;
  padding: 130px 6% 80px;
  min-height: 100vh;
}
.product-detail-container{
  max-width: 1200px; margin: 0 auto;
}
.back-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--muted);
  margin-bottom: 40px;
  transition: color .3s, transform .3s;
}
.back-link:hover{
  color: var(--cyan);
  transform: translateX(-4px);
}
.product-detail-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail-visual{
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-detail-thumb{
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  background: rgba(10, 20, 40, 0.4);
}
.product-detail-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.product-detail-fallback{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-thumb svg{
  position: relative;
  z-index: 2;
}
.product-detail-content h1{
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--ice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-detail-desc{
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}
.product-detail-price{
  margin-bottom: 32px;
}
.product-detail-price .product-price{
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-features{
  margin-top: 50px;
  padding: 30px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
}
.product-features h3{
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--ice);
}
.product-features ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-features li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.product-features li svg{
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--cyan);
}
.product-specs{
  margin-top: 30px;
}
.product-specs h3{
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--ice);
}
.specs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.spec-item{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color .3s;
}
.spec-item:hover{
  border-color: var(--blue-electric);
}
.spec-label{
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.spec-value{
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Make product cards linkable */
.product-card{
  display: block;
  text-decoration: none;
}

/* ---------- Shop Products Page ---------- */
.products-catalog-section{
  position: relative;
  z-index: 3;
  padding: 140px 6% 80px;
  min-height: 100vh;
}
.products-catalog-container{
  max-width: 1400px;
  margin: 0 auto;
}
.products-catalog-section .section-head{
  text-align: center;
  margin-bottom: 60px;
}
.products-catalog-section .section-head h1{
  font-size: 3.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
.shop-products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.shop-product-card{
  position: relative;
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all .4s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.shop-product-card:hover{
  transform: translateY(-8px);
  border-color: var(--blue-electric);
  box-shadow: 0 12px 40px rgba(47, 139, 255, 0.3);
}
.shop-product-image{
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: rgba(10, 20, 40, 0.4);
}
.shop-product-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.shop-product-fallback{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-product-image svg{
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}
.shop-product-info{
  width: 100%;
  margin-bottom: 20px;
}
.shop-product-info h3{
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}
.shop-product-price{
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
}
.shop-buy-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--blue-electric), var(--cyan));
  border-radius: 100px;
  color: #04122b;
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.shop-buy-btn:hover{
  box-shadow: 0 0 25px rgba(77, 216, 255, 0.6);
  transform: translateY(-2px);
}
.shop-buy-btn svg{
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer{
  position:relative; z-index:3;
  text-align:center;
  padding: 40px 6% 50px;
  border-top: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: .85rem;
}
.footer-logo{
  font-family:'Syne', sans-serif; font-weight:800; font-size:1.3rem;
  color: var(--white); margin-bottom: 16px;
}
.footer-logo .dot{ color: var(--cyan); }
.footer-links{ display:flex; justify-content:center; gap: 26px; margin-bottom: 20px; flex-wrap:wrap; }
.footer-links a{ font-size: .86rem; color: var(--muted); transition: color .3s; }
.footer-links a:hover{ color: var(--cyan); }
.footer-socials{ display:flex; justify-content:center; gap: 18px; margin-bottom: 16px; }
.footer-socials a{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--glass-border);
  font-size:.72rem; font-weight:700;
  transition: all .3s;
}
.footer-socials a:hover{ background: var(--blue-electric); color:#04122b; border-color: var(--blue-electric); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .nav-left .nav-links{ display:none; }
  .currency-wrap, .discord-btn{ display:none; }
  .burger{ display:flex; }
  .mobile-menu{ gap: 22px; }
  .mobile-currency{ display:flex; gap: 10px; }
  .mobile-currency button{
    padding: 8px 16px; border-radius: 100px;
    border: 1px solid var(--glass-border); background: var(--glass);
    color: var(--muted); font-size: .82rem; font-weight:700;
  }
  .mobile-currency button.active{ color: var(--white); border-color: var(--blue-electric); }
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
  .dash-grid{ grid-template-columns: 1fr; }
  .dash-sidebar{ position: static; }
  .dash-stats{ grid-template-columns: 1fr; }
  .product-detail-grid{ grid-template-columns: 1fr; gap: 40px; }
  .product-detail-visual{ position: static; }
  .product-detail-content h1{ font-size: 2.5rem; }
  .specs-grid{ grid-template-columns: 1fr; }
  .shop-products-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px){
  .cursor-glow, .cursor-dot, .cursor-ring{ display:none; }
  .login-btn span{ display:none; }
  .login-btn{ padding: 10px; }
  .user-email{ max-width: 70px; }
  .login-modal{ padding: 38px 22px 28px; }
  .products-grid{ grid-template-columns: 1fr; }
  .products-grid .product-card{ grid-column: span 1 !important; grid-row: span 1 !important; }
  .products-grid .product-card:nth-child(1) .product-thumb{ height: 150px; flex: none; min-height: 0; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .cart-drawer{ max-width: 100%; }
  .dash-section{ padding-top: 130px; }
  .product-detail-section{ padding: 100px 6% 60px; }
  .product-detail-content h1{ font-size: 2rem; }
  .product-detail-price .product-price{ font-size: 2rem; }
  .back-link{ margin-bottom: 30px; }
  .community-video-container{ border-radius: 12px; }
  .shop-products-grid{ grid-template-columns: 1fr; }
  .products-catalog-section{ padding: 100px 6% 60px; }
  .products-catalog-section .section-head h1{ font-size: 2.2rem; }
}
