.product-title {
    font-family: "Cinzel", serif;
    
}

.product-price {
    color: var(--tertiary-color);
    font-weight: bold;
    font-family: sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.product-description {
    color: #727272;
}

.product-category strong {
    font-size: 1.15rem;
    color: #000000;
}

.grid-product-information {
    min-height: calc(72vh);
    border-radius: 1rem;
    padding: clamp(1rem, 5vw, 3rem);
    background-color: white;
    margin-bottom: clamp(1rem, 5vw, 5rem);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 30rem), 1fr));
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.125);
    gap: 1rem;
}
#mainImage{
    border-radius: 1rem;
}
.image-preview img {
    object-fit: contain;
    width: 100%;
    max-height: 400px;

}
.thumbnail-image:hover{
    opacity: 1;
    cursor: pointer;
}
.images-carrusel img {
    opacity: 0.5;
    max-width: 100px;
    width: 100%;
    border: 2px solid #e4e4e4;
    border-radius: 1rem;
}

