zoomable {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.zoomable:hover {
    transform: scale(1.1);
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fullscreen img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 1000;
    color: #333;
}

.main-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 0.5rem;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-box.selected {
    transform: scale(1.5);
    border: 1px solid #7a7a7a;
}

#add-to-wishlist {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: larger;
