:root {
    --btnColor: #584b36 !important;
    --background: #D7C9B7;
    --padding-Left-Right: 50px;
    --Nav-color: #1d1d1d !important;
    --footer-color: #181818 !important;
    --blur: 6px !important;


}


.product-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.product-container {
    margin-top: 200px;
}

.thumb-img {
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: 0.2s;
}

.thumb-img:hover {
    border: 2px solid black;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: grey;
    margin-left: 10px;
}

.discount {
    color: red;
    font-weight: bold;
    margin-left: 10px;
}

.btn-custom {
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-buy {
    background: black;
    color: white;
}



.button-cart {
    /* position: relative; */
    padding: 8px 30px !important;
    border-radius: 100px;
    border: 1px solid var(--Nav-color) !important;
    background-color: white;
    cursor: pointer;
    font-weight: 300 !important;
    transition: color 0.1s ease, border-color 0.3s ease;
}


.button-cart:hover {
    background-color: var(--Nav-color) !important;
    border: 1px solid var(--btnColor) !important;
    color: white !important;
    transition: color 0.1s ease, border-color 0.3s ease;
}






.size-box {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.size-box:hover {
    border: 1px solid black;
}

.color-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    border: 2px solid #ddd;
}

.color-dot:hover {
    border: 2px solid black;
}

.product-desc {
    margin-top: 30px;
}