/* Styling for Quick View Modal */
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: none;
}

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 9999;
    width: 90%;
    padding: 50px;
    display: none;
    border-radius: 5px;
}


.quick-view-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.quick-view-price {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.quick-view-short-description {
    margin-bottom: 10px;
}



/** button*/

.quick-view-button {
    text-align: center;
    padding: 5px;
    display: flex;
    align-items: center;
    font-size: var(--wp--preset--font-size--small) !important;
    font-style: normal;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    padding: 8px;
}
.quick-view-button-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
}