/**
 * Frontend Styles
 * 
 * @package WC_Per_Product_Shipping
 */

/* Product Page Shipping Notice */
.wc-pps-product-shipping-info {
    margin: 20px 0;
}

.wc-pps-shipping-notice {
    background: linear-gradient(135deg, #e7f5fe 0%, #f0f9ff 100%);
    border-left: 4px solid #2271b1;
    padding: 15px 20px;
    margin: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.1);
    font-size: 15px;
    line-height: 1.6;
}

.wc-pps-shipping-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.wc-pps-shipping-notice strong {
    color: #2271b1;
    font-weight: 600;
}

/* Cart Item Shipping Info */
.wc-pps-cart-shipping {
    color: #646970;
    font-size: 0.9em;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

/* Cart Totals - Shipping Fee */
.cart-subtotal,
.order-total {
    font-weight: 600;
}

.woocommerce-cart-form__cart-item .wc-pps-cart-shipping {
    padding-left: 0;
}

/* Checkout Page */
.woocommerce-checkout .wc-pps-cart-shipping {
    color: #646970;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .wc-pps-shipping-notice {
        padding: 12px 15px;
        font-size: 14px;
        gap: 10px;
    }
    
    .wc-pps-shipping-icon {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .wc-pps-product-shipping-info {
        break-inside: avoid;
    }
}
