/* Frontend styles for WooCommerce Bulk Ordering - Responsive Quantity Input */

.wcbo-quantity-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px 0;
    width: 100%;
}

.wcbo-quantity-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3338;
    margin: 0;
    line-height: 1.4;
    flex: 0 0 auto;
}

.wcbo-quantity-input {
    width: 100px !important;
    padding: 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
    height: auto;
    min-height: 48px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: #fff;
}

.wcbo-quantity-input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
    outline: none;
}

/* Price display container */
.wcbo-price-display {
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dcdcde;
    border-radius: 5px;
    min-height: 80px;
}

.wcbo-price-display.wcbo-variable {
    margin-top: 15px;
}

.wcbo-loading {
    color: #646970;
    font-style: italic;
    font-size: 15px;
}

/* Price information styles */
.wcbo-unit-price {
    font-size: 15px;
    color: #50575e;
    margin-bottom: 8px;
    line-height: 1.5;
}

.wcbo-unit-price del {
    color: #8c8f94;
    margin-right: 6px;
    text-decoration-thickness: 1px;
}

.wcbo-total-price {
    font-size: 22px;
    font-weight: 700;
    color: #1d2327;
    margin-bottom: 10px;
}

.wcbo-discount-info {
    font-size: 15px;
    color: #00a32a;
    font-weight: 500;
    padding: 6px 0;
}

/* Error message styling */
.wcbo-error {
    color: #d63638;
    font-size: 15px;
    padding: 10px;
    background-color: #fcf0f1;
    border: 1px solid #f8d7da;
    border-radius: 4px;
    margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 782px) {
    .wcbo-quantity-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .wcbo-quantity-label {
        font-size: 15px;
    }
    
    .wcbo-quantity-input {
        width: 100% !important;
        max-width: 150px;
        padding: 10px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .wcbo-quantity-label {
        font-size: 14px;
    }
    
    .wcbo-quantity-input {
        font-size: 15px;
        min-height: 42px;
    }
    
    .wcbo-price-display {
        padding: 15px;
        margin: 15px 0;
    }
    
    .wcbo-total-price {
        font-size: 20px;
    }
}

/* Animation for price updates */
.wcbo-price-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}