
        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif; 
            background-color: #F8F8F4; 
            color: #4B3832; 
            line-height: 1.5; 
            overflow-x: hidden; 
            font-size: 16px; 
        }

        .container {
            width: 95%; 
            max-width: 1500px;
            margin: 0 auto;
        }

        a {
            text-decoration: none;
            color: #4B3832;
            transition: color 0.3s;
        }

        /* LOQO ŞƏKLİ - HÜNDÜRLÜK 80PX */
        .logo-img {
            height: 80px; 
            width: auto;
        }

        .desktop-logo { display: block; }
        .mobile-logo { display: none; }
        .close-btn { display: none; }

        /* --- 2. TOP BAR & SLOGAN BAR --- */
        .top-bar {
            background-color: #4B3832; 
            color: #F0EAD6; 
            padding: 8px 0; 
            font-size: 14px; 
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info a { color: #F0EAD6; margin-right: 20px; }
        .contact-info i { margin-right: 5px; color: #B8860B; }
        .social-top a { color: #F0EAD6; font-size: 16px; margin-left: 12px; }

        .slogan-bar {
            background-color: #B8860B; 
            color: white;
            padding: 6px 0; 
            font-weight: bold;
            overflow: hidden; 
            white-space: nowrap;
        }
        .slogan-bar span {
            display: inline-block;
            padding-left: 100%; 
            animation: move-slogan 20s linear infinite;
        }
        @keyframes move-slogan {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        /* --- 4. HEADER (NAVİQASİYA) --- */
        .main-header {
            background-color: #F0EAD6; 
            padding: 15px 0; 
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .main-nav ul li a {
            color: #4B3832;
            padding: 10px 18px; 
            font-size: 16px; 
            transition: color 0.3s;
        }

        .main-nav ul li a:hover {
            color: #B8860B;
        }

        .menu-toggle {
            display: none; 
            font-size: 28px;
            cursor: pointer;
            color: #4B3832;
        }
        
        /* --- 5. PROMO SLIDER (Axıcı reklam kartları) --- */
        .promo-slider-section {
            padding: 20px 0 40px 0; 
            background-color: #F8F8F4; 
        }
        
        .promo-slider-wrapper {
            display: flex;
            overflow-x: scroll;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 10px; 
            scrollbar-width: none;
            -ms-overflow-style: none; 
        }
        
        .promo-slider-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        .promo-card-slider {
            min-width: 350px; 
            height: 200px; 
            flex-shrink: 0;
            
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .promo-card-slider:hover {
            transform: translateY(-5px);
        }

        .promo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); 
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 15px;
            color: white;
        }
        
        .promo-overlay h3 {
            font-size: 24px;
            margin-bottom: 5px;
            color: #FFD700; 
        }
        
        .promo-overlay p {
            font-size: 16px;
            margin: 0;
            font-weight: 300;
        }
        
        .promo-overlay .btn-promo {
            margin-top: 15px;
            background-color: #B8860B;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
        }


        /* --- 6. KİÇİK KATEQORİYA KARTLARI (Axıcı) --- */
        .quick-categories {
            padding: 30px 0; 
            background-color: #FFF; 
            border-bottom: 1px solid #E0DED1;
        }

        .category-cards {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap; 
            gap: 15px;
        }

        .card-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 12px;
            border: 1px solid #E0DED1;
            border-radius: 6px;
            font-size: 15px; 
            flex-basis: 15%; 
            transition: transform 0.3s, background-color 0.3s;
        }

        .card-item i {
            font-size: 28px; 
            margin-bottom: 5px;
            color: #B8860B;
            transition: color 0.3s;
        }

        .card-item:hover {
            background-color: #B8860B;
            color: white;
            transform: translateY(-3px);
        }

        .card-item:hover i {
            color: white;
        }
        
        /* ================================================================= */
        /* --- 7. YENİ: KATEQORİYA TABS VƏ MƏHSULLAR --- */
        /* ================================================================= */
        .category-tabs-section {
            padding: 50px 0;
            background-color: #FFF;
        }
        
        .category-tabs-section h2 {
            text-align: center;
            font-size: 34px; 
            color: #4B3832;
            margin-bottom: 30px;
        }
        
        /* TAB NAVİQASİYASI (Axıcı başlıqlar) */
        .tab-nav {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            padding: 0 0 15px 0;
            border-bottom: 2px solid #E0DED1;
            margin-bottom: 25px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .tab-nav::-webkit-scrollbar {
            display: none;
        }

        .tab-button {
            padding: 10px 20px;
            cursor: pointer;
            border: none;
            background: none;
            font-size: 17px;
            color: #6C544F;
            font-weight: bold;
            transition: color 0.3s, border-bottom 0.3s;
            flex-shrink: 0; 
        }

        .tab-button:hover {
            color: #4B3832;
        }
        
        .tab-button.active {
            color: #B8860B;
            border-bottom: 3px solid #B8860B;
        }
        
        /* TAB MƏZMUNU (Məhsul şəkilləri) */
        .tab-content {
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .tab-content.active {
            display: grid;
        }
        
        .product-card {
            background-color: #F8F8F4;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .product-info {
            padding: 15px;
            text-align: center;
        }
        
        .product-info h4 {
            margin: 0 0 5px 0;
            font-size: 16px;
            color: #4B3832;
        }
        
        .product-info p {
            margin: 0;
            font-weight: bold;
            color: #B8860B;
            font-size: 18px;
        }

        /* --- 8. DƏYƏRLƏR BÖLMƏSİ (Niyə biz) --- */
        .value-section {
            padding: 50px 0; 
            text-align: center;
            background-color: #F8F8F4; 
        }

        .value-section h2 {
            font-size: 34px; 
            color: #4B3832;
            margin-bottom: 40px;
            position: relative;
        }

        .value-section h2::after {
            content: '';
            width: 60px;
            height: 3px;
            background-color: #B8860B; 
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .value-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 30px;
        }

        .value-item {
            flex-basis: 30%; 
            padding: 20px; 
            border: 1px solid #E0DED1; 
            border-radius: 6px;
            background-color: #FFF; 
        }

        .value-item i {
            font-size: 35px; 
            color: #B8860B; 
            margin-bottom: 10px;
        }

        .value-item h3 {
            font-size: 20px; 
            color: #4B3832;
        }

        .value-item p {
            font-size: 15px; 
            color: #6C544F;
        }

        /* --- 9. KATALOQ VURĞULARI (Populyar məhsullar) --- */
        .featured-categories {
            padding: 50px 0; 
            text-align: center;
            background-color: #FFF;
        }

        .featured-categories h2 {
            font-size: 36px; 
            color: #4B3832;
            margin-bottom: 40px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px; 
        }

        .category-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            display: block;
        }

        .category-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }
        .category-item:hover img {
            transform: scale(1.05);
        }

        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: rgba(75, 56, 50, 0.85); 
            color: white;
            font-size: 18px; 
            font-weight: bold;
            text-transform: uppercase;
        }


        /* --- 10. FOOTER --- */
        .main-footer {
            background-color: #4B3832; 
            color: #F0EAD6; 
            padding: 40px 0 15px 0; 
            font-size: 14px; 
        }

        .footer-columns {
            display: flex;
            justify-content: space-between;
            padding-bottom: 20px;
            border-bottom: 1px solid #6C544F;
            gap: 20px;
        }

        .footer-col {
            flex-basis: 30%;
        }

        .footer-col h3 {
            color: #FFD700; 
            font-size: 18px; 
            margin-bottom: 15px;
        }

        .footer-col a {
            color: #F0EAD6;
        }
        .footer-col a:hover {
            color: #DAA520;
        }
        
        .footer-col p {
            margin-top: 5px;
        }

        .footer-col i {
            margin-right: 8px;
            color: #B8860B;
        }

        .social-icons a {
            font-size: 18px;
            margin-right: 12px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 10px;
            font-size: 12px;
            color: #A0908C;
        }

        /* ================================================================= */
        /* --- 11. YENİ: DAİMİ İKONLAR (WHATSAPP, MÜRACİƏT, RƏY) --- */
        /* ================================================================= */
        .fixed-icons-group {
            position: fixed;
            right: 15px;
            bottom: 15px;
            z-index: 1001; 
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .fixed-icon {
            width: 50px;
            height: 50px;
            background-color: #B8860B; 
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, transform 0.3s;
        }

        .fixed-icon:hover {
            background-color: #9A6F0B; 
            transform: scale(1.05);
        }
        
        .whatsapp-icon {
            background-color: #25D366; 
        }
        .whatsapp-icon:hover {
            background-color: #128C7E;
        }
        
        /* ================================================================= */
        /* --- 12. YENİ: POPUP FORMA STİLİ --- */
        /* ================================================================= */
        .popup-overlay {
            display: none; 
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background-color: #F0EAD6;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            width: 90%;
            max-width: 400px;
            position: relative;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .popup-content h3 {
            color: #4B3832;
            margin-top: 0;
            border-bottom: 2px solid #B8860B;
            padding-bottom: 10px;
            margin-bottom: 20px;
            text-align: center;
        }

        .popup-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #4B3832;
        }

        .popup-form input[type="text"], 
        .popup-form input[type="tel"], 
        .popup-form textarea {
            width: calc(100% - 22px);
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #B8860B;
            border-radius: 5px;
            background-color: white;
        }

        .popup-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .popup-form button {
            background-color: #B8860B;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s;
        }

        .popup-form button:hover {
            background-color: #9A6F0B;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            color: #4B3832;
            cursor: pointer;
        }


        /* ================================================================= */
        /* --- 13. RESPONSİV DƏYİŞİKLİKLƏR (MOBİL ÜÇÜN DÜZƏLİŞLƏR) --- */
        /* ================================================================= */

        @media (max-width: 768px) {
            
            /* GLOBAL VƏ TOP BAR KİÇİLT */
            body {
                font-size: 14px; 
                line-height: 1.4;
            }

            .top-bar {
                padding: 4px 0; 
            }
            .top-bar .container {
                flex-direction: column;
                gap: 2px;
            }

            /* *** DÜZƏLİŞ 1: MİNİMALİST HEADER (LOQO YERİ) *** */
            .main-header {
                padding: 8px 0; /* Boşluğu kiçiltdik */
            }
            .main-header .container {
                justify-content: space-between; 
                align-items: center; 
            }
            
            .desktop-logo {
                display: none;
            }
            
            /* MOBİL LOQO DÜZƏLİŞİ */
            .main-header .logo {
                display: block; 
                margin: 0; 
                order: 1; 
            }
            
            .main-header .logo-img {
                height: 30px; /* Mobil loqonu kiçiltdik */
            }

            .menu-toggle {
                display: block; 
                order: 2; 
            }

            /* YANDAN AÇILAN MENYU STİLİ */
            .main-nav {
                position: fixed;
                top: 0;
                right: -250px; 
                left: auto; 
                width: 250px;
                height: 100%;
                background-color: #F0EAD6; 
                z-index: 1000;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3); 
                transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1); 
            }

            .main-nav.active {
                right: 0; 
            }
            
            .main-nav ul {
                flex-direction: column; 
                padding: 20px 0 20px 0; 
                margin-top: 60px; 
            }

            .main-nav ul li {
                border-bottom: 1px solid #E0DED1; 
            }
            
            .main-nav ul li a {
                padding: 15px 20px; 
                font-size: 16px; 
                display: block;
                color: #4B3832;
                font-weight: bold;
            }

            .close-btn {
                display: block;
                position: absolute;
                top: 20px; 
                left: 20px; 
                right: auto;
                font-size: 24px;
                cursor: pointer;
                color: #4B3832;
            }

            /* PROMO SLIDER DÜZƏLİŞİ */
            .promo-slider-section {
                padding: 10px 0 20px 0;
            }

            .promo-card-slider {
                min-width: 280px; 
                height: 150px; 
            }
            
            /* AXICI KATEQORİYA KARTLARI (SCROLLABLE) DÜZƏLİŞİ */
            .quick-categories {
                padding: 20px 0;
            }

            .quick-categories .container {
                width: 100%; 
                padding: 0;
                margin: 0;
            }
            
            .category-cards {
                /* Axıcı xüsusiyyətlər */
                overflow-x: scroll;
                -webkit-overflow-scrolling: touch; 
                scrollbar-width: none;
                -ms-overflow-style: none; 

                /* Kartların yanaşı düzülməsi */
                flex-wrap: nowrap;
                padding: 0 10px 10px 10px; 
                gap: 10px; 
                justify-content: flex-start; 
            }
            
            .category-cards::-webkit-scrollbar {
                display: none;
            }

            .card-item {
                /* 3 element bir cərgədə və sürüşdürülə bilən olsun */
                min-width: 31%; 
                flex-shrink: 0; 
                flex-basis: auto; 
                padding: 8px 4px;
                font-size: 11px;
            }
            
            /* *** DÜZƏLİŞ 2: "Məhsul Kateqoriyalarımız" Başlığının Kiçildilməsi *** */
            .category-tabs-section h2 {
                font-size: 24px; /* Başlığı 34px-dən 24px-ə kiçiltdik */
                margin-bottom: 20px;
            }

            /* KATEQORİYA TABS RESPONSİV DÜZƏLİŞİ */
            .tab-content {
                grid-template-columns: repeat(2, 1fr); 
                gap: 15px;
                padding: 0 10px;
            }
            .tab-nav {
                padding: 0 10px 15px 10px; 
            }
            .tab-button {
                font-size: 15px;
                padding: 8px 15px;
            }
            .product-card img {
                height: 150px; 
            }
            
            /* DƏYƏRLƏR, KATALOQ VƏ FOOTER - STACKED */
            .value-grid, .footer-columns {
                flex-direction: column;
                gap: 15px;
            }
            .category-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-col {
                text-align: center;
            }
            
            /* FİXED İKONLAR KİÇİLİR */
            .fixed-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            .fixed-icons-group {
                gap: 8px;
            }
        }
 
