.white-background {
        background: white !important;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    .white-background:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .product-grid-image {
        width: 100% !important;
        height: 200px !important;
    }

    .product-grid-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }



    .product-grid-btn a span,
    .product-grid-btn a label {
        margin-bottom: 0;
    }

   .section-text[dir="rtl"] {
    border-right: 3px solid #477CDB;
    border-left: none;
    }


    .section-text {
        padding-inline-start: 18px;
        text-align: start;
    }



    .badge {
        padding: 6px 9px;
        letter-spacing: 0.5px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .badge.badge-new {
        background: #11b76b;
    }

    .badge.badge-used {
        background: #ff3838;
    }

    .plyr{
        flex-direction: row !important;

        min-width: 0px !important;
    }

    .city-card {
            position: relative;
            width: 100%;
            height: 200px; /* Matches product-grid-image */
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }
        .city-card-image {
            width: 100%;
            height: 100%;
        }
        .city-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .city-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .city-card:hover .city-overlay {
            opacity: 1;
        }
        .city-overlay , .city-overlay h3  {
            color: white;
            text-decoration: none;
        }
        .city-overlay h3 {
            margin: 10px 0;
            font-size: 1.2rem;
        }
        .city-overlay p {
            margin: 0;
            font-size: 0.9rem;
        }


