/**
 * WooCommerce Delivery Estimate - Frontend Styles
 */

.wde-delivery-estimate {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    background: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 8px;
    font-size: 15px;
}

.wde-icon {
    flex-shrink: 0;
    color: #28a745;
    display: flex;
    align-items: center;
}

.wde-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.wde-label {
    color: #666;
    font-weight: 500;
}

.wde-date {
    color: #28a745;
    font-size: 16px;
    font-weight: 700;
}

.wde-days {
    color: #666;
    font-size: 13px;
    font-style: italic;
}

/* Cart Display */
.wde-cart-estimate {
    margin-top: 5px;
    color: #28a745;
    font-size: 13px;
}

.wde-cart-estimate i {
    font-size: 14px;
    vertical-align: middle;
}

/* Checkout Display */
.wde-checkout-estimate th {
    font-weight: 600;
    color: #333;
}

.wde-checkout-estimate td {
    color: #28a745;
    font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wde-delivery-estimate {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .wde-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .wde-date {
        font-size: 15px;
    }
}

/* Dashicons for cart (if not already loaded) */
.wde-cart-estimate .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
}
