* {
    scroll-behavior: smooth;
}

iframe {
    width: 100% !important;
}

h1, p {
    transition: font-size 0.7s ease;
}

select {
    /*color: #a2a7ba !important;*/
}

h1.visible {
    opacity: 1; /* Fade in */
    transform: translateX(0);
}

.google-map iframe {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

a {
    text-decoration: none !important;
}

body {
    color: var(--colors--midnight);
    font-family: Space Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.car-card {
    position: relative;
}

.sold-sign {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e63946;
    color: #fff;
    padding: 6px 14px;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

.sold-sign-car-page {
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 10px;
    font-size: 17px;
    margin-bottom: 5px
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 991px) {
    .contact-button-mobile {
        display: none !important;
    }
}