﻿/* === shop.html === */

        /* --- DÉ™yiÅŸÉ™nlÉ™r vÉ™ SÄ±fÄ±rlama --- */
/* Header/promo/nav chrome main.css-dən gəlir — dublikat silindi */
    


        /* Banner HissÉ™si */
        .header-banneer {
            width: 100%;
            height: 320px;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
                url('https://avatars.mds.yandex.net/get-altay/1974402/2a0000017006234cc9ad8edd9cd6c2818b2b/XXXL');
            background-size: cover;
            background-position: start;
            position: relative;
        }

        .main-containeer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Profil Ãœst Paneli */
        .profile-overlap {
            display: flex;
            align-items: flex-end;
            margin-top: -100px;
            gap: 25px;
            position: relative;
            z-index: 5;
            padding-bottom: 30px;
        }

        .store-brand {
            width: 180px;
            height: 180px;
            background: #ffffff;
            border-radius: 24px;
            padding: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #f3f4f6;
        }

        .store-brand img {
            max-width: 100%;
            height: auto;
        }

        .store-identity {
            flex: 1;
            padding-bottom: 15px;
        }

        .store-identity h1 {
            font-size: 36px;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            margin-bottom: 10px;
        }

        .quick-stats {
            display: flex;
            gap: 20px;
        }

        .stat-tag {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 6px 14px;
            border-radius: 100px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ÆmÉ™liyyat DÃ¼ymÉ™lÉ™ri */
        .action-bar {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .btn-blue {
            background: #f0f7ff;
            color: #2563eb;
        }

        .btn-blue:hover {
            background: #2563eb;
            color: #ffffff;
        }

        .btn-green {
            background: #10b981;
            color: #ffffff;
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        }

        .btn-green:hover {
            background: #059669;
            transform: translateY(-2px);
        }

        /* Yeni Dinamik Reklam Banneri */
        .premium-promo-card {
            background: #000;
            border-radius: 20px;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: borderPulse 4s infinite;
        }

        @keyframes borderPulse {
            0% {
                border-color: rgba(255, 255, 255, 0.1);
            }

            50% {
                border-color: var(--primary);
            }

            100% {
                border-color: rgba(255, 255, 255, 0.1);
            }
        }

        .promo-content {
            z-index: 2;
            flex: 1;
        }

        .promo-badge {
            background: var(--primary);
            color: #000;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 12px;
            animation: flash 2s infinite;
        }

        @keyframes flash {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .promo-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .promo-desc {
            color: #9ca3af;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .promo-price-box {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }

        /* QiymÉ™t Ã¼Ã§Ã¼n rÉ™ng dÉ™yiÅŸÉ™n animasiya */
        .current-price {
            font-size: 32px;
            font-weight: 900;
            /* Animasiya tÉ™yini: 2 saniyÉ™ Ã§É™kir, hÉ™r iki rÉ™ngÉ™ keÃ§id edir vÉ™ sonsuzdur */
            animation: priceGlow 1s infinite alternate ease-in-out;
        }

        @keyframes priceGlow {
            0% {
                color: var(--primary);
                /* BaÅŸlanÄŸÄ±c: NarÄ±ncÄ± */
                text-shadow: 0 0 10px rgba(247, 151, 28, 0.4);
            }

            100% {
                color: #ffffff;
                /* Son: AÄŸ */
                text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
            }
        }

        .old-price {
            text-decoration: line-through;
            color: #6b7280;
            font-size: 18px;
        }

        .promo-visual {
            position: relative;
            width: 300px;
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .promo-visual img {
            width: 100%;
            z-index: 2;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .glow-effect {
            position: absolute;
            width: 150px;
            height: 150px;
            background: var(--primary);
            filter: blur(80px);
            opacity: 0.3;
            z-index: 1;
        }

        /* MÉ™lumat BarÄ± */
        .info-footer {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-top: 1px solid #f3f4f6;
            flex-wrap: wrap;
            gap: 20px;
        }

        .info-block {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #4b5563;
            font-size: 15px;
        }

        .info-block i {
            width: 40px;
            height: 40px;
            background: #f9fafb;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .status-dot {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
            box-shadow: 0 0 10px #10b981;
        }

        @media (max-width: 850px) {
            .profile-overlap {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .premium-promo-card {
                flex-direction: column;
                text-align: center;
            }

            .promo-price-box {
                justify-content: center;
            }

            .promo-visual {
                width: 100%;
                margin-top: 20px;
            }
        }
    


        :root {
            --primary: #f7971c;
            --secondary: #2f3542;
            --success: var(--success-bright);
            --info: #1e90ff;
            --danger: var(--danger-bright);
            --light: #f1f2f6;
            --border-color: #e1e4e8;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f4f7f6;
            margin: 0;
            padding: 0;
        }

        /* Ana Layout */
        .site-wrapper {
            display: grid;
            grid-template-columns: 220px 1fr 220px;
            gap: 25px;
            max-width: 1550px;
            margin: 30px auto;
            padding: 0 15px;
        }

        /* Reklam PanellÉ™ri */
        .sticky-ads {
            position: sticky;
            top: 20px;
            height: calc(100vh - 40px);
            background: #2f3542;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
            color: #ffffff;
            text-align: center;
            overflow: hidden;
            border: 1px solid var(--primary);
        }

        .ad-pulse {
            width: 100%;
            padding: 15px;
            background: rgba(247, 151, 28, 0.2);
            border: 1px solid var(--primary);
            border-radius: 8px;
            font-weight: bold;
            animation: adPulse 2s infinite alternate;
        }

        @keyframes adPulse {
            from { box-shadow: 0 0 5px var(--primary); transform: scale(1); }
            to { box-shadow: 0 0 20px var(--primary); transform: scale(1.05); }
        }

        /* FiltrlÉ™r BÃ¶lmÉ™si */
        .filter-panel {
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-end;
            border: 1px solid var(--border-color);
        }

        .f-input-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
            min-width: 140px;
        }

        .f-input-group label {
            font-size: 11px;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
        }

        .f-input-group select, 
        .f-input-group input {
            padding: 10px;
            border: 2px solid #f1f2f6;
            border-radius: 8px;
            outline: none;
            font-weight: 600;
            transition: 0.3s;
            font-size: 14px;
        }

        .f-input-group select:focus, 
        .f-input-group input:focus { 
            border-color: var(--primary); 
        }

        .reset-btn {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 11px 20px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }

        .reset-btn:hover { background: var(--danger); }

        /* MÉ™hsul KartlarÄ± */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .card-img-box {
            position: relative;
            height: 190px;
        }

        .card-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Badges */
        .badge-status {
            position: absolute;
            top: 12px; left: 12px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
        }

        .badge-type {
            position: absolute;
            top: 12px; right: 12px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
        }

        .bg-new { background: var(--success); }
        .bg-used { background: var(--danger); }
        .type-sale { color: var(--primary); border: 1px solid var(--primary); }
        .type-rent { color: var(--info); border: 1px solid var(--info); }

        .card-body { padding: 18px; }
        .card-category { font-size: 11px; color: #a4b0be; font-weight: 600; margin-bottom: 5px; display: block; }
        .card-title { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; height: 45px; overflow: hidden; }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px dashed #eee;
        }

        .price-tag { font-size: 19px; font-weight: 800; color: var(--secondary); }
        .price-tag span { font-size: 13px; color: #747d8c; }

        .btn-details {
            width: 35px; height: 35px;
            background: var(--primary);
            color: white; border: none;
            border-radius: 8px; cursor: pointer;
            transition: 0.3s;
        }

        .btn-details:hover { background: var(--secondary); }

        /* Filtr AnimasiyalarÄ± */
        .hidden { display: none !important; }
        .show { animation: popIn 0.4s ease forwards; }

        @keyframes popIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .site-wrapper { grid-template-columns: 1fr; }
            .sticky-ads { display: none; }
        }





        /* Reklam Paneli ÃœÃ§Ã¼n XÃ¼susi StillÉ™r */
    .sticky-ads {
        position: sticky;
        top: 20px;
        height: calc(100vh - 40px);
        background: linear-gradient(180deg, #2f3542 0%, #1e2129 100%);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        color: #ffffff;
        text-align: center;
        border: 2px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        overflow: hidden;
    }

    /* Ãœst baÅŸlÄ±q animasiyasÄ± */
    .ad-title {
        color: var(--primary);
        font-size: 22px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 1px;
        text-shadow: 0 0 10px rgba(247, 151, 28, 0.4);
    }

    /* ÅžÉ™kil konteyneri vÉ™ hÉ™rÉ™kÉ™ti */
    .ad-image-wrapper {
        position: relative;
        width: 100%;
        margin: 20px 0;
        animation: float 3s ease-in-out infinite;
    }

    .ad-image-wrapper img {
        width: 100%;
        border-radius: 12px;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    }

    /* Parlama effekti (Shimmer) */
    .discount-circle {
        position: absolute;
        top: -10px;
        right: -10px;
        background: var(--danger);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 14px;
        transform: rotate(15deg);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        border: 2px solid #fff;
    }

    /* AnimasiyalÄ± Kampaniya mÉ™tni */
    .ad-pulse-new {
        background: linear-gradient(90deg, var(--primary), #ffb347);
        color: #000;
        padding: 12px 20px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 14px;
        margin-top: auto;
        width: 80%;
        text-transform: uppercase;
        cursor: pointer;
        border: none;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }

    .ad-pulse-new::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255,255,255,0.2);
        transform: rotate(45deg);
        transition: 0.5s;
        animation: shine 2.5s infinite;
    }

    /* Animasiyalar */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes shine {
        0% { left: -150%; }
        100% { left: 150%; }
    }

    .ad-features {
        list-style: none;
        padding: 0;
        margin: 15px 0;
        text-align: left;
        width: 100%;
    }

    .ad-features li {
        font-size: 13px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ad-features i {
        color: var(--primary);
    }



    /* SaÄŸ Reklam Paneli ÃœÃ§Ã¼n XÃ¼susi StillÉ™r */
    .sticky-ads-right {
        position: sticky;
        top: 20px;
        height: calc(100vh - 40px);
        background: #ffffff;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        padding: 15px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    /* Slayder Konteyneri */
    .ad-slider {
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out, transform 1.2s ease-out;
        transform: scale(1.1);
    }

    .slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Reklam BaÅŸlÄ±ÄŸÄ± vÉ™ MÉ™tn */
    .ad-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .ad-badge {
        display: inline-block;
        background: var(--secondary);
        color: var(--primary);
        font-size: 10px;
        font-weight: 800;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 10px;
        align-self: center;
    }

    .ad-promo-text {
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary);
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .servis-card {
        background: var(--light);
        padding: 12px;
        border-radius: 10px;
        border-left: 4px solid var(--primary);
        font-size: 13px;
        margin-bottom: 20px;
        text-align: left;
    }

    /* Glow (Parlama) Effekti olan DÃ¼ymÉ™ */
    .btn-glow {
        background: var(--primary);
        color: white;
        border: none;
        padding: 14px;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(247, 151, 28, 0.3);
    }

    .btn-glow:hover {
        background: var(--secondary);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        transform: translateY(-2px);
    }

    /* Proqress Bar (SlaydÄ±n dÉ™yiÅŸmÉ™ vaxtÄ±nÄ± gÃ¶stÉ™rir) */
    .ad-timer-bar {
        width: 100%;
        height: 3px;
        background: #eee;
        margin-top: 10px;
        border-radius: 2px;
        overflow: hidden;
    }

    .ad-timer-progress {
        height: 100%;
        background: var(--primary);
        width: 0%;
    }

    /* ... É™vvÉ™lki stillÉ™r olduÄŸu kimi qalÄ±r ... */

/* Responsive (Mobil vÉ™ PlanÅŸet Ã¼Ã§Ã¼n xÃ¼susi nizamlamalar) */
@media (max-width: 1024px) {
    .site-wrapper {
        /* Sol vÉ™ saÄŸ sÃ¼tunlarÄ± lÉ™ÄŸv edib yalnÄ±z orta hissÉ™ni saxlayÄ±rÄ±q */
        grid-template-columns: 1fr; 
    }

    .sticky-ads, .sticky-ads-right {
        /* ReklamlarÄ± mobil vÉ™ kiÃ§ik ekranlarda tamamilÉ™ gizlÉ™dirik */
        display: none !important;
    }

    .filter-panel {
        /* Filtr bÃ¶lmÉ™sini mobil ekranÄ±n eninÉ™ tam yayÄ±rÄ±q */
        display: grid;
        grid-template-columns: 1fr 1fr; /* Yan-yana iki sÃ¼tun */
        gap: 10px;
        padding: 15px;
    }

    .f-input-group {
        min-width: unset;
    }

    .reset-btn {
        /* SÄ±fÄ±rla dÃ¼ymÉ™sini mobil versiyada tam en edirik */
        grid-column: span 2;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .filter-panel {
        /* Ã‡ox kiÃ§ik ekranlarda (mÉ™s: iPhone SE) filtrlÉ™ri tÉ™k-tÉ™k alt-alta dÃ¼zÃ¼rÃ¼k */
        grid-template-columns: 1fr;
    }
    
    .reset-btn {
        grid-column: span 1;
    }

    .catalog-grid {
        grid-template-columns: 1fr; /* MÉ™hsullar tÉ™k sÃ¼tun gÃ¶rÃ¼nsÃ¼n */
    }
}
    


/* Footer chrome main.css-dən gəlir — dublikat silindi */
    


/* fixed-social styles live in main.css */
