﻿/* === notices.html === */

        /* --- DÉ™yiÅŸÉ™nlÉ™r vÉ™ SÄ±fÄ±rlama --- */
/* Header/promo/nav chrome main.css-dən gəlir — dublikat silindi */
    


        :root {
            --brand-orange: var(--primary);
            --brand-blue: #1a2a6c;
            --premium-red: #ff3e3e;
            --bg-gray: #f4f6f8;
            --text-dark: #333;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

    

        /* --- Container --- */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* --- Kateqoriyalar --- */
        .ms-categories-scroll {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 20px 5px;
            scrollbar-width: none;
            /* Firefox */
        }

        .ms-categories-scroll::-webkit-scrollbar {
            display: none;
        }

        /* Chrome/Safari */

        .ms-category-item {
            flex: 0 0 110px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .ms-category-item i {
            font-size: 24px;
            color: #555;
            background: white;
            padding: 18px;
            border-radius: 16px;
            margin-bottom: 10px;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .ms-category-item span {
            font-size: 13px;
            font-weight: 500;
            display: block;
        }

        .ms-category-item:hover i {
            color: var(--brand-orange);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(247, 151, 28, 0.2);
        }

        /* --- Elanlar Grid --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        /* --- MÉ™hsul KartÄ± --- */
        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }

        .product-card-link {
            display: flex;
            flex-direction: column;
            height: 100%;
            color: inherit;
            text-decoration: none;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .badge-premium {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--premium-red);
            color: white;
            padding: 5px 12px;
            font-size: 10px;
            font-weight: 800;
            border-radius: 6px;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.5px;
        }

        .badge-satis {
            position: absolute;
            top: 45px;
            left: 12px;
            background: #2ecc71;
            color: white;
            padding: 5px 12px;
            font-size: 10px;
            font-weight: 800;
            border-radius: 6px;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
        }




        .badge-icare {
            position: absolute;
            top: 45px;
            /* Premium etiketinin altÄ±nda durmasÄ± Ã¼Ã§Ã¼n */
            left: 12px;
            background: #3498db;
            /* Ä°carÉ™ Ã¼Ã§Ã¼n professional mavi rÉ™ng */
            color: white;
            padding: 5px 12px;
            font-size: 10px;
            font-weight: 800;
            border-radius: 6px;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
            transition: var(--transition);
        }

        /* Hover effekti (isteÄŸe baÄŸlÄ±) */
        .product-card:hover .badge-icare {
            transform: scale(1.05);
            background: #2980b9;
        }

        /* Action Buttons (Heart & Compare) */
        .action-btns {
            position: absolute;
            top: 12px;
            right: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 5;
            align-items: flex-end;
        }

        .btn-round {
            background: rgba(255, 255, 255, 0.9);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            backdrop-filter: blur(4px);
        }

        .btn-round:hover {
            transform: scale(1.1);
            background: white;
        }

        .btn-heart.active i {
            color: var(--premium-red);
        }

        .btn-compare.active i {
            color: var(--brand-orange);
        }

        .product-img-wrap {
            position: relative;
            height: 190px;
            background: #eee;
            flex-shrink: 0;
        }

        .product-img-wrap .product-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-img-wrap .badge-year {
            z-index: 3;
        }

        .product-info {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-price {
            font-size: 19px;
            font-weight: 800;
            color: #000;
            margin-bottom: 6px;
        }

        .product-title {
            font-size: 14px;
            color: #555;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8em;
        }

        .product-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            margin-top: auto;
            padding-top: 8px;
        }

        .product-meta-item {
            font-size: 11px;
            color: #888;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .product-meta-item i {
            color: var(--brand-orange);
            font-size: 10px;
        }

        /* --- MÃ¼qayisÉ™ Paneli --- */
        .compare-bar {
            position: fixed;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 50px 50px 0 0;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            z-index: 1000;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
        }

        .compare-bar.active {
            bottom: 0;
        }

        .btn-main {
            background: var(--brand-orange);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
        }

        .btn-main:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }

        /* --- Popup --- */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .popup-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            max-width: 400px;
            animation: popIn 0.4s ease;
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- Cookie --- */
        .cookie-box {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 500;
            border-left: 5px solid var(--brand-orange);
        }

        /* --- Mobile --- */
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .product-img {
                height: 150px;
            }

            .main-container {
                padding: 10px;
            }

            .compare-bar {
                width: 90%;
                padding: 12px 20px;
                font-size: 13px;
            }
        }










        /* --- Reklam SahÉ™lÉ™ri (Sticky vÉ™ Ãœmumi Dizayn) --- */
.ad-sidebar {
    position: fixed;
    top: 175px;
    width: 150px;
    height: auto; /* MÉ™zmunun tam yerlÉ™ÅŸmÉ™si Ã¼Ã§Ã¼n auto edildi */
    min-height: 480px;
    background: linear-gradient(135deg, #1e1e24 0%, #2a2a35 100%);
    border: 2px solid var(--danger-bright);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    color: #fff;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.ad-left {
    left: 20px;
}

.ad-right {
    right: 20px;
    border-color: var(--success-bright); /* SaÄŸ tÉ™rÉ™f Ã¼Ã§Ã¼n fÉ™rqli Ã§É™rÃ§ivÉ™ rÉ™ngi */
}

/* Ekran 1500px-dÉ™n kiÃ§ik olduqda reklamlar gizlÉ™nir */
@media (max-width: 1500px) {
    .ad-sidebar {
        display: none;
    }
}

/* --- Daxili ElementlÉ™rin CSS-i --- */

/* KiÃ§ik Reklam YazÄ±sÄ± */
.ad-header {
    font-size: 10px;
    letter-spacing: 2px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

/* HÆRÆKÆTLÄ° MÆTN: Neon parÄ±ltÄ± effekti */
.animated-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--danger-bright);
    animation: pulse 1.5s infinite alternate;
}

