/* Standalone account cart-conflict dialog; must not depend on wishlist.css. */
body.flora-modal-open {
    overflow: hidden;
}

.woocommerce-account .flora-cart-mixing-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    background: rgb(0 0 0 / 72%);
}

.woocommerce-account .flora-cart-mixing-modal-overlay.active {
    display: flex;
}

.woocommerce-account .flora-cart-mixing-modal {
    display: flex;
    width: min(100%, 550px);
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 48px rgb(0 0 0 / 32%);
}

.woocommerce-account .flora-cart-mixing-modal-header {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 2px solid #e3e8e4;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

.woocommerce-account .flora-cart-mixing-modal-header h3 {
    margin: 0;
    color: #173c2a;
    font-size: 20px;
    line-height: 1.3;
}

.woocommerce-account .flora-cart-mixing-modal-close {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #b42318;
    border-radius: 50%;
    background: transparent;
    color: #b42318;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.woocommerce-account .flora-cart-mixing-modal-close:hover,
.woocommerce-account .flora-cart-mixing-modal-close:focus-visible {
    background: #b42318;
    color: #fff;
}

.woocommerce-account .flora-cart-mixing-modal-body {
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.woocommerce-account .flora-cart-mixing-modal-message {
    margin-bottom: 22px;
    color: #26362e;
    font-size: 15px;
    line-height: 1.6;
}

.woocommerce-account .flora-cart-mixing-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.woocommerce-account .flora-cart-mixing-modal-actions .flora-btn {
    display: inline-flex;
    min-width: 190px;
    min-height: 44px;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 650;
    cursor: pointer;
}

.woocommerce-account .flora-cart-mixing-modal-actions .flora-btn-danger {
    background: #b42318;
    color: #fff;
}

.woocommerce-account .flora-cart-mixing-modal-actions .flora-btn-primary {
    background: #12633d;
    color: #fff;
}

@media (max-width: 600px) {
    .woocommerce-account .flora-cart-mixing-modal-overlay {
        align-items: flex-end;
        padding: 10px;
    }

    .woocommerce-account .flora-cart-mixing-modal-header,
    .woocommerce-account .flora-cart-mixing-modal-body {
        padding: 18px;
    }

    .woocommerce-account .flora-cart-mixing-modal-actions {
        flex-direction: column;
    }

    .woocommerce-account .flora-cart-mixing-modal-actions .flora-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce-account .flora-cart-mixing-modal-overlay,
    .woocommerce-account .flora-cart-mixing-modal {
        animation: none !important;
        transition: none !important;
    }
}
