
   /* ============ COMMENT CAROUSEL ============ */
        .comment-carousel {
            width: 100%;
            max-width: 1000px;
            padding: 40px 20px;
            overflow: hidden;
            position: relative;
            background: transparent;
        }

        .comment-carousel-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .comment-carousel-title i {
            color: var(--primary-color);
            font-size: 36px;
        }

        .comment-carousel-title span {
            color: var(--primary-color);
        }

        /* Track - commentlar harakatlanadigan joy */
        .comment-track {
            display: flex;
            gap: 25px;
            animation: slideComments 30s linear infinite;
            width: max-content;
        }

        /* Har bir comment kartasi */
        .comment-card {
            min-width: 280px;
            max-width: 280px;
            background: var(--secondary-color);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 30px rgba(50, 163, 253, 0.12);
            border-left: 5px solid var(--primary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }

        .comment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--text-color));
            border-radius: 16px 16px 0 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .comment-card:hover::before {
            opacity: 1;
        }

        .comment-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 40px rgba(50, 163, 253, 0.25);
        }

        /* Comment header - ism va role */
        .comment-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--text-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
        }

        .comment-user-info {
            flex: 1;
        }

        .comment-user-name {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
        }

        .comment-user-role {
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 3px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .comment-user-role i {
            font-size: 14px;
        }

        .role-store {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .role-diler {
            background: #fff3e0;
            color: #e65100;
        }

        .role-ttc {
            background: #e3f2fd;
            color: #0d47a1;
        }

        .role-mijoz {
            background: #fce4ec;
            color: #c62828;
        }

        /* Comment text */
        .comment-text {
            font-size: 15px;
            color: #444;
            line-height: 1.6;
            margin-bottom: 12px;
            font-style: italic;
        }

        .comment-text i {
            color: var(--primary-color);
            font-size: 18px;
            margin: 0 4px;
        }

        /* Comment date */
        .comment-date {
            font-size: 12px;
            color: #999;
            text-align: right;
            border-top: 1px solid #eee;
            padding-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
        }

        .comment-date i {
            font-size: 14px;
        }

        /* Stars rating */
        .comment-stars {
            color: #ffc107;
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .comment-stars i {
            margin: 0 1px;
        }

        /* ============ ANIMATION ============ */
        @keyframes slideComments {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Trackni to'xtatib qo'yish - hoverda */
        .comment-carousel:hover .comment-track {
            animation-play-state: paused;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .comment-card {
                min-width: 240px;
                max-width: 240px;
                padding: 18px;
            }

            .comment-carousel-title {
                font-size: 24px;
            }

            .comment-carousel-title i {
                font-size: 28px;
            }

            .comment-user-name {
                font-size: 14px;
            }

            .comment-text {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .comment-card {
                min-width: 200px;
                max-width: 200px;
                padding: 14px;
            }

            .comment-carousel-title {
                font-size: 20px;
            }

            .comment-avatar {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .comment-user-role {
                font-size: 11px;
                padding: 2px 10px;
            }
        }

            /* ============ LOCATION PAGE ============ */
        .location-page {
            max-width: 1200px;
            margin: 0 auto;
        }

        .location-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .location-header h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-color);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .location-header h1 i {
            color: var(--primary-color);
            font-size: 42px;
        }

        .location-header h1 span {
            color: var(--primary-color);
        }

        .location-header p {
            font-size: 18px;
            color: #666;
        }

        .location-header p i {
            color: var(--primary-color);
            margin-right: 5px;
        }

        /* ============ LOCATION GRID ============ */
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        /* ============ LOCATION CARD ============ */
        .location-card {
            background: var(--secondary-color);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(50, 163, 253, 0.10);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
        }

        .location-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(50, 163, 253, 0.20);
            border-color: var(--primary-color);
        }

        /* Location Image */
        .location-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--primary-color), var(--text-color));
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .location-card:hover .location-image img {
            transform: scale(1.08);
        }

        /* Location Badge (ustiga yozuv) */
        .location-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 15px rgba(50, 163, 253, 0.3);
        }

        .location-badge i {
            font-size: 16px;
        }

        /* Location Info */
        .location-info {
            padding: 24px;
        }

        .location-name {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .location-name i {
            color: var(--primary-color);
            font-size: 24px;
        }

        .location-address {
            font-size: 14px;
            color: #777;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .location-address i {
            color: var(--primary-color);
            font-size: 16px;
        }

        /* Dilerlar soni */
        .location-stats {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 16px;
            border-top: 2px solid #f0f0f0;
        }

        .location-stats .stat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #555;
            font-weight: 600;
        }

        .location-stats .stat i {
            color: var(--primary-color);
            font-size: 18px;
        }

        .location-stats .stat span {
            color: var(--text-color);
            font-weight: 700;
        }

        /* Dilerlar ro'yxati */
        .dealers-list {
            margin-top: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .dealer-tag {
            background: var(--body-color);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 5px;
            border: 1px solid #e8e8e8;
            transition: all 0.3s ease;
        }

        .dealer-tag:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .dealer-tag i {
            font-size: 14px;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .location-header h1 {
                font-size: 28px;
            }

            .location-header h1 i {
                font-size: 32px;
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .location-image {
                height: 160px;
            }

            .location-name {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .location-header h1 {
                font-size: 24px;
                flex-wrap: wrap;
            }

            .location-grid {
                grid-template-columns: 1fr;
            }

            .location-image {
                height: 140px;
            }

            .location-info {
                padding: 18px;
            }

            .location-stats {
                flex-wrap: wrap;
                gap: 10px;
            }
        }