.quickbuy-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.quickbuy-popup {
    background: #ffffff;
    padding: 40px 25px 25px;
    max-width: 510px;
    width: 90%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quickbuy-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    color: #d1d5db;
    background: none;
    border: none;
    padding: 8px;
    line-height: 1;
    transition: color 150ms ease-in-out;
}

.quickbuy-popup-close:hover {
    color: #000000;
}

.quickbuy-popup-products-container {
    padding: 16px;
    background: #ffffff;
    margin-top: 10px;
}

.quickbuy-popup-products-title {
    margin: 0 0 10px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    color: #051053;
    text-align: center;
}

.quickbuy-popup-coupon-title {
    margin: 0 0 15px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    color: #051053;
}

.quickbuy-popup-product {
    margin-bottom: 8px;
    padding: 8px 0px;
    border-bottom: solid 1px #E5EAF1;
    font-size: 16px;
    color: #8d97ad;
}
.quickbuy-popup-product strong{
    color: #051053;
}
.quickbuy-popup-product:last-child{
    border-bottom: none;
}

.quickbuy-popup-product:last-child {
    margin-bottom: 0;
}

.quickbuy-popup-product strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: #051053;
}

.quickbuy-popup-coupon {
    margin-top: 0px;
    padding: 16px;
    background: #ffffff;
    border: none;
    text-align: center;
}

.quickbuy-popup-coupon strong {
    color: #8d97ad;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quickbuy-popup-coupon svg {
    display: inline-block;
    margin-right: 5px;
    vertical-align: bottom;
    line-height: 24px;
}
.quickbuy-popup-coupon svg.coupon-check{
    margin-left: 5px;
    vertical-align: text-bottom;
}

.quickbuy-popup-actions {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.quickbuy-popup-btn {
    display: inline-flex;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    text-decoration: none;
    text-align: center;
}

.quickbuy-popup-btn-primary {
    background: #FF9821;
    color: #ffffff;
    border: none;
}

.quickbuy-popup-btn-primary:hover {
    background: #e88a1d;
}

.quickbuy-popup-btn-secondary {
    background: transparent;
    color: #051053;
    border: none;
    padding: 12px 0;
}

.quickbuy-popup-btn-secondary:hover {
    text-decoration: underline;
}
