/* ============================================================
   X-KOCH — Dark Gaming Theme
   ============================================================ */
:root {
  --bg: #07090a;
  --bg2: #0b0e10;
  --surface: #10151a;
  --surface2: #151c22;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(74, 222, 60, 0.25);
  --text: #eef2f0;
  --muted: #9aa5a0;
  --green: #46d422;
  --green-dark: #2ea314;
  --green-glow: rgba(70, 212, 34, 0.35);
  --red: #ef4444;
  --radius: 14px;
  --radius-sm: 9px;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { width: min(1240px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.15; }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, #0c1a08, #10240a 50%, #0c1a08);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: #c9e8bf;
}
.topbar-in { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; }
.topbar-item { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55); }
.header-in { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { width: 52px; height: auto; filter: drop-shadow(0 0 10px var(--green-glow)); transition: transform .3s; }
.logo:hover img { transform: rotate(-6deg) scale(1.06); }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.04em; }
.logo-text span { color: var(--green); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 13px; font-weight: 600; font-size: 0.92rem; color: var(--muted);
  border-radius: 8px; position: relative; transition: color .25s;
}
.nav-link::after {
  content: ''; position: absolute; left: 13px; right: 100%; bottom: 3px; height: 2px;
  background: var(--green); transition: right .3s; border-radius: 2px;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { right: 13px; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 1px solid transparent; border-radius: 10px;
  color: var(--text); position: relative; transition: all .25s;
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { border-color: var(--border2); background: rgba(70, 212, 34, 0.07); color: var(--green); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px;
  background: var(--green); color: #06130a; font-size: 0.7rem; font-weight: 700;
  border-radius: 99px; display: grid; place-items: center; padding: 0 5px;
  box-shadow: 0 0 12px var(--green-glow);
}
.cart-btn.bump .cart-count { animation: bump .5s; }
@keyframes bump { 30% { transform: scale(1.5); } }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: .3s; }

.search-bar { max-height: 0; overflow: hidden; transition: max-height .35s; border-top: 0 solid var(--border); }
.search-bar.open { max-height: 90px; border-top-width: 1px; }
.search-form { display: flex; gap: 10px; padding: 16px 0; }
.search-form input {
  flex: 1; background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 11px 16px; border-radius: 10px; font-size: 0.95rem; outline: none;
}
.search-form input:focus { border-color: var(--green); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; left: -290px; width: 280px; height: 100vh; z-index: 120;
  background: var(--bg2); border-right: 1px solid var(--border); transition: left .35s;
  padding: 80px 0 30px; overflow-y: auto;
}
.mobile-nav.open { left: 0; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a { padding: 14px 24px; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-nav a:active { background: rgba(70, 212, 34, 0.1); }
.overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 110;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay.show { opacity: 1; pointer-events: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent; transition: all .25s; text-transform: uppercase;
  font-family: var(--font-head); letter-spacing: 0.05em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #06130a; box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--green-glow); }
.btn-outline { border-color: var(--border2); color: var(--text); background: rgba(70, 212, 34, 0.05); }
.btn-outline:hover { background: rgba(70, 212, 34, 0.13); border-color: var(--green); }
.btn-dark { background: var(--surface2); color: var(--text); border-color: var(--border); }
.btn-dark:hover { border-color: var(--green); }
.btn-whatsapp { background: #1faa50; color: #fff; padding: 10px 20px; border-radius: 10px; font-size: .85rem; }
.btn-whatsapp:hover { background: #24c25c; transform: translateY(-2px); }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Hero Slider ---------- */
.hero {
  position: relative; height: calc(100vh - var(--header-h) - 34px); min-height: 560px; max-height: 860px;
  overflow: hidden; background: var(--bg);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.08);
}
.hero-slide.active .hero-bg img, .hero-slide.active .hero-bg video {
  animation: heroZoom 7s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.0); } }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.65) 45%, rgba(5, 7, 8, 0.25) 100%),
              linear-gradient(0deg, rgba(5, 7, 8, 0.9) 0%, transparent 35%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(70,212,34,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(70,212,34,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
}
.hero-content {
  position: relative; z-index: 5; height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  max-width: 640px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .2em; font-size: .8rem;
  text-transform: uppercase; color: var(--green);
  border: 1px solid var(--border2); border-radius: 99px; padding: 6px 16px;
  background: rgba(70, 212, 34, 0.07);
}
.hero-kicker::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .4; } }
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.3rem); font-weight: 700; }
.hero-title .accent { color: var(--green); text-shadow: 0 0 34px var(--green-glow); }
.hero-sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-slide .hero-kicker, .hero-slide .hero-title, .hero-slide .hero-sub, .hero-slide .hero-ctas {
  opacity: 0; transform: translateY(26px);
}
.hero-slide.active .hero-kicker { animation: rise .7s .15s forwards; }
.hero-slide.active .hero-title { animation: rise .7s .3s forwards; }
.hero-slide.active .hero-sub { animation: rise .7s .45s forwards; }
.hero-slide.active .hero-ctas { animation: rise .7s .6s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-nav {
  position: absolute; bottom: 30px; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; gap: 14px;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 42px; height: 5px; border-radius: 3px; border: 0;
  background: rgba(255, 255, 255, 0.18); position: relative; overflow: hidden;
}
.hero-dot .fill {
  position: absolute; inset: 0; width: 0; background: var(--green); border-radius: 3px;
}
.hero-dot.active .fill { animation: fillBar var(--slide-ms, 6500ms) linear forwards; }
@keyframes fillBar { to { width: 100%; } }
.hero-arrows { margin-left: auto; display: flex; gap: 8px; }
.hero-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(10, 13, 14, 0.6); color: var(--text); display: grid; place-items: center;
  backdrop-filter: blur(6px); transition: all .25s; font-size: 1.1rem;
}
.hero-arrow:hover { border-color: var(--green); color: var(--green); }
.hero-scroll {
  position: absolute; bottom: 26px; right: 4%; z-index: 9; color: var(--muted);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 8px;
}
.hero-scroll::after { content: ''; width: 1px; height: 46px; background: linear-gradient(var(--green), transparent); animation: drop 1.6s infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--green); color: #06130a; overflow: hidden; padding: 9px 0; position: relative; z-index: 5; }
.marquee-track {
  display: flex; gap: 42px; white-space: nowrap; width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .08em; font-size: .9rem;
  text-transform: uppercase;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; }
