/* ============================================================
   VirHit v3 — VARIJABLE
   ============================================================ */
:root {
    --bg: #08090d;
    --bg2: #0f1219;
    --panel: rgba(255, 255, 255, 0.035);
    --panel-border: rgba(255, 255, 255, 0.09);
    --text: #f0f2f5;
    --muted: #8891a0;
    --yellow: #f9d423;
    --yellow2: #ffb347;
    --pink: #ff2e9f;
    --blue: #3ea6ff;
    --purple: #8b5cf6;
    --green: #39ff88;
    --card-bg: #0d1017;
    --card-thumb-bg1: #1a1c2b;
    --card-thumb-bg2: #2c2140;
    --header-bg: rgba(8, 9, 13, 0.65);
    --modal-bg: #0f1219;
    --mini-card-bg: #161927;
    --ticker-bg1: rgba(249, 212, 35, 0.08);
    --ticker-bg2: rgba(255, 46, 159, 0.08);
    --footer-border: rgba(255, 255, 255, 0.09);
    --input-bg: rgba(255, 255, 255, 0.05);
    --wish-bg: rgba(255, 255, 255, 0.06);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --font-b: 'Inter', sans-serif;
    --font-h: 'Orbitron', sans-serif;
    --telegram-blue: #0088cc;
    --telegram-light: #e3f2fd;
    --particle-dot: rgba(249, 212, 35, 0.55);
    --particle-line: 255, 255, 255;
}
html[data-theme="light"] {
    --bg: #eef0f4;
    --bg2: #ffffff;
    --panel: rgba(0, 0, 0, 0.06);
    --panel-border: rgba(0, 0, 0, 0.24);
    --text: #14161c;
    --muted: #3f4653;
    --yellow: #a97e00;
    --yellow2: #c0601a;
    --pink: #c82279;
    --blue: #1d66b0;
    --purple: #6735d0;
    --green: #0f8344;
    --card-bg: #ffffff;
    --card-thumb-bg1: #efe4d4;
    --card-thumb-bg2: #e2d4f0;
    --header-bg: rgba(255, 252, 248, 0.94);
    --modal-bg: #ffffff;
    --mini-card-bg: #ffffff;
    --ticker-bg1: rgba(169, 126, 0, 0.16);
    --ticker-bg2: rgba(200, 34, 121, 0.12);
    --footer-border: rgba(0, 0, 0, 0.2);
    --input-bg: rgba(0, 0, 0, 0.07);
    --wish-bg: rgba(0, 0, 0, 0.09);
    --shadow-color: rgba(0, 0, 0, 0.18);
    --particle-dot: rgba(140, 100, 0, 0.55);
    --particle-line: 45, 45, 55;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    overflow-x: hidden;
    position: relative;
    transition: background 0.5s ease, color 0.5s ease;
}
/* Preloader */
#preloader {
    position: fixed; inset: 0; background: var(--bg); z-index: 99999;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preload-logo {
    font-family: var(--font-h); font-size: 38px; font-weight: 900;
    background: linear-gradient(90deg, var(--yellow), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.preload-bar { width: 220px; height: 3px; background: rgba(128,128,128,0.2); border-radius: 10px; overflow: hidden; }
.preload-bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--yellow), var(--pink)); animation: loadBar 1.5s ease forwards; }
@keyframes loadBar { to { width: 100%; } }

/* Scroll progress */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--yellow), var(--pink), var(--blue)); z-index: 9999; box-shadow: 0 0 12px var(--yellow); }

/* Particles and blobs */
#particles { position: fixed; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; }
.blob { position: fixed; border-radius: 50%; filter: blur(110px); z-index: 0; opacity: 0.3; pointer-events: none; }
.blob1 { width: 460px; height: 460px; background: var(--purple); top: -150px; left: -120px; }
.blob2 { width: 500px; height: 500px; background: var(--pink); bottom: -200px; right: -150px; }
.blob3 { width: 340px; height: 340px; background: var(--blue); top: 40%; left: 50%; }
.noise-overlay {
    position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%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");
}

