﻿.img-product {
    width: 100%;
    max-width: 490px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin: 0 auto; 
}

.img-product-detail {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    display: block;
    margin: 0 auto; 
    margin-top: 10px;
}

.imagsGallery {
    display: flex;
    flex-wrap: wrap; 
    gap: 5px; 
    justify-content: center; 
    align-items: center; 
}

.imagsItems {
    flex: 0 0 300px;
    height: 300px; 
    overflow: hidden;
    border-radius: 4px;
}

.imagsItems img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.variantsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variantButton {
    min-width: 60px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s;
}

.variantButton:hover:not(.disabled) {
    border-color: #765238;
    color: white !important;
    background-color: #765238;
}

.variantButton.disabled {
    color: #aaa;
    text-decoration: line-through;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.variantButton.active {
    background-color: #765238;
    color: white !important;
    border-color: #765238;
}


/*Favorites*/
.productColumn.favorite .pcActionsList {
    opacity: 1;
    transform: translateX(0%);
}

.btn-circle-close {
    width: 30px; /* Circle width */
    height: 30px; /* Circle height */
    border-radius: 50%; /* Make it circular */
    border: 1px solid #765238;
    background-color: #fff;
    color: #765238;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin-right: 15px !important;
}

.btn-circle-close:hover {
    background-color: #765238;
    color: #fff;
    transition: 0.2s;
}