/* =========================================
   Base Variables & Themes
========================================= */
:root {
    --brand:       hsl(214, 92%, 52%);   /* Ana mavi */
    --brand-dark:  hsl(214, 92%, 38%);
    --brand-light: hsl(214, 92%, 65%);
    --brand-2:     hsl(182, 88%, 42%);   /* Gradient ikinci renk - teal */
    --accent:      hsl(38, 95%, 55%);    /* Sarı/gold vurgu */
    --danger:      hsl(0, 85%, 57%);

    --bg:          hsl(216, 18%, 97%);
    --bg2:         hsl(0, 0%, 100%);
    --bg3:         hsl(216, 14%, 95%);
    --surface:     rgba(255,255,255,0.95);
    --surface-h:   rgba(255,255,255,1);

    --text:        hsl(216, 25%, 10%);
    --text2:       hsl(216, 12%, 40%);
    --border:      hsl(216, 15%, 88%);

    --shadow-xs:   0 1px 4px rgba(20,80,180,0.06);
    --shadow-sm:   0 2px 10px rgba(20,80,180,0.08);
    --shadow-md:   0 6px 24px rgba(20,80,180,0.12);
    --shadow-lg:   0 16px 48px rgba(20,80,180,0.16);
    --shadow-br:   0 8px 30px rgba(20,90,200,0.28);

    --radius-xs:   6px;
    --radius-sm:   10px;
    --radius-md:   14px;
    --radius-lg:   20px;

    --tr: all 0.25s cubic-bezier(.4, 0, .2, 1);
}

body.dark-mode {
    --bg:          hsl(218, 24%, 7%);
    --bg2:         hsl(218, 22%, 10%);
    --bg3:         hsl(218, 20%, 13%);
    --surface:     rgba(12, 20, 40, 0.92);
    --surface-h:   rgba(16, 26, 52, 0.98);

    --text:        hsl(216, 20%, 95%);
    --text2:       hsl(216, 15%, 62%);
    --border:      hsl(216, 22%, 20%);

    --shadow-xs:   0 1px 4px rgba(0,0,0,0.3);
    --shadow-sm:   0 2px 10px rgba(0,0,0,0.35);
    --shadow-md:   0 6px 24px rgba(0,0,0,0.4);
    --shadow-lg:   0 16px 48px rgba(0,0,0,0.5);
    --shadow-br:   0 8px 30px rgba(20,90,200,0.45);
}

/* =========================================
   Reset
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden { display: none !important; }

/* =========================================
   Trust Bar
========================================= */
.trust-bar { display: none; }

/* ── Stats gizle ── */
.stats-section { display: none; }

/* ── Payment gizle ── */
.payment-section { display: none; }

/* =========================================
   Navbar
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1001;
    box-shadow: var(--shadow-sm);
    transition: background 0.3s, box-shadow 0.3s;
}

body.dark-mode .navbar {
    background: rgba(8, 14, 32, 0.96);
    border-bottom-color: var(--border);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}
.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s;
}
body.dark-mode .logo img { filter: brightness(0) invert(1); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text2);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-xs);
    transition: var(--tr);
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--brand);
    background: rgba(20,90,200,0.07);
}

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.icon-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
    font-size: 1rem;
}
.icon-btn:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.mobile-menu-btn { display: none !important; }

/* Mobile Nav Menu */
.m-nav-menu {
    display: none;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
}
.m-nav-menu.open { display: flex; }
.m-nav-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--tr);
}
.m-nav-menu a:hover { color: var(--brand); background: rgba(20,90,200,0.06); }
.m-nav-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex !important; }
    .nav-links { display: none !important; }
}

/* ── Nav Search Bar ── */
.nav-container {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-search-wrap {
    display: flex;
    align-items: center;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
    max-width: 200px;
    width: 200px;
}
.nav-search-wrap:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(20,100,220,0.15);
}
.nav-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text);
    font-family: inherit;
    min-width: 0;
}
.nav-search-input::placeholder { color: var(--text2); }
.nav-search-btn {
    width: 34px; height: 34px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: none;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 999px;
    margin: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tr);
}
.nav-search-btn:hover { filter: brightness(1.1); transform: scale(1.05); }

