/* ═══════════════════════════════════════════╗
   ║  WKWK STORE — SITE STYLE                 ║
   ╚══════════════════════════════════════════╝ */
:root {
  --bg: #070b14;
  --bg2: #0d1524;
  --card: rgba(255,255,255,.045);
  --border: rgba(255,255,255,.09);
  --text: #e8eefc;
  --muted: #93a0b8;
  --accent: #22d3ee;
  --accent2: #6366f1;
  --grad: linear-gradient(135deg,#22d3ee,#6366f1);
  --green: #10b981;
  --amber: #f59e0b;
  --radius: 18px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; }
.container { max-width:1180px; margin:0 auto; padding:0 22px; }
.grad { background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ─── NAVBAR ─── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(7,11,20,.8); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:68px; gap:16px; }
.brand { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-icon { font-size:26px; }
.brand-text { display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong { font-size:17px; letter-spacing:.2px; }
.brand-text small { font-size:10px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; }
.nav-links { display:flex; gap:6px; align-items:center; }
.nav-links a {
  padding:8px 12px; border-radius:10px; font-size:14px; font-weight:500; color:var(--muted);
  transition:.2s; white-space:nowrap;
}
.nav-links a:hover { color:#fff; background:rgba(255,255,255,.06); }
.nav-links a.nav-admin { color:var(--amber); border:1px solid rgba(245,158,11,.3); }
.nav-right { display:flex; align-items:center; gap:10px; }
.lang-btn, .cart-btn, .hamburger {
  background:var(--card); border:1px solid var(--border); color:var(--text);
  border-radius:12px; padding:8px 12px; cursor:pointer; font-size:14px; transition:.2s;
}
.lang-btn:hover, .cart-btn:hover, .hamburger:hover { border-color:var(--accent); }
.cart-btn { position:relative; }
.cart-count {
  position:absolute; top:-7px; right:-7px; background:var(--grad); color:#fff;
  font-size:11px; font-weight:700; border-radius:50%; width:20px; height:20px;
  display:flex; align-items:center; justify-content:center;
}
.hamburger { display:none; font-size:20px; }

/* ─── HERO ─── */
.hero {
  padding:150px 0 90px; position:relative; overflow:hidden;
  background:
    radial-gradient(800px 400px at 85% 10%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(34,211,238,.12), transparent 60%),
    var(--bg);
}
.hero-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center; }
.badge-row { display:flex; gap:10px; margin-bottom:22px; flex-wrap:wrap; }
.badge {
  background:rgba(16,185,129,.1); border:1px solid rgba(16,185,129,.3); color:#6ee7b7;
  font-size:12.5px; font-weight:600; padding:6px 13px; border-radius:999px;
}
.hero h1 { font-size:clamp(38px,5.5vw,62px); font-weight:800; line-height:1.12; letter-spacing:-1px; margin-bottom:20px; }
.hero .sub { color:var(--muted); font-size:17px; max-width:520px; margin-bottom:30px; }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.btn {
  display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:14px;
  font-weight:700; font-size:15px; border:none; cursor:pointer; transition:.25s; font-family:inherit;
}
.btn-primary { background:var(--grad); color:#fff; box-shadow:0 8px 30px rgba(99,102,241,.35); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(99,102,241,.5); }
.btn-ghost { background:var(--card); border:1px solid var(--border); color:var(--text); }
.btn-ghost:hover { border-color:var(--accent); }
.btn-telegram { background:rgba(34,211,238,.12); border:1px solid rgba(34,211,238,.35); color:#67e8f9; }
.btn-telegram:hover { background:rgba(34,211,238,.2); }
.btn-block { width:100%; justify-content:center; }
.stats { display:flex; gap:40px; }
.stats div { display:flex; flex-direction:column; }
.stats strong { font-size:24px; font-weight:800; }
.stats span { font-size:12.5px; color:var(--muted); }
.hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.hero-emoji {
  font-size:150px; filter:drop-shadow(0 20px 60px rgba(34,211,238,.35));
  animation:float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.float-card {
  position:absolute; background:rgba(13,21,36,.9); border:1px solid var(--border); backdrop-filter:blur(8px);
  padding:10px 16px; border-radius:14px; font-size:13.5px; font-weight:600; box-shadow:0 12px 40px rgba(0,0,0,.4);
}
.fc1 { top:12%; left:4%; animation:float 6s ease-in-out infinite; }
.fc2 { top:52%; right:0; animation:float 7s ease-in-out infinite .6s; }
.fc3 { bottom:8%; left:8%; animation:float 5.5s ease-in-out infinite 1s; }

/* ─── SECTIONS ─── */
section { padding:80px 0; }
.section-head { text-align:center; max-width:640px; margin:0 auto 46px; }
.kicker {
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--accent); background:rgba(34,211,238,.08); border:1px solid rgba(34,211,238,.25);
  padding:5px 14px; border-radius:999px; margin-bottom:14px;
}
.section-head h2 { font-size:clamp(28px,4vw,40px); font-weight:800; letter-spacing:-.5px; margin-bottom:10px; }
.section-head p { color:var(--muted); font-size:15.5px; }

/* ─── PRODUCTS ─── */
.products { background:var(--bg2); }
.cat-filters { display:flex; justify-content:center; gap:10px; margin-top:22px; flex-wrap:wrap; }
.chip {
  background:var(--card); border:1px solid var(--border); color:var(--muted); padding:8px 20px;
  border-radius:999px; cursor:pointer; font-size:14px; font-weight:600; font-family:inherit; transition:.2s;
}
.chip:hover { color:#fff; }
.chip.active { background:var(--grad); color:#fff; border-color:transparent; }
.product-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(255px,1fr)); gap:20px; margin-top:36px; }
.product-card {
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  padding:24px 20px; display:flex; flex-direction:column; gap:10px; position:relative; transition:.25s;
}
.product-card:hover { transform:translateY(-5px); border-color:rgba(34,211,238,.4); box-shadow:0 16px 44px rgba(0,0,0,.35); }
.product-emoji { font-size:52px; text-align:center; }
.product-badge {
  position:absolute; top:14px; right:14px; font-size:10.5px; font-weight:700; letter-spacing:.05em;
  background:var(--grad); color:#fff; padding:4px 10px; border-radius:999px;
}
.product-name { font-size:16.5px; font-weight:700; }
.product-specs { font-size:12.5px; color:var(--muted); min-height:38px; }
.product-price { font-size:18.5px; font-weight:800; color:var(--accent); }
.product-actions { display:flex; gap:8px; margin-top:4px; }
.btn-add {
  flex:1; background:var(--grad); color:#fff; border:none; padding:10px; border-radius:11px;
  font-weight:700; font-size:13.5px; cursor:pointer; transition:.2s; font-family:inherit;
}
.btn-add:hover { filter:brightness(1.15); }
.btn-wa {
  background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.35); color:#6ee7b7;
  padding:10px 13px; border-radius:11px; font-size:15px; cursor:pointer; transition:.2s;
}
.btn-wa:hover { background:rgba(16,185,129,.22); }
.cart-banner {
  margin-top:30px; text-align:center; background:var(--card); border:1px dashed var(--border);
  border-radius:14px; padding:14px; color:var(--muted); font-size:14px;
}

/* ─── SERVICES ─── */
.service-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:18px; }
.service-card {
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px; transition:.25s;
}
.service-card:hover { border-color:rgba(34,211,238,.4); transform:translateY(-3px); }
.service-card .emoji { font-size:34px; margin-bottom:12px; }
.service-card h3 { font-size:17px; margin-bottom:6px; }
.service-card p { color:var(--muted); font-size:14px; }

/* ─── GALLERY ─── */
.gallery { background:var(--bg2); }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gal-item {
  aspect-ratio:4/3; border-radius:var(--radius); border:1px solid var(--border); position:relative; overflow:hidden;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; transition:.3s;
}
.gal-item span { font-size:46px; }
.gal-item small { font-size:13px; font-weight:600; color:var(--muted); }
.gal-item:hover { transform:scale(1.03); }
.g1 { background:linear-gradient(135deg,rgba(34,211,238,.14),transparent); }
.g2 { background:linear-gradient(135deg,rgba(99,102,241,.16),transparent); }
.g3 { background:linear-gradient(135deg,rgba(16,185,129,.14),transparent); }
.g4 { background:linear-gradient(135deg,rgba(245,158,11,.14),transparent); }

/* ─── TESTIMONIALS ─── */
.testi-slider { display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; scrollbar-width:thin; }
.testi-card {
  min-width:330px; scroll-snap-align:start; background:var(--card); border:1px solid var(--border);
  border-radius:var(--radius); padding:26px; flex:1;
}
.testi-stars { color:var(--amber); font-size:15px; margin-bottom:12px; letter-spacing:2px; }
.testi-text { font-size:14.5px; color:var(--text); margin-bottom:16px; }
.testi-name { font-weight:700; font-size:14.5px; }
.testi-role { font-size:12.5px; color:var(--muted); }
.testi-dots { display:flex; justify-content:center; gap:8px; margin-top:14px; }
.testi-dots button { width:9px; height:9px; border-radius:50%; border:none; background:rgba(255,255,255,.2); cursor:pointer; transition:.2s; }
.testi-dots button.active { background:var(--accent); width:26px; border-radius:99px; }

/* ─── FAQ ─── */
.faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--card); border:1px solid var(--border); border-radius:14px; overflow:hidden; transition:.2s; }
.faq-item.open { border-color:rgba(34,211,238,.4); }
.faq-q {
  width:100%; background:none; border:none; color:var(--text); font-family:inherit; font-size:15.5px;
  font-weight:600; padding:18px 20px; display:flex; justify-content:space-between; align-items:center;
  gap:14px; cursor:pointer; text-align:left;
}
.faq-q .arrow { transition:.25s; color:var(--accent); font-size:13px; }
.faq-item.open .arrow { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a p { padding:0 20px 18px; color:var(--muted); font-size:14.5px; }

/* ─── CONTACT ─── */
.contact { background:var(--bg2); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:18px; }
.contact-card {
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:26px;
  display:flex; flex-direction:column; gap:6px;
}
.contact-card h3 { font-size:14.5px; margin-top:10px; color:var(--text); }
.contact-card h3:first-child { margin-top:0; }
.contact-card p { color:var(--muted); font-size:14.5px; }
.contact-card p a { color:var(--accent); }
.contact-actions { display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; }
.contact-actions .btn { padding:11px 18px; font-size:13.5px; }
.map-embed { margin-top:8px; border-radius:12px; overflow:hidden; border:1px solid var(--border); }
.map-embed iframe { width:100%; height:220px; border:0; display:block; filter:invert(90%) hue-rotate(180deg) contrast(.9); }
.qris-box {
  margin-top:10px; background:linear-gradient(135deg,rgba(34,211,238,.1),rgba(99,102,241,.1));
  border:1px solid var(--border); border-radius:14px; padding:24px; text-align:center;
}
.qris-placeholder {
  width:170px; height:170px; margin:0 auto 12px; border-radius:10px; background:rgba(255,255,255,.05);
  display:flex; flex-direction:column; align-items:center; justify-content:center; font-size:14px;
  color:var(--muted); border:2px dashed rgba(255,255,255,.15); line-height:1.7;
}
.qris-placeholder span { font-size:12px; }
.qris-box small { color:var(--muted); font-size:12px; }

/* ─── FOOTER ─── */
.footer { border-top:1px solid var(--border); padding:50px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:30px; margin-bottom:36px; }
.footer h4 { font-size:15px; margin-bottom:14px; }
.footer p { color:var(--muted); font-size:14px; max-width:340px; }
.footer a { display:block; color:var(--muted); font-size:14px; padding:4px 0; transition:.2s; }
.footer a:hover { color:var(--accent); }
.footer-bottom { text-align:center; color:var(--muted); font-size:13px; border-top:1px solid var(--border); padding-top:22px; }

/* ─── CART ─── */
.overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.6); backdrop-filter:blur(3px); z-index:200;
  opacity:0; pointer-events:none; transition:.3s;
}
.overlay.show { opacity:1; pointer-events:auto; }
.cart {
  position:fixed; top:0; right:0; height:100vh; width:min(400px,92vw); background:#0c1322; z-index:210;
  border-left:1px solid var(--border); display:flex; flex-direction:column; transform:translateX(105%); transition:.35s;
}
.cart.open { transform:translateX(0); }
.cart-head { display:flex; justify-content:space-between; align-items:center; padding:20px 22px; border-bottom:1px solid var(--border); }
.cart-head h3 { font-size:17px; }
.cart-head button { background:none; border:none; color:var(--muted); font-size:20px; cursor:pointer; }
.cart-items { flex:1; overflow-y:auto; padding:14px 22px; display:flex; flex-direction:column; gap:12px; }
.cart-item {
  display:flex; gap:12px; align-items:center; background:var(--card); border:1px solid var(--border);
  border-radius:12px; padding:12px;
}
.cart-item .ci-emoji { font-size:30px; }
.cart-item .ci-info { flex:1; min-width:0; }
.cart-item .ci-name { font-size:13.5px; font-weight:600; }
.cart-item .ci-price { font-size:12.5px; color:var(--accent); }
.cart-item .ci-qty { display:flex; align-items:center; gap:8px; margin-top:6px; }
.cart-item .ci-qty button { width:24px; height:24px; border-radius:7px; border:1px solid var(--border); background:var(--card); color:#fff; cursor:pointer; font-size:13px; }
.cart-item .ci-qty span { font-size:13.5px; font-weight:700; min-width:20px; text-align:center; }
.cart-item .ci-rm { background:none; border:none; color:var(--muted); cursor:pointer; font-size:15px; }
.cart-empty { color:var(--muted); text-align:center; padding:40px 0; font-size:14.5px; }
.cart-foot { border-top:1px solid var(--border); padding:16px 22px 22px; display:flex; flex-direction:column; gap:10px; }
.cart-total { display:flex; justify-content:space-between; font-size:16px; margin-bottom:4px; }
.cart-total strong { color:var(--accent); font-size:18px; }

/* ─── FLOATING BTNS ─── */
.float-btns { position:fixed; bottom:22px; right:22px; display:flex; flex-direction:column; gap:10px; z-index:150; }
.float-btn {
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff; box-shadow:0 10px 30px rgba(0,0,0,.4); transition:.25s;
}
.float-btn:hover { transform:scale(1.1); }
.fb-wa { background:#25d366; }
.fb-tg { background:#229ed9; }
.fb-top { background:var(--grad); }

/* ─── TOAST ─── */
.toast {
  position:fixed; bottom:90px; left:50%; transform:translateX(-50%) translateY(20px); z-index:300;
  background:#0f1a2e; border:1px solid var(--border); color:var(--text); padding:12px 22px; border-radius:12px;
  font-size:14px; font-weight:600; opacity:0; pointer-events:none; transition:.3s; box-shadow:0 12px 40px rgba(0,0,0,.5);
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .contact-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:860px) {
  .nav-links {
    position:fixed; top:68px; left:0; right:0; background:rgba(7,11,20,.97); backdrop-filter:blur(20px);
    flex-direction:column; align-items:stretch; padding:16px 22px; gap:4px; border-bottom:1px solid var(--border);
    display:none; z-index:99;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px; }
  .hamburger { display:block; }
  .hero { padding:130px 0 60px; }
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-visual { order:-1; }
  .hero-emoji { font-size:110px; }
  .float-card { font-size:12px; padding:8px 12px; }
  .stats { gap:26px; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
}
@media (max-width:480px) {
  .hero h1 { font-size:34px; }
  .testi-card { min-width:280px; }
  .product-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .product-card { padding:16px 12px; }
  .product-emoji { font-size:38px; }
  .product-name { font-size:13.5px; }
  .product-specs { font-size:11px; min-height:30px; }
  .product-price { font-size:14.5px; }
  .btn-add { padding:8px; font-size:12px; }
  .btn-wa { padding:8px 10px; font-size:13px; }
  .stats { gap:18px; }
  .stats strong { font-size:19px; }
}
