/**
 * Public CSS for Woo Smart Order Routing
 */

/* Yellow Box in Cart */
.woosor-cart-box {
    background-color: #fffdf5;
    border: 1px solid #ffe680;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    font-family: inherit;
}

.woosor-cart-rule-section {
    margin-bottom: 25px;
}

.woosor-cart-rule-section:last-child {
    margin-bottom: 0;
}

.woosor-cart-rule-section h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
}

.woosor-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.woosor-cart-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: #333;
    flex: 1;
}

.woosor-cart-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

.woosor-item-name {
    font-size: 1rem;
}

.woosor-info {
    color: #aaa;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    cursor: help;
}

.woosor-price {
    font-weight: 500;
    font-size: 1rem;
    color: #000;
}

.woosor-cart-container.processing {
    opacity: 0.6;
    pointer-events: none;
}

/* Yellow Box in Checkout Summary */
.woosor-checkout-row td {
    padding: 0 !important;
}

.woosor-checkout-msg {
    background: #fcfcfc;
    border-left: 4px solid #ffe680;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.95rem;
    color: #333;
}

/* Order Status Badge in Admin */
mark.consultation {
    background: #e5e5e5;
    color: #777;
}

mark.consultation::after {
    content: "\e012";
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-left: .3em;
}