/* ── Category Nav Bar ── */
.cat-nav-bar {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-nav-bar::-webkit-scrollbar { display: none; }
.cat-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    white-space: nowrap;
}
.cat-nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 0.55rem 1rem;
    font-size: 0.78rem; font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--tr);
    white-space: nowrap;
}
.cat-nav-link:hover { color: var(--brand); border-bottom-color: var(--brand); }
.cat-nav-link i { font-size: 0.85rem; }

/* ── Search result indicator ── */
#search-result-info {
    text-align: center;
    padding: 0.5rem 0 1rem;
    color: var(--text2);
    font-size: 0.85rem;
    display: none;
}
#search-result-info.visible { display: block; }

/* Old hero hidden — replaced by 3-panel */
/* .hero { display: none !important; } */

/* ═══════════════════════════════════════════
   Hero — Times Square Background
═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

/* Video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.28) saturate(1.7) hue-rotate(15deg);
    transform: scale(1.05);
}

/* Cyberpunk gradient overlay on hero */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 70%, rgba(20, 80, 200, 0.40) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 160, 220, 0.28) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 90%, rgba(0, 200, 255, 0.18) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,8,25,0.58) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    color: #fff;
}

/* Hero slogan — tek satır, şık */
.hero-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

/* Hero Search Bar */
.hero-search-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    overflow: hidden;
    max-width: 520px;
    margin: 1.25rem auto 0;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.hero-search-wrap:focus-within {
    border-color: rgba(255,255,255,0.55);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}
.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: #fff;
    font-family: inherit;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.55); }
.hero-search-btn {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 999px;
    margin: 4px;
    padding: 0.6rem 1.25rem;
    display: flex; align-items: center; gap: 6px;
    transition: var(--tr);
    white-space: nowrap;
}
.hero-search-btn:hover { filter: brightness(1.15); transform: scale(1.03); }

/* ═══════════════════════════════════════════
   Hero — 3-Panel Slider
═══════════════════════════════════════════ */
.hero-3panel-section {
    padding-top: 105px; /* navbar (64) + cat-bar (~41) */
    padding-bottom: 0;
    background: var(--bg);
}

.hero-3panel {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 8px;
    height: 400px;
    margin-bottom: 0;
}

/* ── Main Slider Panel ── */
.panel-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

