/* Popup Functionality */
.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.quick-view-modal.hidden {
    display: none;
}
.quick-view-content {
    background: #fff;
    padding: 40px 20px;
    max-width: 800px;
    width: 90%;
    position: relative;
    border-radius: 10px;
	max-height: 80vh;
	overflow-y: scroll;
}

.quick-view-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}



.quick-view-primary-info {
	padding: 20px;
	border: 1px solid #e9ebeb;
	border-radius: 10px;
	background: #f9fafa;
}
.quick-view-title h2 {
	padding: 0;
	margin: 0;
	font-size: 1.2em;
}
.quick-view-description {
	margin: 0 0 20px 0;
}
.quick-view-price {
	color: #243352;
}
.quick-view-form {
	margin-top: 20px;
}


.quick-view-cart-button {
	background-color: var(--wp--preset--color--custom-contrast);
	border-radius: 999px;
	font-style: normal;
	font-weight: 700;
	padding-top: 7px;
	padding-right: 17px;
	padding-bottom: 7px;
	padding-left: 17px;
	color: #ffffff;
	border: 0;
	font-family: inherit;
	font-size: 1em;
	cursor: pointer;
}


.qty-columns {display: flex; gap: 10px; padding: 10px 0;}
.qty-column {display: flex; flex-direction: column; justify-content: center;}

.quick-view-qty .input-text {
	width: 80px;
	height: 40px;
}
.quick-view-qty .qty-note {
	font-size: 0.8em;
	padding: 0;
	margin: 0;
}
.quick-view-qty .qty-custom-label {
	font-weight: bold;
}