/* Cart Popup Overlay */
.ws-cart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.ws-cart-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Modal */
.ws-cart-popup {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-cart-popup-overlay.show .ws-cart-popup {
    transform: scale(1);
}

/* Checkmark icon */
.ws-cart-popup-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ws-primary, #2d7a3a);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* Title */
.ws-cart-popup-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ws-ink, #1a1a1a);
    margin: 0 0 6px;
}

/* Subtitle */
.ws-cart-popup-sub {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
}

/* Buttons */
.ws-cart-popup-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ws-cart-popup-btn {
    display: block;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    border: none;
    line-height: 1.2;
}

.ws-cart-popup-continue {
    background: #f0f2f5;
    color: var(--ws-ink, #1a1a1a);
}

.ws-cart-popup-continue:hover {
    background: #e2e6ea;
}

.ws-cart-popup-accessories {
    background: #fff;
    color: var(--ws-primary, #2d7a3a);
    border: 2px solid var(--ws-primary, #2d7a3a);
}

.ws-cart-popup-accessories:hover {
    background: #f0f8f1;
}

.ws-cart-popup-go {
    background: var(--ws-primary, #2d7a3a);
    color: #fff;
}

.ws-cart-popup-go:hover {
    background: var(--ws-primary-dark, #236b2f);
}
