.product-size-tabs {
    position: absolute;
    display: flex;
    gap: 1rem;
    bottom: 5px;
    left: 5px;
    right: 5px;
    justify-content: center;
    background-color: #fff !important;
	opacity: 0;
}

.vamtam-thumb-wrapper:hover .product-size-tabs,
.size-modal-body .product-size-tabs {
	opacity: 1 !important;
}

.size-button {
    padding: 15px 5px !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
    color: #000 !important;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-size: 1rem !important;
}

.size-button:disabled {
    color: #66666673 !important;
}


.size-button:hover {
    background: #fff;
    color: #000 !important;
}

.vamtam-thumb-wrapper .view-product {
    display: none;
    z-index: 3 !important;    
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 20px;
    position: relative;
    max-width: 90%;
    width: 400px;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.size-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    transition: transform 0.3s ease;
    transform: translateY(100%);
}

.size-modal.show {
    display: block;
    transform: translateY(0);
}

.size-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

.size-modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.size-modal-body {
    margin-top: 40px;
}

.swiper-wrapper {
	z-index: 99;
}

@media (max-width: 1024px) {
    .product-size-tabs {
        display: none;
    }

    .vamtam-thumb-wrapper .view-product {
        display: block;
        position: absolute;
        bottom: 15px;
        right: 15px;
        background-color: #fff;
        border-color: #fff;
        color: #000;
        font-size: 24px;
        padding: 0px 10px;
    }

    .size-modal-body .product-size-tabs {
        display: block;
        text-align:center;
    }

    .size-modal-body .product-size-tabs button {
        font-size: 20px !important;
    }
}


.product-size-tabs {
	z-index: 100;
}