.section-dark { background: var(--bg2); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-kicker {
  color: var(--green); font-family: var(--font-head); font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; font-size: .8rem;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: 6px; }
.section-sub { color: var(--muted); max-width: 640px; margin: 12px auto 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 340px;
  border: 1px solid var(--border); background: var(--surface);
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.cat-card:hover { transform: translateY(-8px); border-color: var(--border2); box-shadow: 0 20px 44px rgba(0,0,0,.5), 0 0 0 1px var(--border2); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card-body {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  background: linear-gradient(transparent, rgba(4, 6, 7, 0.95) 55%);
  padding-top: 70px;
}
.cat-card h3 { font-size: 1.35rem; }
.cat-card p { color: var(--muted); font-size: .85rem; margin: 4px 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-card .link { color: var(--green); font-weight: 700; font-size: .85rem; text-transform: uppercase; font-family: var(--font-head); letter-spacing: .1em; }
.cat-card .link::after { content: ' →'; transition: margin .25s; }
.cat-card:hover .link::after { margin-left: 6px; }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; position: relative; transition: transform .35s, border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-7px); border-color: var(--border2); box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.prod-media { position: relative; aspect-ratio: 1; overflow: hidden; background: #fff; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .45s, transform .6s; }
.prod-media .img-hover { position: absolute; inset: 0; opacity: 0; }
.prod-card:hover .img-hover { opacity: 1; }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--green); color: #06130a; font-size: .68rem; font-weight: 800;
  padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .06em;
}
.prod-badge.badge-sale { background: var(--red); color: #fff; }
.prod-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-cat { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.prod-name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; text-transform: uppercase; }
.prod-name a:hover { color: var(--green); }
.prod-colors { display: flex; gap: 5px; flex-wrap: wrap; }
.color-dot {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, var(--c1) 50%, var(--c2) 50%);
}
.prod-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prod-price { display: flex; flex-direction: column; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .8rem; }
.price-now { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--green); }
.add-btn {
  width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--border2);
  background: rgba(70, 212, 34, 0.08); color: var(--green); display: grid; place-items: center;
  transition: all .25s;
}
.add-btn svg { width: 20px; height: 20px; }
.add-btn:hover { background: var(--green); color: #06130a; box-shadow: 0 0 18px var(--green-glow); }

/* ---------- Features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all .35s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity .35s;
}
.feat-card:hover { transform: translateY(-6px); border-color: var(--border2); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 16px;
  background: rgba(70, 212, 34, 0.1); border: 1px solid var(--border2);
  display: grid; place-items: center; color: var(--green); font-size: 1.6rem;
}
.feat-icon svg { width: 30px; height: 30px; }
.feat-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feat-card p { color: var(--muted); font-size: .86rem; }

/* Counters */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--green); text-shadow: 0 0 26px var(--green-glow); }
.stat-label { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Video reels ---------- */
.reels-wrap { position: relative; }
.reels {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 18px; scrollbar-width: thin; scrollbar-color: var(--green) transparent;
}
.reels::-webkit-scrollbar { height: 6px; }
.reels::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }
.reel {
  flex: 0 0 250px; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: start; position: relative; border: 1px solid var(--border);
  background: var(--surface); transition: border-color .3s, transform .3s;
}
.reel:hover { border-color: var(--border2); transform: translateY(-4px); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel .reel-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(6, 9, 7, 0.7); backdrop-filter: blur(6px); color: var(--text);
  font-size: .72rem; font-weight: 600; padding: 5px 11px; border-radius: 99px;
  border: 1px solid var(--border);
}
.reel .mute-ind { position: absolute; top: 10px; right: 10px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: rgba(6,9,7,.65); display: grid; place-items: center; font-size: .8rem; }