.ad-right .animated-text {
    color: var(--success-bright); /* SaÄŸ tÉ™rÉ™fin baÅŸlÄ±ÄŸÄ± yaÅŸÄ±l */
}

@keyframes pulse {
    0% { transform: scale(1); text-shadow: 0 0 5px currentColor; }
    100% { transform: scale(1.05); text-shadow: 0 0 15px currentColor; }
}

/* MÉ™hsul TÉ™sviri */
.ad-description {
    font-size: 12px;
    margin: 8px 0;
    color: #e0e0e0;
    line-height: 1.4;
}

/* MÉ™hsul ÅžÉ™kli vÉ™ YellÉ™nmÉ™ HÉ™rÉ™kÉ™ti */
.ad-image-container {
    margin: 10px 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.ad-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* DiqqÉ™t Ã§É™kÉ™n alt mÉ™tn */
.ad-countdown {
    font-size: 11px;
    color: #ffa502;
    font-weight: bold;
    margin-bottom: 10px;
}

/* HÆRÆKÆTLÄ° DÃœYMÆ: TitrÉ™yÉ™n vÉ™ CanlÄ± */
.ad-btn {
    display: block;
    background: var(--success-bright);
    color: #fff;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(46, 213, 115, 0.4);
    animation: shake 4s infinite;
    transition: all 0.3s ease;
}

.ad-right .ad-btn {
    background: var(--danger-bright); /* SaÄŸ tÉ™rÉ™fin dÃ¼ymÉ™si qÄ±rmÄ±zÄ± */
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
}

.ad-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* DÃ¼ymÉ™nin titrÉ™mÉ™ animasiyasÄ± */
@keyframes shake {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-3px); }
    94% { transform: translateX(3px); }
    96% { transform: translateX(-3px); }
    98% { transform: translateX(3px); }
}
    


/* Footer chrome main.css-dən gəlir — dublikat silindi */
    


/* fixed-social styles live in main.css */
:root {
            --mb-primary: var(--primary);
            --mb-accent: #ff4d4d;
            --mb-white: #ffffff;
            --mb-glass: rgba(255, 255, 255, 0.95);
            --mb-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            --mb-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        #mb-promo-root {
            font-family: var(--font-sans);
        }

        /* 1. MÃ¼rÉ™kkÉ™b Trigger DÃ¼ymÉ™si */
        .mb-promo-launcher {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: var(--mb-primary);
            color: var(--mb-white);
            border-radius: 18px;
            /* Modern kÃ¼nclÉ™r */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9998;
            transform: rotate(-15deg) scale(0);
            transition: var(--mb-transition);
            box-shadow: 0 10px 25px rgba(59, 93, 80, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .mb-promo-launcher.is-active {
            transform: rotate(0deg) scale(1);
            animation: mb-float 3s ease-in-out infinite;
        }

        .mb-promo-launcher i {
            font-size: 24px;
        }

        /* 2. Advanced Popup PÉ™ncÉ™rÉ™si */
        .mb-promo-modal {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 9999;
            width: 350px;
            background: var(--mb-glass);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: var(--mb-shadow);
            border: 1px solid rgba(255, 255, 255, 0.4);
            transform: translateX(-120%) skewX(-5deg);
            /* GiriÅŸ animasiyasÄ± Ã¼Ã§Ã¼n maraqlÄ± kÃ¼nc */
            opacity: 0;
            transition: var(--mb-transition);
            overflow: hidden;
            pointer-events: none;
        }

        .mb-promo-modal.is-open {
            transform: translateX(0) skewX(0deg);
            opacity: 1;
            pointer-events: auto;
        }

        /* Dekorativ elementlÉ™r */
        .mb-promo-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--mb-primary), var(--mb-accent));
        }

        .mb-promo-inner {
            padding: 35px 30px;
            position: relative;
        }

        .mb-promo-close-trigger {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f5f5f5;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--mb-transition);
        }

        .mb-promo-close-trigger:hover {
            background: var(--mb-accent);
            color: white;
            transform: rotate(90deg);
        }

        .mb-promo-tag {
            background: rgba(255, 77, 77, 0.1);
            color: var(--mb-accent);
            font-size: 10px;
            font-weight: 800;
            padding: 6px 14px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .mb-promo-h {
            font-size: 22px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .mb-promo-p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .mb-promo-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--mb-primary);
            color: white;
            text-decoration: none;
            padding: 14px;
            border-radius: 14px;
            font-weight: 600;
            transition: var(--mb-transition);
            position: relative;
            overflow: hidden;
        }

        .mb-promo-action-btn:hover {
            background: rgb(251, 176, 79);
            box-shadow: 0 8px 20px rgba(247, 151, 28, 0.4);
        }

        /* Animasiyalar */
        @keyframes mb-float {

            0%,
            100% {
                transform: translateY(0) rotate(0);
            }

            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        @media (max-width: 480px) {
            .mb-promo-modal {
                left: 20px;
                right: 20px;
                width: auto;
            }
        }
    
