#wc-remove-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    font-family: 'Cormorant', serif;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.25s ease;
}

#wc-remove-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#wc-remove-modal.active .wc-remove-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.wc-remove-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.wc-remove-box {
    position: relative;
    max-width: 360px;
    margin: 15% auto;
    background: #fff;
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    transform: translateY(10px) scale(0.98);
    opacity: 0;
    transition: 0.25s ease;
}

.wc-remove-text {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.wc-remove-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.wc-remove-buttons button {
    font-family: 'Lora', serif;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #000;
    cursor: pointer;
    background: #fff;
    color: #000;
    transition: 0.2s;
}

.wc-remove-buttons button:hover {
    background: #000;
    color: #fff;
}