/* ---------- Color lab (interactive) ---------- */
.colorlab { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.colorlab-stage {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1;
  background: radial-gradient(ellipse at center, #182013 0%, var(--bg2) 70%);
  border: 1px solid var(--border);
}
.colorlab-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(.94) rotate(-1.5deg); transition: opacity .5s, transform .5s;
}
.colorlab-stage img.on { opacity: 1; transform: none; }
.colorlab-info h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 6px 0 14px; }
.colorlab-info p { color: var(--muted); margin-bottom: 22px; }
.swatches { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.swatch {
  width: 46px; height: 46px; border-radius: 13px; border: 2px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--c1) 50%, var(--c2) 50%);
  transition: all .25s; position: relative;
}
.swatch:hover { transform: scale(1.12); }
.swatch.on { border-color: var(--green); box-shadow: 0 0 0 3px rgba(70,212,34,.25), 0 0 18px var(--green-glow); transform: scale(1.12); }
.swatch-name { font-weight: 600; color: var(--text); margin-bottom: 18px; min-height: 24px; }
.swatch-name b { color: var(--green); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: 22px; overflow: hidden; padding: 60px 40px; text-align: center;
  background: linear-gradient(120deg, #0d1a09, #0a0f0c 60%);
  border: 1px solid var(--border2);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(70,212,34,.16), transparent 45%),
                    radial-gradient(circle at 80% 80%, rgba(70,212,34,.1), transparent 45%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.cta-band p { color: var(--muted); margin: 10px auto 24px; max-width: 560px; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: .82rem; color: var(--muted); padding: 18px 0 0; }
.crumbs a:hover { color: var(--green); }
.crumbs .sep { margin: 0 8px; opacity: .5; }

/* ---------- Category page ---------- */
.page-head { padding: 46px 0 10px; }
.page-head h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.page-head p { color: var(--muted); max-width: 720px; margin-top: 8px; }
.listing-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 26px 0 22px; }
.listing-count { color: var(--muted); font-size: .88rem; }
.select {
  background: var(--surface); color: var(--text); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: 9px; outline: none; font-size: .9rem;
}
.select:focus { border-color: var(--green); }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 46px; padding: 30px 0 70px; }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.pdp-main {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 1; background: #fff; position: relative;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.pdp-thumb {
  flex: 0 0 76px; aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer; background: #fff; padding: 0; transition: border-color .25s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.on { border-color: var(--green); }
.pdp-info h1 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin: 6px 0 10px; }
.pdp-short { color: var(--muted); margin-bottom: 18px; }
.pdp-price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0; }
.pdp-price .now { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--green); }
.pdp-price .old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.pdp-block { border-top: 1px solid var(--border); padding: 18px 0; }
.pdp-block > .lbl { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; display: block; }
.qty-row { display: flex; gap: 12px; align-items: stretch; }
.qty {
  display: flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  background: var(--surface);
}
.qty button { width: 44px; background: transparent; border: 0; color: var(--text); font-size: 1.2rem; }
.qty button:hover { color: var(--green); }
.qty input {
  width: 52px; text-align: center; background: transparent; border: 0; color: var(--text);
  font-weight: 700; font-size: 1rem; outline: none;
}
.pdp-add { flex: 1; }
.pdp-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: .84rem; padding-top: 14px; }
.pdp-meta b { color: var(--text); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.trust {
  border: 1px solid var(--border); border-radius: 10px; padding: 12px; text-align: center;
  font-size: .78rem; color: var(--muted); background: var(--surface);
}
.trust b { display: block; color: var(--text); font-size: .82rem; }

.tabs { border-bottom: 1px solid var(--border); display: flex; gap: 4px; margin-bottom: 26px; overflow-x: auto; }
.tab-btn {
  padding: 12px 22px; background: none; border: 0; color: var(--muted); font-weight: 700;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .95rem;
  border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap;
}
.tab-btn.on { color: var(--green); border-bottom-color: var(--green); }
.tab-pane { display: none; color: #c8d0cc; max-width: 860px; }
.tab-pane.on { display: block; animation: fadeIn .4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } }
.tab-pane p { margin-bottom: 14px; }
.spec-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.spec-list li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: .9rem; display: flex; gap: 10px; align-items: center;
}
.spec-list li::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; padding: 30px 0 70px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px;
}
.cart-item img { width: 92px; height: 92px; object-fit: cover; border-radius: 10px; background: #fff; }
.cart-item .ci-name { font-weight: 700; }
.cart-item .ci-variant { color: var(--muted); font-size: .82rem; }
.cart-item .ci-price { color: var(--green); font-weight: 700; margin-top: 4px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.ci-remove { background: none; border: 0; color: var(--muted); font-size: .8rem; }
.ci-remove:hover { color: var(--red); }
.summary {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: sticky; top: calc(var(--header-h) + 20px);
}
.summary h3 { margin-bottom: 16px; font-size: 1.2rem; }
.sum-row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--muted); font-size: .95rem; }
.sum-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; color: var(--text); font-weight: 700; font-size: 1.15rem; }
.sum-row.total .val { color: var(--green); font-family: var(--font-head); font-size: 1.5rem; }
.summary .btn { width: 100%; margin-top: 16px; }
.empty-box { text-align: center; padding: 90px 20px; }
.empty-box .big { font-size: 3.4rem; margin-bottom: 12px; }
.empty-box p { color: var(--muted); margin: 8px 0 22px; }

