/* ═══════════════════════════════════════════════
   STICKERLAB — Design System
   Palette: Acid Neon × Dark
   Font: Bricolage Grotesque
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --lime:    #CCFF00;
  --pink:    #FF3CAC;
  --purple:  #7B2FFF;
  --dark:    #0D0D0D;
  --dark2:   #161616;
  --dark3:   #1E1E1E;
  --dark4:   #2A2A2A;
  --light:   #F5F5F5;
  --muted:   #888;
  --white:   #FFFFFF;

  --font:    'Bricolage Grotesque', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.6);
  --shadow-lime: 0 0 30px rgba(204,255,0,.25);
  --shadow-pink: 0 0 30px rgba(255,60,172,.25);

  --nav-h: 72px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── CUSTOM CURSOR ── */
.custom-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 36px; height: 36px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s, background .2s;
  mix-blend-mode: difference;
}
.custom-cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
body:has(a:hover) .custom-cursor,
body:has(button:hover) .custom-cursor {
  width: 56px; height: 56px;
  background: rgba(204,255,0,.1);
  border-color: var(--pink);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION SHARED ── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(204,255,0,.1);
  border: 1px solid rgba(204,255,0,.25);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.highlight {
  color: var(--lime);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 4px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.section-title:hover .highlight::after { transform: scaleX(1); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--lime);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--pink);
  transform: translateX(-101%);
  transition: transform .3s ease;
  z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--white); border-color: var(--pink); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--light);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: transparent;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
}
.nav-logo span { color: var(--lime); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--lime);
  border-radius: 50%;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: var(--transition);
}
.cart-btn:hover { background: var(--lime); color: var(--dark); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--pink);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  opacity: 0; transform: scale(0);
  transition: var(--transition);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; padding: 6px;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: min(420px, 100vw);
  background: var(--dark2);
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cart-header h3 { font-size: 1.2rem; font-weight: 800; }
.cart-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  color: var(--light);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: var(--pink); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
  height: 200px; text-align: center;
  color: var(--muted);
}
.cart-empty span { font-size: 3rem; }
.cart-empty p { font-weight: 600; color: var(--light); }

.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px;
  background: var(--dark3);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  animation: slideIn .3s ease;
}
@keyframes slideIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
.cart-item-img {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
  background: var(--dark4);
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.cart-item-info span { font-size: .85rem; color: var(--lime); font-weight: 700; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
}
.qty-btn {
  width: 24px; height: 24px;
  background: var(--dark4);
  border-radius: 6px;
  color: var(--light);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--lime); color: var(--dark); }
.qty-num { font-size: .85rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--muted);
  font-size: .8rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}
.cart-item-remove:hover { color: var(--pink); background: rgba(255,60,172,.1); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem; font-weight: 800;
}
#cartTotal { color: var(--lime); }
.btn-checkout {
  width: 100%;
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.btn-checkout:hover { background: var(--pink); color: var(--white); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: calc(var(--nav-h) + 60px) 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--purple);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: var(--pink);
  bottom: -50px; left: 30%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 250px; height: 250px;
  background: var(--lime);
  top: 40%; left: -80px;
  animation: blobFloat 12s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(.95); }
}

.floating-stickers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.float-sticker {
  position: absolute;
  font-size: 2rem;
  animation: floatSpin 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.fs-1 { animation-duration: 5s; }
.fs-2 { animation-duration: 7s; animation-delay: -1s; }
.fs-3 { animation-duration: 6s; animation-delay: -2s; }
.fs-4 { animation-duration: 8s; animation-delay: -3s; }
.fs-5 { animation-duration: 5.5s; animation-delay: -1.5s; }
.fs-6 { animation-duration: 7.5s; animation-delay: -4s; }
@keyframes floatSpin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--dark);
  background: var(--lime);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-title {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}
.title-line {
  display: block;
  animation: fadeUp .6s ease both;
}
.title-line:nth-child(1) { animation-delay: .1s; }
.title-line:nth-child(2) { animation-delay: .2s; }
.title-line:nth-child(3) { animation-delay: .3s; }
.title-line.accent { color: var(--lime); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeUp .6s ease .4s both;
}
.hero-sub em { color: var(--pink); font-style: normal; font-weight: 700; }

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp .6s ease .5s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp .6s ease .6s both;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat span { font-size: .8rem; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .8s ease .3s both;
}
.hero-sticker-stack { position: relative; width: 380px; height: 380px; }
.sticker-card-hero {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease;
}
.sticker-card-hero:hover { transform: scale(1.05) rotate(0deg) !important; }
.sc-1 { top: 0; left: 50%; transform: translateX(-50%) rotate(-8deg); z-index: 3; }
.sc-2 { bottom: 0; left: 0; transform: rotate(6deg); z-index: 2; }
.sc-3 { bottom: 20px; right: 0; transform: rotate(-4deg); z-index: 1; }
.sticker-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--lime);
  color: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marquee 20s linear infinite;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════ */
.categories { padding: 100px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,255,0,.08), rgba(123,47,255,.08));
  opacity: 0;
  transition: opacity .3s;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--lime); }
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cat-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.cat-card span { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   SHOP
══════════════════════════════════════════════ */
.shop { padding: 100px 0; background: var(--dark2); }

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.12);
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.filter-btn.active {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--dark3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: fadeUp .5s ease both;
}
.product-card:hover {
  transform: translateY(-8px) rotate(.5deg);
  box-shadow: 0 24px 48px rgba(0,0,0,.5), var(--shadow-lime);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-wrap img {
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.product-badge.new  { background: var(--lime); color: var(--dark); }
.product-badge.hot  { background: var(--pink); color: var(--white); }
.product-badge.sale { background: var(--purple); color: var(--white); }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,.7);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: 1; }

