﻿/* === index.html === */

        /* --- DÉ™yiÅŸÉ™nlÉ™r vÉ™ SÄ±fÄ±rlama --- */
/* Header/promo/nav/footer chrome main.css-dən gəlir — dublikat silindi */

        :root {
            --brand-orange: var(--primary);
            --brand-dark: #e67e22;
            --glass: rgba(255, 255, 255, 0.12);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text: #ffffff;
        }

        /* Arxa fon animasiyasÄ± */
        @keyframes flowGradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Panel giriÅŸ animasiyasÄ± */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Åžaquli mÉ™tn sÃ¼rÃ¼ÅŸmÉ™si */
        @keyframes ms-vertical-slide-infinite {

            0%,
            20% {
                transform: translateY(0);
            }

            33%,
            53% {
                transform: translateY(-40px);
            }

            66%,
            86% {
                transform: translateY(-80px);
            }

            100% {
                transform: translateY(0);
            }
        }


        .search-section {
            padding: 10px 0;
            background: linear-gradient(-45deg, #1a2a6c, #b21f1f, var(--brand-orange), #fdbb2d);
            background-size: 400% 400%;
            animation: flowGradient 15s ease infinite;
            /* min-height: 350px; */
            display: flex;
            align-items: center;
        }

        .container {
            max-width: var(--container-max, 1140px);
            margin: 0 auto;
            padding: 0 var(--container-pad, 20px);
            width: 100%;
            box-sizing: border-box;
        }

        /* AnimasiyalÄ± BaÅŸlÄ±q Stili */
        .ms-heavy-machinery-hero__wrapper {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 32px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 30px;
        }

        .ms-dynamic-text-scroller {
            height: 40px;
            overflow: hidden;
            margin-left: 12px;
            position: relative;
        }

        .ms-dynamic-text-scroller__list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            animation: ms-vertical-slide-infinite 4s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
        }

        .ms-dynamic-text-scroller__item {
            height: 40px;
            display: flex;
            align-items: center;
            color: #000000;
            white-space: nowrap;
        }

        /* Tablar */
        .tabs-container {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .tabs-container input {
            display: none;
        }

        .tabs-container label {
            padding: 8px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            color: var(--text);
            cursor: pointer;
            font-size: 14px;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }

        .tabs-container input:checked+label {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            box-shadow: 0 4px 12px rgba(247, 151, 28, 0.4);
        }

        /* AxtarÄ±ÅŸ Paneli */
        .search-panel {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 15px;
            display: grid;
            grid-template-columns: repeat(5, 1fr) auto;
            gap: 12px;
            align-items: center;
        }

        .field-animate {
            animation: slideUp 0.4s ease forwards;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: none;
            background: white;
            font-size: 14px;
            outline: none;
            box-sizing: border-box;
        }

        .btn-search {
            background: var(--brand-orange);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-search:hover {
            background: var(--brand-dark);
            transform: translateY(-2px);
        }

        /* Responsivlik */
        @media (max-width: 1024px) {
            .search-panel {
                grid-template-columns: repeat(3, 1fr);
            }

            .btn-search {
                grid-column: span 3;
            }
        }

        @media (max-width: 600px) {
            .ms-heavy-machinery-hero__wrapper {
                font-size: 24px;
                flex-wrap: wrap;
            }

            .search-panel {
                grid-template-columns: 1fr;
            }

            .btn-search {
                grid-column: span 1;
            }
        }
    


        :root {
            --primary-color: var(--primary);
            --secondary-color: var(--danger-bright);
            --dark-text: #2f3542;
            --light-bg: #f1f2f6;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .main-site-wrapper-container {
            display: grid;
            grid-template-columns: 280px 1fr 320px;
            gap: 25px;
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 15px;
            align-items: start;
        }

        /* --- Responsive Grid Layout --- */
        @media (max-width: 1200px) {
            .main-site-wrapper-container {
                grid-template-columns: 250px 1fr;
            }

            .promotional-marketing-sidebar-aside {
                grid-column: span 2;
            }
        }

        @media (max-width: 992px) {
            .main-site-wrapper-container {
                grid-template-columns: 1fr;
            }

            .navigation-sidebar-category-section,
            .promotional-marketing-sidebar-aside {
                grid-column: span 1;
            }

            .navigation-sidebar-category-section {
                display: none;
            }

            /* MobildÉ™ adÉ™tÉ™n burger menyuda olur */
        }

        /* --- Sidebar Styles --- */
        .navigation-sidebar-category-section {
            background: var(--white);
            border-radius: 16px;
            padding: 12px;
            box-shadow: var(--shadow);
            height: 500px;
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 90px;
            overflow: hidden;
        }

        .sidebar-categories-scroll {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            margin: 0 -4px;
            padding: 0 4px;
        }

        .sidebar-categories-scroll::-webkit-scrollbar {
            width: 5px;
        }

        .sidebar-categories-scroll::-webkit-scrollbar-thumb {
            background: rgba(247, 151, 28, 0.45);
            border-radius: 10px;
        }

        .sidebar-view-all-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            background: var(--light-bg, #f8f8f8);
            color: var(--primary-color, var(--primary));
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .sidebar-view-all-link:hover {
            background: var(--primary-color, var(--primary));
            color: #fff;
        }

        .category-main-heading-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-text);
            padding: 10px 15px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 2px solid var(--light-bg);
        }

        .primary-navigation-vertical-list {
            list-style: none;
        }

        .primary-navigation-item-has-children {
            position: relative;
        }

        .primary-nav-link-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 12px;
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            font-size: 13px;
            border-radius: 10px;
            transition: var(--transition);
            margin-bottom: 2px;
            line-height: 1.3;
        }

        .primary-nav-link-item span {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .primary-nav-link-item span i {
            flex-shrink: 0;
        }

        .primary-nav-link-item i:first-child {
            width: 25px;
            color: var(--primary-color);
        }

        .primary-navigation-item-has-children:hover>.primary-nav-link-item {
            background: var(--light-bg);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Alt Menyu (Submenu) ÃœÃ§Ã¼n MÃ¼asir Stil */
        .secondary-dropdown-menu-list {
            display: none;
            position: absolute;
            left: 100%;
            top: -10px;
            /* Æsas menyu ilÉ™ eyni hizada baÅŸlasÄ±n */
            width: 260px;
            background: #ffffff;

            /* Daha yumÅŸaq vÉ™ dÉ™rinlik verÉ™n kÃ¶lgÉ™ */
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);

            z-index: 1001;
            border-radius: 14px;
            padding: 12px;
            list-style: none;

            /* Sol tÉ™rÉ™fdÉ™ki incÉ™ vurÄŸu xÉ™tti */
            border-left: 4px solid var(--primary-color);
            margin-left: 15px;
            /* Ana menyu ilÉ™ submenu arasÄ±nda kiÃ§ik boÅŸluq */
        }

        /* Alt Menyu DaxilindÉ™ki LinklÉ™r */
        .secondary-dropdown-menu-list li a {
            display: block;
            padding: 10px 15px;
            color: #444;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        /* Linkin Ã¼zÉ™rinÉ™ gÉ™ldikdÉ™ (Hover) */
        .secondary-dropdown-menu-list li a:hover {
            background-color: var(--light-bg);
            /* YÃ¼ngÃ¼l fon rÉ™ngi */
            color: var(--primary-color);
            padding-left: 20px;
            /* SaÄŸa sÃ¼rÃ¼ÅŸmÉ™ effekti */
        }

        /* Hover zamanÄ± menyunun aÃ§Ä±lmasÄ± */
        .primary-navigation-item-has-children:hover .secondary-dropdown-menu-list {
            display: block;
            animation: slideInAndFade 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        }

        /* Daha axÄ±cÄ± animasiya */
        @keyframes slideInAndFade {
            0% {
                opacity: 0;
                transform: translateX(20px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* AradakÄ± boÅŸluqda mausun itmÉ™mÉ™si Ã¼Ã§Ã¼n "gÃ¶rÃ¼nmÉ™z kÃ¶rpÃ¼" */
        .primary-navigation-item-has-children::after {
            content: "";
            position: absolute;
            right: -20px;
            top: 0;
            width: 20px;
            height: 100%;
        }

        /* --- Slider --- */
        .central-hero-carousel-display-area {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        @media (max-width: 768px) {
            .central-hero-carousel-display-area {
                height: 300px;
            }

            .navigation-sidebar-category-section {
                height: auto;
                max-height: 280px;
                position: static;
            }
        }

        .carousel-slide-element {
            display: none;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide-element.active-carousel-state {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: zoomEffect 6s infinite alternate;
        }

        @keyframes zoomEffect {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }

        .carousel-caption-text-holder {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            padding: 20px 40px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .carousel-main-display-title {
            color: #fff;
            font-size: 1.5rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* --- Yeni AnimasiyalÄ± Reklam BÃ¶lmÉ™si --- */
        .promotional-marketing-sidebar-aside {
            position: sticky;
            top: 90px;
        }

        .promo-sidebar-card {
            background: linear-gradient(135deg, #2f3542 0%, #000000 100%);
            border-radius: 20px;
            padding: 30px 20px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .promo-sidebar-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(247, 151, 28, 0.1) 0%, transparent 70%);
            animation: rotateBg 10s linear infinite;
        }

        @keyframes rotateBg {
            to {
                transform: rotate(360deg);
            }
        }

        .discount-blob {
            background: var(--secondary-color);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 20px;
            transform: rotate(15deg);
            box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
            animation: pulseEndirim 2s infinite;
            z-index: 2;
        }

        @keyframes pulseEndirim {
            0% {
                transform: rotate(15deg) scale(1);
            }

            50% {
                transform: rotate(15deg) scale(1.1);
            }

            100% {
                transform: rotate(15deg) scale(1);
            }
        }

        .promo-image-container {
            position: relative;
            z-index: 1;
            margin: 20px 0;
        }

        .promo-product-img {
            width: 180px;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
            transition: transform 0.5s ease;
        }

        .promo-sidebar-card:hover .promo-product-img {
            transform: translateY(-10px) rotate(5deg);
        }



        /* Hover effektini silirik vÉ™ ya lÉ™ÄŸv edirik, Ã§Ã¼nki animasiya artÄ±q daim iÅŸlÉ™yÉ™cÉ™k */
        .promo-sidebar-card:hover .promo-product-img {
            transform: none;
        }

        .promo-product-img {
            width: 180px;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));

            /* AnimasiyanÄ± tÉ™tbiq edirik */
            animation: floatInfinite 3s ease-in-out infinite;
        }

        /* Sonsuz hÉ™rÉ™kÉ™t animasiyasÄ± */
        @keyframes floatInfinite {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                /* YuxarÄ± qalxÄ±r vÉ™ bir az saÄŸa meyllÉ™nir */
                transform: translateY(-15px) rotate(5deg);
            }

            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }





        .price-tag {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 10px 0;
            display: block;
        }

        .old-price {
            font-size: 1rem;
            color: #747d8c;
            text-decoration: line-through;
            margin-left: 10px;
        }

        .buy-now-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            /* Hamar keÃ§id Ã¼Ã§Ã¼n */
            position: relative;
            z-index: 2;
            outline: none;
            /* Ä°lkin nÉ™bz effekti */
            animation: pulse-shadow 2s infinite;
        }

        /* DÃ¼ymÉ™ni basÄ±b saxladÄ±qda (Klik anÄ±) */
        .buy-now-btn:active {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(247, 151, 28, 0.7);
            transition: 0.1s;
            /* BasÄ±lma anÄ± daha sÃ¼rÉ™tli olsun */
        }

        /* ÃœzÉ™rinÉ™ gÉ™ldikdÉ™ kÃ¶lgÉ™nin rÉ™ngini bir az tÃ¼ndlÉ™ÅŸdirÉ™k */
        .buy-now-btn:hover {
            background: #e68a00;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* NÉ™bz (Pulsation) AnimasiyasÄ± */
        @keyframes pulse-shadow {
            0% {
                box-shadow: 0 0 0 0 rgba(247, 151, 28, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(247, 151, 28, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(247, 151, 28, 0);
            }
        }

        /* Countdown Styling */
        .timer-flex {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .t-unit {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px;
            border-radius: 8px;
            min-width: 45px;
        }

        .t-unit b {
            display: block;
            font-size: 1.1rem;
        }

        .t-unit span {
            font-size: 0.6rem;
            text-transform: uppercase;
            opacity: 0.7;
        }
    


        .corporate-partnership-branding-slider-section {
            width: 100%;
            background-color: #ffffff;
            padding: 40px 0;
            margin: 20px 0;
            overflow: hidden;
            /* Kenardan Ã§Ä±xan loqolarÄ±n gÃ¶rÃ¼nmÉ™mÉ™si Ã¼Ã§Ã¼n */
            border-top: 1px solid #eeeeee;
            border-bottom: 1px solid #eeeeee;
        }

        .partnership-slider-main-viewport {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .partnership-logos-track-overflow-container {
            display: flex;
            width: max-content;
            /* LoqolarÄ±n yan-yana sonsuz dÃ¼zÃ¼lmÉ™si Ã¼Ã§Ã¼n */
            align-items: center;
            gap: 30px;
        }

        .individual-partner-logo-item {
            width: 160px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            border: 1px solid #f0f0f0;
            /* ÅžÉ™kildÉ™ki Ã§É™rÃ§ivÉ™ effekti */
            border-radius: 12px;
            padding: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .individual-partner-logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: var(--primary);
            /* Sizin rÉ™ng kodunuz */
        }

        .individual-partner-logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            /* BaÅŸlanÄŸÄ±cda aÄŸ-qara (opsionel) */
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .individual-partner-logo-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Animasiya Ã¼Ã§Ã¼n aÃ§ar sÃ¶zlÉ™r */
        @keyframes continuousScrollAnimation {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

            /* YarÄ±sÄ±na qÉ™dÉ™r sÃ¼rÃ¼ÅŸÉ™ndÉ™ dÃ¶ngÉ™ tamamlanÄ±r */
        }

        .partnership-logos-track-overflow-container {
            animation: continuousScrollAnimation 25s linear infinite;
        }

        /* Mausu Ã¼zÉ™rinÉ™ gÉ™tirÉ™ndÉ™ slider dayansÄ±n */
        .partnership-logos-track-overflow-container:hover {
            animation-play-state: paused;
        }
    


        :root {
            --primary: #f7971c;
            --secondary: #2f3542;
            --success: var(--success-bright);
            --info: #1e90ff;
            --danger: var(--danger-bright);
            --light: #f1f2f6;
        }

        .product-section {
            max-width: min(100%, var(--container-max, 1140px));
            margin: 50px auto;
            padding: 0 20px;
        }

        /* Filter Nav */
        .filter-wrapper {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .f-btn {
            padding: 10px 22px;
            border: none;
            background: var(--light);
            color: var(--secondary);
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .f-btn.active,
        .f-btn:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(247, 151, 28, 0.3);
        }

        /* Grid System */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 25px;
        }

        @media (max-width: 1100px) {
            .catalog-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 800px) {
            .catalog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .catalog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
            }
        }

        .catalog-empty-hint {
            margin: 28px auto 0;
            max-width: 420px;
            padding: 16px 20px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #666;
            background: #fff;
            border: 1px dashed #ddd;
            border-radius: 12px;
        }

        .catalog-empty-hint[hidden] {
            display: none !important;
        }

        .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);
            height: 100%;
        }

        .card-link {
            display: flex;
            flex-direction: column;
            height: 100%;
            color: inherit;
            text-decoration: none;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .card-img-box {
            position: relative;
            height: 200px;
        }

        .card-img-box img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Badges */
        .badge-status {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
        }

        .badge-type {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        /* Status Colors */
        .bg-new {
            background: var(--success);
        }

        .bg-used {
            background: var(--danger);
        }

        .type-sale {
            border: 1px solid var(--primary);
            color: var(--primary) !important;
            background: rgba(255, 255, 255, 0.9);
        }

        .type-rent {
            border: 1px solid var(--info);
            color: var(--info) !important;
            background: rgba(255, 255, 255, 0.9);
        }

        .card-body {
            padding: 20px;
        }

        .card-category {
            font-size: 12px;
            color: #a4b0be;
            font-weight: 600;
            margin-bottom: 5px;
            display: block;
        }

        .card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8em;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px dashed #eee;
        }

        .price-tag {
            font-size: 20px;
            font-weight: 800;
            color: var(--secondary);
        }

        .price-tag span {
            font-size: 14px;
            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);
        }

        /* Animation for Filter */
        .hidden {
            display: none;
        }

        .show {
            animation: popIn 0.4s ease forwards;
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }
    


        :root {
            --primary-orange: var(--primary);
            --deep-blue: #0f172a;
            --accent-yellow: #ffd200;
        }

        .premium-hero-banner {
            width: 100%;
            height: 350px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            font-family: var(--font-sans);
        }

        /* HÉ™rÉ™kÉ™tli Qradiyent Fon */
        .animated-gradient-bg {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle at center, #1e293b 0%, #0f172a 40%, #1e1b4b 100%);
            background-size: 50% 50%;
            animation: rotateBg 15s linear infinite;
            z-index: 1;
        }

        /* Texnoloji tor effekti */
        .banner-overlay-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(247, 151, 28, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 2;
            opacity: 0.5;
        }

        .banner-inner-content {
            position: relative;
            z-index: 3;
            width: min(100%, var(--container-max, 1140px));
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mini-label {
            color: var(--primary-orange);
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 3px;
            border-left: 3px solid var(--primary-orange);
            padding-left: 10px;
            margin-bottom: 15px;
            display: block;
        }

        .main-slogan {
            font-size: 48px;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sub-text {
            color: #94a3b8;
            font-size: 16px;
            max-width: 450px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .action-btns {
            display: flex;
            gap: 15px;
        }

        .glow-btn {
            background: var(--primary-orange);
            color: #000;
            border: none;
            padding: 14px 30px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(247, 151, 28, 0.4);
            transition: 0.3s;
        }

        .glow-btn:hover {
            background: white;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .glass-btn {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 14px 30px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: 0.3s;
        }

        .glass-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
        }

        /* ÃœzÉ™n NiÅŸan */
        .visual-element {
            position: relative;
        }

        .floating-badge {
            width: 120px;
            height: 120px;
            background: rgba(247, 151, 28, 0.1);
            border: 2px dashed var(--primary-orange);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: float 4s ease-in-out infinite;
        }

        .floating-badge .number {
            font-size: 28px;
            font-weight: 900;
            color: white;
        }

        .floating-badge .label {
            font-size: 10px;
            color: var(--primary-orange);
            font-weight: 700;
        }

        /* Animasiyalar */
        @keyframes rotateBg {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Mobil uyÄŸunluq */
        @media (max-width: 768px) {
            .premium-hero-banner {
                height: auto;
                padding: 60px 0;
            }

            .banner-inner-content {
                flex-direction: column;
                text-align: center;
                padding: 0 20px;
            }

            .mini-label {
                border-left: none;
                border-bottom: 2px solid var(--primary-orange);
                display: inline-block;
                padding: 0 10px;
            }

            .main-slogan {
                font-size: 32px;
            }

            .action-btns {
                justify-content: center;
            }

            .visual-element {
                display: none;
            }
        }
    


        /* CSS kodlarÄ± eyni qalÄ±r, prefikslÉ™r sayÉ™sindÉ™ heÃ§ nÉ™ toqquÅŸmayacaq */
        .equipment-section {
            max-width: min(100%, var(--container-max, 1140px));
            margin: 60px auto;
            padding: 0 20px;
            font-family: var(--font-sans);
        }

        .equipment-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 20px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .equipment-header__start {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .equipment-header h2 {
            margin: 0;
            font-size: 26px;
            font-weight: 700;
            color: #2f3542;
        }

        .equipment-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .equipment-tab-link {
            font-size: 13px;
            font-weight: 600;
            color: #747d8c;
            border: 1px solid #e1e4e8;
            background: #fff;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 999px;
            margin-right: 0;
            transition: 0.25s;
        }

        .equipment-tab-link.active {
            color: var(--primary);
            border-color: rgba(247, 151, 28, 0.45);
            background: rgba(247, 151, 28, 0.1);
        }

        .equipment-nav {
            display: flex;
            gap: 8px;
        }

        .equipment-nav-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid #e1e4e8;
            background: #fff;
            cursor: pointer;
        }

        .equipment-nav-btn:hover {
            background: #2f3542;
            color: #fff;
        }

        .equipment-slider-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .equipment-carousel-inner {
            display: flex;
            gap: 24px;
            align-items: stretch;
            scroll-behavior: smooth;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            padding: 12px 4px 20px;
            -webkit-overflow-scrolling: touch;
        }

        .equipment-carousel-inner .product-card {
            position: relative;
            min-width: 300px;
            width: 300px;
            flex: 0 0 300px;
            flex-shrink: 0;
            align-self: stretch;
            height: auto;
        }

        .equipment-carousel-inner .product-card:hover {
            transform: translateY(-6px);
        }

        .equipment-carousel-inner::-webkit-scrollbar {
            display: none;
        }

        .equipment-empty-hint {
            display: none;
            margin-top: 8px;
            padding: 14px 16px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #666;
            background: #fff;
            border: 1px dashed #ddd;
            border-radius: 12px;
        }

        .equipment-empty-hint.is-visible {
            display: block;
        }

        @media (max-width: 900px) {
            .equipment-section {
                margin: 40px auto;
            }

            .equipment-header {
                align-items: flex-start;
            }

            .equipment-header h2 {
                font-size: 22px;
            }

            .equipment-carousel-inner {
                gap: 14px;
                scroll-snap-type: x mandatory;
                padding: 8px 0 16px;
            }

            .equipment-carousel-inner .product-card {
                min-width: 268px;
                width: 268px;
                flex: 0 0 268px;
                scroll-snap-align: start;
            }
        }

        @media (max-width: 560px) {
            .equipment-nav {
                display: none;
            }

            .equipment-tabs {
                width: 100%;
            }

            .equipment-tab-link {
                flex: 1;
                text-align: center;
                padding: 8px 10px;
            }

            .equipment-carousel-inner .product-card {
                min-width: calc(50vw - 16px);
                width: calc(50vw - 16px);
                flex: 0 0 calc(50vw - 16px);
            }
        }

        .equipment-card {
            min-width: 290px;
            background: #fff;
            border: 1px solid #e1e4e8;
            border-radius: 12px;
            padding: 20px;
            position: relative;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }

        .equipment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .equipment-actions {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 3;
        }

        .equipment-year {
            font-weight: 600;
            color: #747d8c;
        }

        .equipment-title {
            font-size: 15px;
            color: #2f3542;
            margin: 10px 0;
            min-height: 40px;
            overflow: hidden;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .equipment-img {
            width: 100%;
            height: 160px;
            object-fit: contain;
            margin: 15px 0;
        }

        .equipment-cat {
            font-size: 12px;
            color: #747d8c;
            text-transform: uppercase;
        }

        .equipment-calc-box {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .eq-m-btn {
            padding: 3px 6px;
            font-size: 10px;
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 4px;
            cursor: pointer;
        }

        .eq-m-btn.active {
            background: #2f3542;
            color: #fff;
            border-color: #2f3542;
        }

        .eq-m-val {
            font-size: 13px;
            color: #2f3542;
        }

        .eq-old-price {
            font-size: 12px;
            color: #a4b0be;
            text-decoration: line-through;
        }

        .eq-new-price {
            font-size: 20px;
            font-weight: 800;
            color: #2f3542;
        }

        .equipment-add-btn {
            width: 100%;
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .eq-hidden {
            display: none !important;
        }
    


/* Header/promo/nav/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;
            }
        }

/* ============================================================
   Card harmonization (Faza 2) — iki kart sistemini vizual
   olaraq vahidləşdirir: eyni radius/kölgə/hover (token əsaslı).
   ============================================================ */
.product-section .catalog-grid .card,
.equipment-section .product-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.product-section .catalog-grid .card:hover,
.equipment-section .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
    