/* ---------- Forms ---------- */
.form-page { max-width: 460px; margin: 0 auto; padding: 50px 0 80px; }
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px;
}
.form-card h1 { font-size: 1.6rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: #c8d0cc; }
.input, textarea.input {
  width: 100%; background: var(--bg2); border: 1px solid var(--border); color: var(--text);
  padding: 12px 14px; border-radius: 10px; font-size: .95rem; outline: none; transition: border-color .25s;
}
.input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(70,212,34,.12); }
textarea.input { resize: vertical; min-height: 100px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.checkbox input { margin-top: 3px; accent-color: var(--green); }
.checkbox a { color: var(--green); text-decoration: underline; }
.form-alt { text-align: center; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.form-alt a { color: var(--green); font-weight: 600; }
.alert { border-radius: 10px; padding: 13px 16px; margin-bottom: 18px; font-size: .9rem; }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.35); color: #fca5a5; }
.alert-success { background: rgba(70, 212, 34, 0.08); border: 1px solid var(--border2); color: #b5f0a5; }
.alert ul { margin-left: 18px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; padding: 30px 0 70px; align-items: start; }
.co-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.co-card h3 { font-size: 1.15rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.co-card h3 .step {
  width: 28px; height: 28px; border-radius: 8px; background: var(--green); color: #06130a;
  display: grid; place-items: center; font-size: .9rem;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-opt { display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--border); border-radius: 10px; padding: 15px; margin-bottom: 10px; cursor: pointer; transition: border-color .25s, background .25s; }
.pay-opt:hover { border-color: var(--border2); }
.pay-opt.on { border-color: var(--green); background: rgba(70,212,34,.06); }
.pay-opt input { margin-top: 4px; accent-color: var(--green); }
.pay-opt .pt { font-weight: 700; }
.pay-opt .pd { color: var(--muted); font-size: .84rem; }
.pay-soon { opacity: .5; pointer-events: none; }
.mini-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mini-item:last-of-type { border-bottom: 0; }
.mini-item img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; background: #fff; }
.mini-item .mi-n { font-size: .88rem; font-weight: 600; }
.mini-item .mi-v { font-size: .76rem; color: var(--muted); }
.mini-item .mi-p { margin-left: auto; font-weight: 700; color: var(--green); white-space: nowrap; font-size: .9rem; }

/* ---------- Success ---------- */
.success-page { max-width: 640px; margin: 0 auto; padding: 60px 0 90px; text-align: center; }
.success-icon {
  width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(70,212,34,.1); border: 2px solid var(--green); color: var(--green);
  display: grid; place-items: center; font-size: 2.6rem;
  animation: pop .6s cubic-bezier(.2, 1.4, .4, 1);
}
@keyframes pop { from { transform: scale(0); } }
.order-no-chip {
  display: inline-block; background: var(--surface); border: 1px dashed var(--border2);
  padding: 10px 22px; border-radius: 10px; font-family: var(--font-head); font-weight: 700;
  font-size: 1.2rem; color: var(--green); margin: 14px 0;
}
.bank-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: left; margin: 22px 0; }
.bank-box h4 { margin-bottom: 10px; }
.bank-box p { font-size: .92rem; color: var(--muted); }
.bank-box .iban { font-family: monospace; font-size: 1.05rem; color: var(--text); background: var(--bg2); padding: 10px 14px; border-radius: 8px; margin: 8px 0; word-break: break-all; }

/* ---------- Account ---------- */
.account-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 30px; padding: 30px 0 70px; align-items: start; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th, .orders-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.orders-table th { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.status-chip { display: inline-block; padding: 3px 12px; border-radius: 99px; font-size: .74rem; font-weight: 700; }
.st-yeni { background: rgba(59,130,246,.15); color: #93c5fd; }
.st-onaylandi { background: rgba(70,212,34,.14); color: #b5f0a5; }
.st-hazirlaniyor { background: rgba(234,179,8,.15); color: #fde68a; }
.st-kargoda { background: rgba(168,85,247,.15); color: #d8b4fe; }
.st-teslim { background: rgba(70,212,34,.2); color: var(--green); }
.st-iptal { background: rgba(239,68,68,.15); color: #fca5a5; }

/* ---------- Static pages ---------- */
.static-page { max-width: 820px; margin: 0 auto; padding: 40px 0 80px; }
.static-page h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 24px; }
.static-content h2 { font-size: 1.4rem; margin: 26px 0 12px; color: var(--green); }
.static-content p { margin-bottom: 14px; color: #c8d0cc; }
.static-content strong { color: var(--text); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; padding: 30px 0 80px; align-items: start; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-info-card h3 { margin-bottom: 16px; }
.ci-row { display: flex; gap: 12px; margin-bottom: 16px; color: var(--muted); font-size: .92rem; }
.ci-row .ic { color: var(--green); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #05070a; border-top: 1px solid var(--border); padding: 70px 0 26px; position: relative; overflow: hidden; }
.footer-glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 280px; background: radial-gradient(ellipse, rgba(70,212,34,.09), transparent 70%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 44px; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--green); }
.footer-col a { display: block; color: var(--muted); font-size: .9rem; padding: 5px 0; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--green); padding-left: 5px; }
.footer-col p { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.footer-brand img { margin-bottom: 14px; }
.footer-tagline { font-family: var(--font-head); font-weight: 600; color: var(--text) !important; text-transform: uppercase; letter-spacing: .05em; }
.footer-desc { margin: 10px 0 18px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px; display: flex;
  justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: .82rem;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 56px; height: 56px;
  border-radius: 50%; background: #1faa50; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(31, 170, 80, 0.45); transition: transform .3s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 90px); z-index: 200;
  background: var(--surface2); border: 1px solid var(--border2); color: var(--text);
  padding: 14px 26px; border-radius: 12px; font-weight: 600; font-size: .92rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.6); transition: transform .4s cubic-bezier(.2, 1, .3, 1);
  max-width: 90vw; text-align: center;
}
.toast.show { transform: translate(-50%, 0); }
.toast-success { border-color: var(--green); }
.toast-error { border-color: var(--red); }
.toast-info { border-color: var(--border2); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 240px; }
  .pdp { grid-template-columns: 1fr; gap: 28px; }
  .pdp-gallery { position: static; }
  .colorlab { grid-template-columns: 1fr; gap: 26px; }
  .cart-layout, .checkout-layout, .account-layout, .contact-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .hero { min-height: 520px; }
  .hero-scroll { display: none; }
}
@media (max-width: 640px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-body { padding: 12px; }
  .prod-name { font-size: .95rem; }
  .price-now { font-size: 1.05rem; }
  .add-btn { width: 38px; height: 38px; }
  .feat-grid, .stats-band { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .topbar-in { justify-content: center; }
  .topbar-item:last-child { display: none; }
  .reel { flex-basis: 200px; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .ci-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .hero-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-row { grid-template-columns: 1fr; }
}

/* Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