/* ── Individual Slides ── */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slide backgrounds */
.slide-ai  .slide-bg { background: linear-gradient(135deg, #0a0118 0%, #1a0b4e 40%, #2d1060 60%, #0d0025 100%); }
.slide-win .slide-bg { background: linear-gradient(135deg, #001a33 0%, #002d5e 45%, #003f8a 70%, #001022 100%); }
.slide-wp  .slide-bg { background: linear-gradient(135deg, #031a16 0%, #063d2e 50%, #0a5c40 70%, #010e0b 100%); }

.slide-bg {
    position: absolute; inset: 0;
    z-index: 0;
}

.slide-content {
    position: relative; z-index: 2;
    padding: 2.5rem 2.5rem;
    max-width: 60%;
    color: #fff;
}

.slide-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.6rem;
    background: rgba(255,255,255,0.08);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
}

.slide-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slide-ai  .slide-content h2 span { color: #c084fc; }
.slide-win .slide-content h2 span { color: #38bdf8; }
.slide-wp  .slide-content h2 span { color: #34d399; }

.slide-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.slide-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}
.sp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
}
.sp-item img { height: 16px; width: 16px; object-fit: contain; }
.sp-item i   { font-size: 0.9rem; }

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,1);
    color: #1a0b4e;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--tr);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.slide-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); opacity: 0.95; }

/* Decorative circles */
.slide-deco {
    position: absolute; right: 0; top: 0;
    width: 50%; height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.deco-circle.c1 {
    width: 280px; height: 280px;
    border: 50px solid rgba(255,255,255,0.5);
    top: -60px; right: -60px;
}
.deco-circle.c2 {
    width: 200px; height: 200px;
    border: 30px solid rgba(255,255,255,0.3);
    bottom: -40px; right: 40px;
}
.deco-icon {
    position: absolute;
    right: 14%; top: 50%; transform: translateY(-50%);
    font-size: 6rem;
    opacity: 0.35;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
    animation: floatIcon 4s ease-in-out infinite;
}
.deco-icon img { width: 96px; height: 96px; object-fit: contain; }
@keyframes floatIcon {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50%       { transform: translateY(-50%) translateY(-12px); }
}

/* ── Slider Dots ── */
.slider-dots {
    position: absolute;
    bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 10;
}
.sdot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
}
.sdot.active { background: #fff; width: 22px; border-radius: 4px; }

/* ── Slider Arrows ── */
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 38px; height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tr);
    line-height: 1;
}
.slider-arrow:hover { background: rgba(255,255,255,0.22); }
.arr-prev { left: 10px; }
.arr-next { right: 10px; }

/* ── Side Banners ── */
.panel-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.side-banner {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    transition: var(--tr);
    border: 1px solid rgba(255,255,255,0.06);
}
.side-banner:hover { transform: scale(1.02); }

.sb-ai  { background: linear-gradient(135deg, #0f0a2e 0%, #2a1060 50%, #1a0a50 100%); }
.sb-win { background: linear-gradient(135deg, #001a33 0%, #003366 50%, #001a33 100%); }

.sb-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    width: 100%;
}
.sb-icons {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 0.15rem;
}
.sb-icons img { width: 32px; height: 32px; object-fit: contain; }
.sb-win-ico { font-size: 1.8rem; color: #00a4ef; }
.sb-wp-ico  { font-size: 1.8rem; color: #21759b; }

.sb-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.sb-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}
.sb-cta {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    display: inline-block;
    padding-bottom: 1px;
    width: fit-content;
    transition: color 0.2s;
}
.side-banner:hover .sb-cta { color: #fff; }

.sb-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-3panel { grid-template-columns: 1fr; height: auto; }
    .panel-side { flex-direction: row; height: 150px; }
    .slide-content h2 { font-size: 2rem; }
    .slide-content { max-width: 75%; }
}
@media (max-width: 600px) {
    .hero-3panel-section { padding-top: 110px; }
    .panel-side { flex-direction: column; height: auto; }
    .panel-main { height: 300px; }
    .slide-content h2 { font-size: 1.6rem; }
    .slide-content { padding: 1.5rem; max-width: 80%; }
    .nav-search-wrap { max-width: 180px; }
}



.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}
.hero-eyebrow i { color: var(--accent); }

/* ── Hero heading — Outfit font ── */
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.hero h1 .hl {
    background: linear-gradient(135deg, #c084fc, #818cf8, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hero-trust-item i { color: #86efac; font-size: 0.75rem; }

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--tr);
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 4px 20px rgba(20,90,200,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(20,90,200,0.5);
    filter: brightness(1.08);
}
.btn-outline {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
}

/* =========================================
   Times Square Billboard Panels
========================================= */
.billboards {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 3;
    pointer-events: none;
}
.billboards-left  { left: 2.5%; }
.billboards-right { right: 2.5%; }

.billboard {
    width: 128px;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow:
        0 0 18px rgba(20,100,220,0.5),
        0 0 50px rgba(20,100,220,0.18),
        inset 0 0 12px rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    animation: bbFloat 6s ease-in-out infinite;
}

/* Each billboard unique colors & delay */
.billboards-left  .billboard:nth-child(1) { animation-delay: 0s;   background: linear-gradient(145deg, rgba(8,14,34,0.9),   rgba(20,60,180,0.7)); }
.billboards-left  .billboard:nth-child(2) { animation-delay: 1.6s; background: linear-gradient(145deg, rgba(22,10,10,0.9),  rgba(180,30,10,0.6)); }
.billboards-left  .billboard:nth-child(3) { animation-delay: 3.2s; background: linear-gradient(145deg, rgba(0,18,44,0.9),   rgba(0,80,200,0.6)); }
.billboards-right .billboard:nth-child(1) { animation-delay: 0.9s; background: linear-gradient(145deg, rgba(8,20,16,0.9),   rgba(10,140,60,0.6)); }
.billboards-right .billboard:nth-child(2) { animation-delay: 2.4s; background: linear-gradient(145deg, rgba(8,14,34,0.9),   rgba(20,60,180,0.7)); }
.billboards-right .billboard:nth-child(3) { animation-delay: 3.8s; background: linear-gradient(145deg, rgba(0,20,40,0.9),   rgba(0,120,200,0.65)); }

@keyframes bbFloat {
    0%, 100% { transform: translateY(0);     box-shadow: 0 0 18px rgba(20,100,220,0.5),  0 0 50px rgba(20,100,220,0.18); }
    50%       { transform: translateY(-10px); box-shadow: 0 0 32px rgba(80,160,255,0.65), 0 0 70px rgba(20,100,220,0.3); }
}

.bb-inner {
    padding: 0.9rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

/* Horizontal scan line */
.bb-inner::before {
    content: '';
    position: absolute;
    left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: bbScan 3.5s linear infinite;
}
@keyframes bbScan {
    0%   { top: -2px;  opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { top: 105%;  opacity: 0; }
}

.bb-inner img,
.bb-inner > i {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(200,150,255,0.75));
    animation: bbGlow 2.8s ease-in-out infinite alternate;
    display: block;
}
@keyframes bbGlow {
    from { filter: drop-shadow(0 0 6px  rgba(180,120,255,0.6)); }
    to   { filter: drop-shadow(0 0 18px rgba(230,190,255,1)); }
}

.bb-label {
    font-size: 0.67rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-align: center;
    letter-spacing: 0.025em;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(200,160,255,0.6);
}
.bb-price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    color: #c084fc;
    text-shadow: 0 0 12px rgba(192,132,252,0.9);
    line-height: 1;
}
.bb-tag {
    font-size: 0.58rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    animation: bbPulse 2s ease-in-out infinite;
    white-space: nowrap;
}
@keyframes bbPulse {
    0%, 100% { opacity: 1;    transform: scale(1); }
    50%       { opacity: 0.65; transform: scale(0.93); }
}

/* Hide on smaller screens */
@media (max-width: 1200px) { .billboards { display: none; } }

/* =========================================
   Ticker Bar
========================================= */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--brand-dark);
    padding: 11px 0;
    white-space: nowrap;
    position: relative;
}
.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: tickMove 45s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }
.ticker-item {
    display: inline-block;
    padding: 0 36px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}
.ticker-item i { margin-right: 6px; }
.ticker-badge {
    display: inline-block;
    background: var(--accent);
    color: #1a0a00;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: 6px;
    letter-spacing: 0.04em;
    vertical-align: middle;
    text-transform: uppercase;
}
@keyframes tickMove {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =========================================
   Stats
========================================= */
.stats-section {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 2.25rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px;
    background: var(--border);
}
.stat-icon { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--brand); opacity: 0.7; }
.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.82rem; color: var(--text2); font-weight: 500; }

/* =========================================
   Products Section
========================================= */
.products-section {
    padding: 4rem 0 5rem;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.section-header p { color: var(--text2); font-size: 0.95rem; }

/* Category Filter — horizontal pill tabs */
.category-filter {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
}
.filter-btn {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    color: var(--text2);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--tr);
    flex-shrink: 0;
}
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 3px 14px rgba(20,90,200,0.3);
}

/* Product Grid — 5 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

/* Product Card */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--shadow-xs);
}
body.dark-mode .product-card {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-br);
    border-color: rgba(20,90,200,0.35);
}

