.featured-product-details h3.product-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}

.full-width-button {
    width: 100%;
}

button.style-1 {
    background-color: var(--light-blue) !important;
    color: var(--contrast) !important;
    border: 2px solid #dff2fd;
    border-radius: 6px;
}

button.style-2 {
    border-radius: 6px;
    padding-top: 7px;
    padding-bottom: 7px;
}

button.style-3 {
    background-color: #56276f !important;
    color: var(--base-3) !important;
    border: 2px solid #dff2fd;
    border-radius: 6px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.preview-icon {
    width: 14px;
}

.preview-text {
    margin-left: 15px;
    font-weight: 600;
}

.aff-row {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
}

.aff-column {
    flex: 50%;
}

.text-center {
    text-align: center;
}

.featured-product-details .price {
    font-weight: 600;
}

.woocommerce-loop-product__title {
    font-weight: 700;
}

.preview-button-wrapper {
    margin-top: 25px;
}

.shop-archive-layout {
    text-align: left;
}

/* Preview Popup Begins */
/* Overlay to cover the screen */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    z-index: 9999;
    /* Ensure the modal is above everything else */
}

/* Modal content */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 80%;
    /* Optional: limit max width of the modal */
    max-height: 70%;
    /* Optional: limit max height of the modal */
    overflow: auto;
}

/* Close button */
button.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #33688a;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

button.close-popup:hover {
    background: #33688a;
}

/* Styling the audio player */
audio {
    width: 100%;
    max-width: 350px;
}
/* Preview Popup Ends */

.product-cart-message {
    color: var(--dark-blue);
    text-align: center;
    font-weight: 700;
}

.aff-column.price, 
.woocommerce ul.products li.product .price {
    font-size: 21px !important;
    font-weight: 600 !important;
}

#cart-message {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    color: #56276f;
    margin-bottom: 15px;
}

.featured-product-details .product-short-description,
.shop-archive-layout .product-short-description {
    font-size: 16px;
}

.shop-archive-layout .product-short-description {
    margin-top: 15px;
}
/** SEE MORE LINK CSS **/
.see-more-toggle {
    display: inline-block;
    margin-top: 5px;
    color: #33688a;
    text-decoration: underline !important
    ;
    cursor: pointer;
    font-weight: 600;
}