/**
 * AIREO B2B Wholesale v3.0 - Stylesheet
 *
 * Styles for:
 * 1. Login / Register links
 * 2. Price summary card
 * 3. Wholesale price display
 * 4. Checkout button loading animation
 */

.aireo-b2b-login-link,
.aireo-b2b-register-link {
    text-decoration: underline;
    font-weight: bold;
    color: #1532e;
    transition: color 0.2s ease;
}

.aireo-b2b-login-link:hover,
.aireo-b2b-register-link:hover {
    color: #0a1f8c;
}

.aireo-b2b-login-link:visited,
.aireo-b2b-register-link:visited {
    color: #1532e;
}

.aireo-b2b-price-summary {
    background: #f8f8f8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.aireo-b2b-price-summary h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.15em;
    color: #333;
}

.aireo-b2b-price-summary p {
    margin: 8px 0;
    font-size: 0.95em;
    color: #555;
}

.aireo-b2b-price-summary .price-label {
    display: inline-block;
    min-width: 120px;
    color: #777;
}

.aireo-b2b-price-summary .price-value {
    font-weight: bold;
    color: #333;
}

.aireo-b2b-price-summary .price-msrp {
    text-decoration: line-through;
    color: #aaa;
    font-weight: normal;
}

.aireo-b2b-price-summary .price-save {
    color: #e74c3c;
    font-weight: bold;
}

.aireo-b2b-wholesale-price {
    font-weight: bold;
    color: #2ecc71;
    margin-bottom: 5px;
    line-height: 1.6;
}

.aireo-b2b-wholesale-price .wholesale-amount {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1em;
}

.aireo-b2b-wholesale-price .msrp-amount {
    color: #999;
    font-size: 0.85em;
    text-decoration: line-through;
}

.aireo-b2b-wholesale-price .savings-amount {
    color: #e74c3c;
    font-size: 0.85em;
}

@keyframes aireo-b2b-loading-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.checkout-button.loading::after,
.wc-block-cart__submit-container .loading::after,
#place_order.loading::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    vertical-align: middle;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: aireo-b2b-loading-spin 0.7s linear infinite;
}

.checkout-button.loading,
#place_order.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.75;
}

.wc-block-cart__submit-container .loading {
    position: relative;
    pointer-events: none;
    opacity: 0.75;
}

.checkout-button.aireo-b2b-loading,
#place_order.aireo-b2b-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.checkout-button.aireo-b2b-loading::before,
#place_order.aireo-b2b-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: aireo-b2b-loading-spin 0.7s linear infinite;
}

.checkout-button.disabled,
#place_order.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.woocommerce-error .aireo-b2b-login-link,
.woocommerce-error .aireo-b2b-register-link {
    text-decoration: underline;
    font-weight: bold;
    color: #1532e;
    transition: color 0.2s ease;
}

.woocommerce-error .aireo-b2b-login-link:hover,
.woocommerce-error .aireo-b2b-register-link:hover {
    color: #0a1f8c;
}

@media (max-width: 768px) {
    .aireo-b2b-price-summary {
        padding: 15px;
        margin: 15px 0;
    }

    .aireo-b2b-price-summary .price-label {
        min-width: 100px;
    }
}