/* Image container */
.product-image-container {
    height: 160px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}
body.dark-mode .product-image-container { background: rgba(255,255,255,0.03); }
.product-image-container img {
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
    transition: transform 0.3s;
}
.product-card:hover .product-image-container img { transform: scale(1.08); }

/* Clickable product card links */
.prod-art-link { display: block; text-decoration: none; }
.prod-art-link .prod-art { transition: opacity .2s; }
.prod-art-link:hover .prod-art { opacity: .92; }
.product-title-link { text-decoration: none; color: inherit; }
.product-title-link:hover .product-title { color: var(--brand); }

/* =========================================
   Product Artwork Panel (Clean Style)
========================================= */
.prod-art {
    width: 100%;
    height: 170px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--bg3);
}
body.dark-mode .prod-art { background: rgba(255,255,255,0.04); }

.prod-art::before { display: none; }
.prod-art::after  { display: none; }

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-5px); }
}

.prod-art-logo {
    width: 85px;
    height: 85px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
    animation: logoFloat 4s ease-in-out infinite;
    transition: filter 0.3s, transform 0.3s;
}
.product-card:hover .prod-art-logo {
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
    animation-play-state: paused;
    transform: scale(1.07) translateY(-3px);
}

/* Bottom category label strip */
.prod-art-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 4px 10px;
    background: rgba(0,0,0,0.06);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text2);
    text-align: center;
    z-index: 3;
}
body.dark-mode .prod-art-label {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
}

