.image-gallery {
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 10% 4rem;
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(4, 1fr);
}

.image-gallery-head {
    font-size: 4rem;
    text-align: center;
    padding: 3rem 10% 0;
}

.image-gallery img {
    max-width: 100%;
    height: 300px;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

@media screen and (max-width:1700px) {
    .image-gallery {
        padding-inline: 5%;
    }
}

@media screen and (max-width: 800px) {
    .image-gallery-head {
        font-size: 2rem;
        padding: 2rem 5% 0;
    }

    .image-gallery {
        padding: 1rem 5% 2rem;
        display: grid;
        gap: .5rem;
        grid-template-columns: repeat(1, 1fr);
    }

    .image-gallery img {
        height: 300px;
    }

}

/* ---------------------------- */
/* cars-product-specification */
.cars-product-specification {
    display: flex;
    padding: 4rem 10% 0;
    gap: 4rem;
}

.cars-product-left {
    max-width: 50%;
    min-width: 50%;
    background: whitesmoke;
    max-height: max-content;
    /* border: 1px solid greenyellow; */
}

.cars-product-left img {
    max-width: 100%;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.cars-product-right * {
    font-size: 1.1rem;
}

.cars-product-right .name {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cars-product-right .tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cars-product-right .tags p {
    background: black;
    color: white;
    padding: .5rem 1rem;
}

.cars-product-right .final-price {
    font-size: 3rem;
    margin-top: 1rem;
    background: linear-gradient(120deg, rgb(255, 0, 0), orange);
    background-clip: text;
    color: transparent;
    max-width: max-content;
    font-weight: 400;
}

.Vehicle-features {
    /* margin-top: 2rem; */
    padding-top: 2rem;
    /* border-top: 1px solid gainsboro; */
}

.Vehicle-features h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.Vehicle-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.Vehicle-features-grid * {
    font-size: 1.25rem;
}

.Vehicle-features-grid p{
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 1700px) {
    .cars-product-specification {
        padding-inline: 5%;
    }

    .cars-product-right .name {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 800px) {
    .cars-product-specification {
        display: flex;
        flex-direction: column;
        padding: 2rem 5% 3rem;
        gap: 2rem;
        border-bottom: 1px solid gainsboro;
    }

    .cars-product-right .name {
        font-size: 1.75rem;
    }

    .cars-product-left {
        max-width: 100%;
        min-width: 100%;
    }


    .Vehicle-features {
        padding-top: 1.25rem;
    }

    .Vehicle-features h3 {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .Vehicle-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .Vehicle-features-grid p{
        gap: .25rem;
    }

    .Vehicle-features-grid *{
        font-size: .95rem;
    }
}


.whatsapp-message {
    background: greenyellow;
    padding: 1rem;
    display: block;
    max-width: max-content;
    margin-top: 2rem;
}