/* Floating social icons */
.social-bg-float { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.sf-icon { position: absolute; bottom: -15vh; opacity: 0.25; animation: sfFloat linear infinite; filter: drop-shadow(0 0 8px rgba(255,255,255,0.2)); }
.sf-icon.tiktok { color: #00f2ea; }
.sf-icon.instagram { color: #dd2a7b; }
.sf-icon.youtube { color: #ff0000; }
.sf-icon.pinterest { color: #e60023; }
.sf-icon.facebook { color: #1877f2; }
.sf-icon.telegram { color: #29b6f6; }
@keyframes sfFloat { 0% { transform: translateY(0) translateX(0) rotate(0deg); } 100% { transform: translateY(-130vh) translateX(20px) rotate(360deg); } }

/* Svetla tema — pozadina vidljiva uz kontrast */
html[data-theme="light"] .blob { opacity: 0.55; }
html[data-theme="light"] .sf-icon { opacity: 0.5; filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.18)); }
html[data-theme="light"] #particles { opacity: 0.45; }
html[data-theme="light"] .noise-overlay { opacity: 0.05; }

/* Side scroll (bočne trake) */
.side-scroll {
    display: none; position: fixed; top: 115px; bottom: 0;
    width: clamp(160px, 12vw, 215px); padding: clamp(6px, 1.2vw, 14px);
    overflow: hidden; z-index: 9000; pointer-events: auto;
    background: var(--header-bg); border: 1px solid var(--panel-border);
    border-radius: 0 0 16px 16px; box-shadow: 0 8px 24px var(--shadow-color);
    transition: opacity 0.4s, visibility 0.4s; opacity: 0; visibility: hidden; backdrop-filter: blur(14px);
}
.side-scroll.loaded { opacity: 1; visibility: visible; }
@media (min-width: 1400px) { .side-scroll.loaded { display: block; } }
.side-scroll.left { left: 14px; }
.side-scroll.right { right: 14px; }
.scroll-track { display: flex; flex-direction: column; gap: 14px; animation: scrollUp 24s linear infinite; }
.side-scroll.right .scroll-track { animation-direction: reverse; }
@keyframes scrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.mini-card {
    background: var(--mini-card-bg); border: 1px solid var(--panel-border); border-radius: 14px;
    padding: 11px; transition: transform 0.3s; cursor: pointer; text-align: center; color: var(--text);
}
.mini-card:hover { transform: scale(1.04); }
.mini-thumb {
    width: 100%; aspect-ratio: 1/1; border-radius: 10px; margin-bottom: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
    background: linear-gradient(135deg, var(--card-thumb-bg1), var(--card-thumb-bg2));
}
.mini-card h5 { font-family: var(--font-b); font-size: 11px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; min-height: 28px; }
.mini-price { font-family: var(--font-h); font-size: 12px; color: var(--yellow); font-weight: 800; }
.mini-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 800; padding: 3px 8px; border-radius: 12px; margin-bottom: 7px; text-transform: uppercase; }

/* Platform badges */
.platform-badge, .mini-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px;
    border-radius: 20px; font-size: 10px; font-weight: 800; margin-bottom: 12px;
    box-shadow: 0 4px 14px var(--shadow-color); white-space: nowrap;
}
.platform-badge.tiktok, .mini-badge.tiktok { background: linear-gradient(90deg, #00f2ea, #ff0050); color: #08090d; }
.platform-badge.instagram, .mini-badge.instagram { background: linear-gradient(90deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4); color: #fff; }
.platform-badge.youtube, .mini-badge.youtube { background: #ff0000; color: #fff; }
.platform-badge.pinterest, .mini-badge.pinterest { background: linear-gradient(90deg, #c8102e, #e60023); color: #fff; }
.platform-badge.facebook, .mini-badge.facebook { background: linear-gradient(90deg, #1877f2, #0a4da4); color: #fff; }
.flame { display: inline-block; animation: flamePulse 1s ease-in-out infinite; }
@keyframes flamePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* Social strip — male ikone svih mreža na kartici proizvoda */
.social-strip { display: flex; gap: 5px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.social-strip .soc { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; }
.social-strip .soc.tiktok { background: #000; color: #fff; }
.social-strip .soc.tiktok i { color: #00f2ea; }
.social-strip .soc.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); color: #fff; }
.social-strip .soc.youtube { background: #ff0000; color: #fff; }
.social-strip .soc.pinterest { background: #e60023; color: #fff; }
.social-strip .soc.facebook { background: #1877f2; color: #fff; }
.social-strip .soc.x { background: #000; color: #fff; }
.social-strip .soc.x i { color: var(--bg2); }
.social-strip .hot-badge { display: inline-flex; align-items: center; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; background: linear-gradient(90deg, #ff2e9f, #ff7b2e); padding: 4px 10px; border-radius: 20px; white-space: nowrap; margin-right: 4px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 50px; font-family: var(--font-h); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border: none; }
.btn-glow { background: linear-gradient(90deg, var(--yellow), var(--yellow2)); color: #000; }

/* Header */
header { position: sticky; top: 0; z-index: 500; background: var(--header-bg); backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--panel-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 14px; padding: 0 24px; max-width: 1280px; margin: 0 auto; }
.logo .main { font-family: var(--font-h); font-size: 24px; font-weight: 900; background: linear-gradient(90deg, var(--text), var(--yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo .sub { font-size: 8px; letter-spacing: 4px; color: var(--muted); }
nav.main-nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
nav.main-nav a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; position: relative; padding: 6px 0; transition: color 0.3s; }
nav.main-nav a.active, nav.main-nav a:hover { color: var(--yellow); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: -14px; min-width: 190px; padding: 14px 0; background: var(--modal-bg); border: 1px solid var(--panel-border); border-radius: 12px; opacity: 0; visibility: hidden; transition: 0.25s; z-index: 5000; pointer-events: none; }
.dropdown:hover > .dropdown-menu, .dropdown.open > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-menu a { display: block; padding: 10px 20px; font-weight: 400; font-size: 12.5px; text-transform: none; letter-spacing: 0; }
.dropdown-menu a:hover { background: rgba(249,212,35,0.08); }
.header-icons { display: flex; align-items: center; gap: 16px; }
.icon-btn { position: relative; font-size: 16px; cursor: pointer; background: none; border: none; color: var(--text); padding: 4px; transition: color 0.25s, transform 0.25s; }
.icon-btn:hover { color: var(--yellow); transform: translateY(-2px); }
.cart-badge { position: absolute; top: -7px; right: -9px; background: var(--yellow); color: #000; font-size: 9px; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; }
@media (max-width: 1180px) { nav.main-nav { display: none; } .burger { display: block; } }
.locale-switch select { background: var(--input-bg); border: 1px solid var(--panel-border); color: var(--text); padding: 6px 8px; border-radius: 8px; font-size: 11px; cursor: pointer; }

/* Ticker */
.ticker-wrap { background: linear-gradient(90deg, var(--ticker-bg1), var(--ticker-bg2)); border-bottom: 1px solid var(--panel-border); overflow: hidden; white-space: nowrap; padding: 8px 0; pointer-events: none; }
.ticker { display: inline-block; animation: scrollTicker 22s linear infinite; }
.ticker span { margin: 0 30px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.ticker span i { color: var(--yellow); margin-right: 8px; }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0 90px; }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .tag { font-size: 11px; letter-spacing: 3px; color: var(--yellow); text-transform: uppercase; font-weight: 700; }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 8px; font-family: var(--font-h); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .products-grid { grid-template-columns: 1fr; } }
.pcard { position: relative; border-radius: 20px; padding: 1px; background: linear-gradient(145deg, var(--panel-border), transparent); transition: transform 0.35s; }
.pcard:hover { transform: translateY(-8px); }
.pcard-inner { background: var(--card-bg); border-radius: 19px; padding: 20px; height: 100%; }
.badge { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 9.5px; font-weight: 800; padding: 5px 11px; border-radius: 20px; background: var(--pink); color: #fff; text-transform: uppercase; }
.wish { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--wish-bg); border: 1px solid var(--panel-border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); transition: background 0.25s, color 0.25s; }
.wish:hover, .wish.active { background: var(--pink); color: #fff; }
.p-thumb { width: 100%; aspect-ratio: 1/1; border-radius: 14px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; font-size: 42px; color: var(--text); background: linear-gradient(145deg, var(--card-thumb-bg1), var(--card-thumb-bg2)); overflow: hidden; }
.p-thumb img { width: 100%; height: 100%; object-fit: cover; }
.p-title { font-size: 14px; font-weight: 600; min-height: 38px; margin-bottom: 6px; }
.p-rating { color: var(--yellow); font-size: 11px; margin-bottom: 8px; }
.p-price { display: flex; gap: 7px; margin-bottom: 10px; }
.p-price .now { font-family: var(--font-h); font-size: 17px; font-weight: 800; color: var(--yellow); }
.p-price .old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.stock-bar { height: 5px; border-radius: 10px; background: var(--panel-border); overflow: hidden; margin-bottom: 5px; }
.stock-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--pink), var(--yellow)); }
.stock-text { font-size: 9.5px; color: var(--pink); font-weight: 700; margin-bottom: 10px; }
.p-actions { display: flex; gap: 7px; }
.p-add { flex: 1; padding: 11px; border-radius: 10px; border: 1px solid var(--panel-border); background: var(--input-bg); color: var(--text); font-weight: 700; font-size: 11.5px; text-transform: uppercase; cursor: pointer; transition: background 0.3s, color 0.3s; }
.p-add:hover { background: var(--yellow); color: #000; }
.p-quick { width: 40px; border-radius: 10px; border: 1px solid var(--panel-border); background: var(--input-bg); color: var(--text); cursor: pointer; transition: background 0.3s, color 0.3s; }
.p-quick:hover { background: var(--blue); color: #fff; }

/* Footer */
footer { padding: 70px 0 22px; border-top: 1px solid var(--footer-border); margin-top: 30px; position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-col h4 { font-size: 13px; color: var(--yellow); margin-bottom: 16px; letter-spacing: 1px; }
.footer-col a { font-size: 13.5px; color: var(--text); font-weight: 500; transition: color 0.25s, padding-left 0.25s; display: block; padding: 3px 0; }
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--panel-border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: background 0.3s, color 0.3s, transform 0.3s; }
.social-row a:hover { background: var(--yellow); color: #000; transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); border-top: 1px solid var(--footer-border); padding-top: 20px; flex-wrap: wrap; gap: 8px; }

/* Mobile menu */
.mnav { position: fixed; top: 0; right: 0; bottom: 0; width: 82%; max-width: 330px; background: var(--bg2); z-index: 2000; padding: 90px 26px; right: -110%; transition: right 0.4s; overflow-y: auto; }
.mnav.open { right: 0; }
.mnav ul { list-style: none; padding: 0; margin: 0; }
.mnav a { display: block; padding: 15px 0; text-transform: uppercase; font-size: 14px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--panel-border); }
.mnav-close { position: absolute; top: 26px; right: 26px; font-size: 20px; background: none; border: none; color: var(--text); cursor: pointer; }
.overlay-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
.overlay-bg.show { opacity: 1; visibility: visible; }

/* Chat bubble */
#chat-bubble { position: fixed; bottom: 20px; right: 20px; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 32px; color: #0b0c12; cursor: pointer; z-index: 10000; box-shadow: 0 10px 30px var(--shadow-color), 0 0 25px rgba(249,212,35,0.4); animation: chatBounce 3s infinite; border: none; }
#chat-bubble .chat-logo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
@keyframes chatBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
#chat-bubble .chat-badge { position: absolute; top: -4px; right: -4px; background: #ff2e2e; color: #fff; font-size: 10px; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
#chat-window { position: fixed; bottom: 94px; right: 20px; width: 360px; max-height: 460px; background: var(--modal-bg); border: 1px solid var(--panel-border); border-radius: 18px; z-index: 10000; display: flex; flex-direction: column; transform: scale(0); transform-origin: bottom right; transition: 0.3s; overflow: hidden; box-shadow: 0 30px 60px var(--shadow-color); }
#chat-window.open { transform: scale(1); }
.chat-head { padding: 12px 16px; background: linear-gradient(90deg, var(--yellow), var(--pink)); color: #0b0c12; font-weight: 800; font-size: 13px; display: flex; justify-content: space-between; align-items: center; }
.chat-head .chat-status { font-size: 10px; font-weight: 400; opacity: 0.9; margin-left: auto; margin-right: 10px; }
.chat-head button { background: none; border: none; color: #fff; cursor: pointer; font-size: 14px; }
.chat-body { padding: 14px; flex: 1; overflow-y: auto; background: var(--bg2); display: flex; flex-direction: column; gap: 6px; }
.chat-msg { background: var(--input-bg); color: var(--text); padding: 9px 13px; border-radius: 13px; font-size: 11.5px; max-width: 85%; line-height: 1.4; word-wrap: break-word; }
.chat-msg.me { align-self: flex-end; background: var(--telegram-light); color: #000; border-bottom-right-radius: 4px; }
.chat-msg.bot { align-self: flex-start; background: var(--panel); border-bottom-left-radius: 4px; }
.typing-indicator { display: flex; gap: 4px; padding: 8px 14px; background: var(--panel); border-radius: 13px; align-self: flex-start; }
.typing-indicator span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: typing 1.2s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.chat-foot { display: flex; border-top: 1px solid var(--panel-border); background: var(--bg2); }
.chat-foot input { flex: 1; background: transparent; border: none; padding: 12px 14px; color: var(--text); outline: none; font-size: 11.5px; }
.chat-foot input::placeholder { color: var(--muted); }
.chat-foot button { background: none; border: none; color: var(--telegram-blue); font-size: 15px; padding: 0 14px; cursor: pointer; }

@media (min-width: 1400px) {
    #chat-bubble { right: calc(14px + 215px + 20px); }
    #chat-window { right: calc(14px + 215px + 20px); }
}

/* Cookie banner */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 5000; background: var(--modal-bg); border-top: 1px solid var(--panel-border); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; transform: translateY(100%); transition: 0.4s; }
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 12px; color: var(--muted); margin: 0; max-width: 650px; }
.btn-sm { padding: 9px 18px; border-radius: 30px; font-size: 10.5px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-sm.accept { background: var(--yellow); color: #000; border: none; }
.btn-sm.decline { background: transparent; color: var(--muted); border: 1px solid var(--panel-border); }

/* Exit modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 6000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box { background: var(--modal-bg); border: 1px solid var(--panel-border); border-radius: 22px; padding: 36px; max-width: 420px; width: 100%; position: relative; }
#exit-modal .modal-box { text-align: center; max-width: 420px; }
.modal-close { position: absolute; top: 14px; right: 14px; background: var(--wish-bg); border: 1px solid var(--panel-border); border-radius: 50%; width: 34px; height: 34px; color: var(--text); cursor: pointer; }
.exit-code { display: inline-block; background: rgba(249,212,35,0.1); border: 1.5px dashed var(--yellow); padding: 11px 24px; border-radius: 10px; font-family: var(--font-h); font-size: 20px; color: var(--yellow); margin: 16px 0; letter-spacing: 2px; }

/* Back to top */
#toTop { position: fixed; bottom: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); color: #000; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; border: none; z-index: 10000; }
#toTop.show { opacity: 1; visibility: visible; }

/* 3D tilt */
.tilt { transition: transform 0.25s ease; transform-style: preserve-3d; will-change: transform; }

/* Static page helpers (about / contact / size-guide) */
.reveal { animation: vhReveal 0.6s ease both; }
@keyframes vhReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.about-copy, .contact-copy { margin: 0 auto; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-box { background: var(--card-bg); border: 1px solid var(--panel-border); border-radius: 16px; padding: 22px 16px; text-align: center; }
.num { font-family: var(--font-h); font-size: 30px; color: var(--yellow); }
.lbl { font-size: 12px; color: var(--muted); margin-top: 6px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.contact-form input, .contact-form textarea,
.news-form input, .news-form textarea {
    width: 100%; background: var(--input-bg); color: var(--text);
    border: 1px solid var(--panel-border); border-radius: 12px; padding: 14px;
    margin-bottom: 12px; font-family: var(--font-b); font-size: 14px;
}
.contact-form input:focus, .news-form input:focus,
.contact-form textarea:focus, .news-form textarea:focus { outline: none; border-color: var(--yellow); }

/* Responsive */
@media (max-width: 768px) {
    .blob, .sf-icon, .social-bg-float, .ticker-wrap { display: none; }
    .header-inner { height: 62px; }
    .locale-switch { display: none; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pcard-inner { padding: 16px; }
    #chat-bubble { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 26px; }
    #chat-window { right: 16px; bottom: 76px; width: calc(100vw - 32px); }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}