/* Category classes kept for future use - no background override */
.prod-art-ai,
.prod-art-software,
.prod-art-wp-plugins,
.prod-art-wp-themes,
.prod-art-antivirus-vpn,
.prod-art-windows,
.prod-art-smm { background: var(--bg3); }
body.dark-mode .prod-art-ai,
body.dark-mode .prod-art-software,
body.dark-mode .prod-art-wp-plugins,
body.dark-mode .prod-art-wp-themes,
body.dark-mode .prod-art-antivirus-vpn,
body.dark-mode .prod-art-windows,
body.dark-mode .prod-art-smm { background: rgba(255,255,255,0.04); }



/* Badges */
.product-badge-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 4;
}
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-bestseller { background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; box-shadow: 0 2px 8px rgba(245,158,11,0.5); }
.badge-new        { background: linear-gradient(135deg, #10b981, #059669); color: #fff; box-shadow: 0 2px 8px rgba(16,185,129,0.5); }
.badge-hot        { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; box-shadow: 0 2px 8px rgba(239,68,68,0.5); }

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 4px 9px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(20,90,200,0.45);
    z-index: 4;
}

/* Card body */
.product-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}
.product-desc {
    color: var(--text2);
    font-size: 0.75rem;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Star rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text2);
}
.stars { color: #f59e0b; font-size: 0.7rem; letter-spacing: 1px; }
.rating-count { color: var(--text2); }

/* Price row */
.product-price-row {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: auto;
}
.old-price {
    text-decoration: line-through;
    color: var(--text2);
    font-size: 0.78rem;
}
.current-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
}

/* Buy button */
.buy-btn {
    display: none; /* Geçici olarak gizlendi — açmak için bu satırı kaldır */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    margin-top: 0.75rem;
    transition: var(--tr);
    box-shadow: 0 3px 12px rgba(20,90,200,0.3);
}
.buy-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(20,90,200,0.4);
}