.btn-add-cart {
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transform: translateY(10px);
  transition: transform .3s ease, background .2s;
}
.product-card:hover .btn-add-cart { transform: translateY(0); }
.btn-add-cart:hover { background: var(--pink); color: var(--white); }

.product-info { padding: 16px; }
.product-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 6px;
}
.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lime);
}
.stars { font-size: .8rem; color: #FFD700; letter-spacing: 1px; }

.load-more-wrap { text-align: center; margin-top: 48px; }
.btn-load-more {
  background: transparent;
  color: var(--light);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.btn-load-more:hover { border-color: var(--lime); color: var(--lime); }

/* ══════════════════════════════════════════════
   PROMO BANNER
══════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, var(--purple) 0%, #4A0080 50%, var(--pink) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.promo-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.promo-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.promo-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.promo-text h2 span { color: var(--lime); }
.promo-text p { color: rgba(255,255,255,.8); margin-bottom: 32px; line-height: 1.6; }

.promo-visual { display: flex; align-items: center; justify-content: center; }
.promo-stickers { position: relative; width: 280px; height: 280px; }
.ps {
  position: absolute;
  font-size: 4rem;
  animation: promoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.3));
}
.ps1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.ps2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: .5s; }
.ps3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.ps4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 1.5s; }
@keyframes promoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}
.ps1 { animation: promoFloat1 4s ease-in-out infinite; }
.ps2 { animation: promoFloat2 4s ease-in-out infinite .5s; }
.ps3 { animation: promoFloat3 4s ease-in-out infinite 1s; }
.ps4 { animation: promoFloat4 4s ease-in-out infinite 1.5s; }
@keyframes promoFloat1 { 0%,100%{top:0;left:50%;transform:translateX(-50%) scale(1)} 50%{top:-10px;transform:translateX(-50%) scale(1.1)} }
@keyframes promoFloat2 { 0%,100%{top:50%;right:0;transform:translateY(-50%) scale(1)} 50%{right:-8px;transform:translateY(-50%) scale(1.1)} }
@keyframes promoFloat3 { 0%,100%{bottom:0;left:50%;transform:translateX(-50%) scale(1)} 50%{bottom:-10px;transform:translateX(-50%) scale(1.1)} }
@keyframes promoFloat4 { 0%,100%{top:50%;left:0;transform:translateY(-50%) scale(1)} 50%{left:-8px;transform:translateY(-50%) scale(1.1)} }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about-img-wrap img { transition: transform .6s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
}
.about-floating-card {
  position: absolute; top: 32px; left: -24px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite;
}
.about-floating-card span { font-size: 2rem; }
.about-floating-card strong { display: block; font-size: .9rem; }
.about-floating-card small { color: var(--muted); font-size: .78rem; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
  font-weight: 500;
}
.about-content p {
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.about-values { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.value-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  background: var(--dark2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.value-item:hover { border-color: var(--lime); transform: translateX(6px); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.value-item span { font-size: .82rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--dark2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(204,255,0,.3); }
.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(123,47,255,.2), rgba(255,60,172,.1));
  border-color: rgba(123,47,255,.4);
  transform: scale(1.03);
}
.testimonial-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.t-stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p {
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
}
.t-author strong { display: block; font-size: .9rem; }
.t-author span { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p {
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  background: var(--dark2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 2px; }
.contact-item span { font-size: .95rem; font-weight: 600; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--lime); color: var(--dark); border-color: var(--lime); }

/* Contact Form */
.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark3);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--white);
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--lime); }
.form-group select option { background: var(--dark3); }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(204,255,0,.1);
  border: 1px solid rgba(204,255,0,.3);
  border-radius: var(--radius-md);
  color: var(--lime);
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
}
.form-success.show { display: block; animation: fadeUp .4s ease; }

/* ══════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════ */
.newsletter {
  background: var(--dark2);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center; padding: 0 24px;
}
.nl-emoji { font-size: 3rem; margin-bottom: 16px; }
.newsletter-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.newsletter-inner p { color: rgba(255,255,255,.6); margin-bottom: 32px; }
.nl-form {
  display: flex; gap: 0;
  background: var(--dark3);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  padding: 6px;
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--white);
  font-size: .95rem;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form button {
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.nl-form button:hover { background: var(--pink); color: var(--white); }
.nl-success {
  display: none;
  margin-top: 16px;
  color: var(--lime);
  font-weight: 600;
}
.nl-success.show { display: block; animation: fadeUp .4s ease; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 8px;
}
.footer-copy { font-size: .8rem !important; color: rgba(255,255,255,.3) !important; }
.footer-links h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--lime); }

/* ══════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--lime);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  opacity: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + 40px) 32px 60px;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .promo-inner { grid-template-columns: 1fr; text-align: center; }
  .promo-visual { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,13,13,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 14px 20px; border-radius: var(--radius-md); font-size: 1rem; }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .custom-cursor, .custom-cursor-dot { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3.5rem; }
  .nl-form { flex-direction: column; border-radius: var(--radius-lg); }
  .nl-form button { border-radius: var(--radius-md); }
  .contact-form { padding: 24px; }
}