/* Weight and Shipping Display Styles */
.weight-shipping-info {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

.weight-shipping-info .price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

#weight-display {
    font-weight: bold;
}

#weight-display .weight-exceeded {
    color: #d63638;
    font-weight: bold;
}

#weight-display .weight-warning {
    color: #f56e28;
    font-weight: bold;
}

#weight-display .error-text {
    color: #d63638;
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
}

#shipping-dimensions-display {
    color: #666;
    font-size: 13px;
}

/* Error message styling for weight exceeded */
#calculator-messages .weight-error {
    background: #fcf0f1;
    color: #d63638;
    padding: 10px;
    border-radius: 4px;
    border-left: 4px solid #d63638;
    margin-top: 10px;
}

/* Weight info in cart */
.woocommerce-cart-form .customize-weight-info {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.woocommerce-cart-form .weight-exceeded {
    color: #d63638;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .weight-shipping-info .price-line {
        flex-direction: column;
        gap: 2px;
    }
    
    .weight-shipping-info .price-line span:first-child {
        font-weight: bold;
    }
}