/* Skeleton */
.skeleton-card {
    height: 340px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.skeleton-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: skelMove 1.4s infinite;
}
@keyframes skelMove {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* =========================================
   Features Section
========================================= */
.features-section {
    padding: 4rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: var(--tr);
}
.feature-card:hover {
    border-color: rgba(20,90,200,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(20,90,200,0.12), rgba(0,160,220,0.08));
    color: var(--brand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--tr);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 4px 16px rgba(20,90,200,0.4);
}
.feature-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-body p  { font-size: 0.8rem; color: var(--text2); line-height: 1.5; }

/* =========================================
   Testimonials
========================================= */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-xs);
    transition: var(--tr);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(20,90,200,0.22);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0; left: 18px;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--brand);
    opacity: 0.1;
    font-family: Georgia, serif;
}
.testimonial-stars  { color: #f59e0b; letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 0.75rem; }
.testimonial-text   { color: var(--text2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.avatar-purple { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.avatar-pink   { background: linear-gradient(135deg, #db2777, #ec4899); }
.avatar-blue   { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.testimonial-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 1px; }
.testimonial-role  { font-size: 0.74rem; color: var(--text2); }
.testimonial-verified {
    display: flex; align-items: center; gap: 3px;
    font-size: 0.68rem; color: #10b981; font-weight: 600; margin-top: 2px;
}

/* =========================================
   Payment Section
========================================= */
.payment-section {
    padding: 3rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.payment-header { text-align: center; margin-bottom: 2rem; }
.payment-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.payment-header p  { color: var(--text2); font-size: 0.88rem; }
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.payment-badge {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.25rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-xs);
    transition: var(--tr);
}
.payment-badge:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-br);
    transform: translateY(-3px);
}
.payment-badge i { font-size: 1.2rem; }
.p-iban   { color: #1a6fc4; }
.p-papara { color: #6f3eba; }
.p-secure { color: #16a34a; }

/* =========================================
   About Section
========================================= */
.about-section { padding: 5rem 0; background: var(--bg3); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.about-text p  { color: var(--text2); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
    background: var(--surface);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--tr);
}
.about-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-card i  { font-size: 1.5rem; color: var(--brand); margin-bottom: 0.75rem; display: block; }
.about-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.about-card p  { font-size: 0.78rem; color: var(--text2); }

/* =========================================
   FAQ
========================================= */
.faq-section { padding: 5rem 0; background: var(--bg); }
.faq-grid { max-width: 780px; margin: 2.5rem auto 0; }
.faq-item {
    background: var(--surface);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: var(--tr);
}
.faq-question {
    padding: 1.1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.92rem;
}
.faq-question i { transition: transform 0.3s; color: var(--text2); }
.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer { padding: 0 1.25rem 1.25rem; max-height: 250px; }
.faq-item.active { border-color: var(--brand); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--brand); }

/* =========================================
   Footer
========================================= */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-about p { color: var(--text2); margin-top: 1rem; font-size: 0.85rem; line-height: 1.7; }
.footer-links h3, .footer-contact h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a { color: var(--text2); font-size: 0.85rem; transition: var(--tr); }
.footer-links ul li a:hover { color: var(--brand); padding-left: 4px; }
.contact-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-btn {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1rem; border-radius: var(--radius-sm);
    color: #fff; font-weight: 600; font-size: 0.88rem;
    transition: var(--tr);
}
.contact-btn.whatsapp { background: #25d366; }
.contact-btn.whatsapp:hover { background: #1db954; transform: translateX(3px); }
.contact-btn.telegram  { background: #2aabee; }
.contact-btn.telegram:hover  { background: #1998da; transform: translateX(3px); }
.footer-bottom {
    text-align: center; padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    color: var(--text2); font-size: 0.8rem;
}

/* =========================================
   Floating WhatsApp
========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 999;
    transition: var(--tr);
    animation: waBounce 3s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.1); background: #20ba5a; }
@keyframes waBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Floating Instagram */
.floating-instagram {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 18px rgba(131,58,180,0.45);
    z-index: 998;
    transition: var(--tr);
    text-decoration: none;
    animation: waBounce 3.5s ease-in-out infinite;
}
.floating-instagram:hover { transform: scale(1.1); }

/* =========================================
   Hero CSS for index.html inline styles
========================================= */
#nav-store-name, #footer-store-name, #copyright-name { display: none; }

/* =========================================
   Ticker badge inline colors
========================================= */
.ticker-badge.kampanya { background: #ef4444; color: #fff; }
.ticker-badge.yeni     { background: #10b981; color: #fff; }
.ticker-badge.firsat   { background: var(--accent); color: #1a0a00; }

/* =========================================
   Responsive
========================================= */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2)::after { display: none; }
    .about-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar { top: 0; }
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .nav-links { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cards { grid-template-columns: 1fr; }
    .floating-whatsapp { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.5rem; }
    .floating-instagram { bottom: 80px; right: 18px; width: 50px; height: 50px; font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .hero h1 { font-size: 1.9rem; }
}
