﻿/* === shops.html === */

        /* --- DÉ™yiÅŸÉ™nlÉ™r vÉ™ SÄ±fÄ±rlama --- */
/* Header/promo/nav chrome main.css-dən gəlir — dublikat silindi */
    


        /* Ana Konteyner vÉ™ Ãœmumi Ayarlar */
        .heavy-machinery-marketplace {
            padding: 60px 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #f8f9fa;
        }

        .machinery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* BaÅŸlÄ±q vÉ™ AÃ§Ä±qlama HissÉ™si */
        .marketplace-hero-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .marketplace-hero-header h1 {
            font-size: 34px;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .marketplace-hero-header h6 {
            font-size: 17px;
            color: #555;
            font-weight: 400;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Filtrasiya Paneli */
        .machinery-filter-control-panel {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .machinery-search-wrapper {
            display: flex;
            flex: 1;
            min-width: 300px;
        }

        .machinery-search-wrapper input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 10px 0 0 10px;
            outline: none;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .machinery-search-wrapper input:focus {
            border-color: var(--primary);
        }

        .machinery-search-wrapper button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }

        .machinery-search-wrapper button:hover {
            background: #e0861a;
        }

        .machinery-dropdown-selectors {
            display: flex;
            gap: 12px;
        }

        .machinery-dropdown-selectors select {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            outline: none;
            background: white;
            color: #444;
            font-size: 14px;
            cursor: pointer;
        }

        /* MaÄŸaza KartlarÄ± Grid */
        .machinery-shops-display-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
        }

        /* Kart Linki ÃœÃ§Ã¼n Stil */
        .heavy-vendor-card-link {
            text-decoration: none;
            display: block;
            color: inherit;
            transition: all 0.3s ease;
        }

        .heavy-vendor-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid #efefef;
            text-align: center;
            position: relative;
            height: 100%;
        }

        .heavy-vendor-card-link:hover .heavy-vendor-card {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .vendor-card-cover-image {
            height: 110px;
            background-color: #eee;
            background-size: cover;
            background-position: center;
        }

        .vendor-card-body {
            padding: 45px 20px 25px;
            position: relative;
        }

        .vendor-brand-identity-circle {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            padding: 8px;
            border: 1px solid #f1f1f1;
        }

        .vendor-brand-identity-circle img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .heavy-vendor-card h3 {
            font-size: 19px;
            margin: 10px 0 6px;
            color: #222;
            font-weight: 700;
        }

        .vendor-geo-label {
            font-size: 14px;
            color: #777;
            margin-bottom: 20px;
            display: block;
        }

        .vendor-card-stats-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            border-top: 1px solid #f5f5f5;
            padding-top: 15px;
        }

        .vendor-status-pill {
            padding: 5px 14px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .vendor-status-pill.vip-tier {
            background: #fce4ec;
            color: #d81b60;
        }

        .vendor-status-pill.basic-tier {
            background: #fff3e0;
            color: var(--primary);
        }

        .vendor-inventory-count {
            font-size: 13px;
            color: #999;
        }

        /* Responsiv Ayarlar */
        @media (max-width: 768px) {
            .marketplace-hero-header h1 {
                font-size: 26px;
            }

            .machinery-filter-control-panel {
                flex-direction: column;
                align-items: stretch;
            }

            .machinery-dropdown-selectors {
                flex-direction: column;
            }
        }
    


/* Footer chrome main.css-dən gəlir — dublikat silindi */
    


/* fixed-social styles live in main.css */
