* {
    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);
}

a {
    text-decoration: none !important;
}

.filter-dropdown {
    width: 25%;
}

.filter-dropdown-toggle {
    width: 100%;
}

.sold-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

.shop-one-image-block {
    position: relative;
}

.main-shop-list-item {
    position: relative;
}

.sold-tag-car-page {
    width: 100px;
    text-align: center;
    background-color: #d9534f;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 5px;
    z-index: 1000; /* Ensures it's on top of other elements */
}

.main-service-one img {
    max-height: 400px;
    min-width: 350px;
}

/* General styles for product tag block */
.product-tag-block {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Slight transparent background */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Individual product tags */
.product-detail-tag {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1); /* Slight transparent white background */
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.product-detail-tag:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Darken on hover */
}

/* Mobile adaptation */
@media (max-width: 768px) {
    .product-tag-block {
        padding: 15px;
        align-items: flex-start;
    }

    .product-detail-tag {
        font-size: 12px; /* Smaller font size on mobile */
        padding: 6px 10px; /* Reduced padding on smaller screens */
    }
}

/* Tablet adaptation (adjust for medium screen sizes) */
@media (min-width: 768px) and (max-width: 1024px) {
    .product-tag-block {
        padding: 18px;
    }

    .product-detail-tag {
        font-size: 13px; /* Slightly smaller than desktop */
        padding: 7px 11px;
    }
}
