/* Hayyart V1.20 — Porto free shipping duplicate fix.
   Verilen gerçek HTML yapısına göre yalnızca art arda gelen ikinci kopyayı gizler. */

/* Normal sepet: iki .porto-free-shipping doğrudan form altında art arda geliyor. */
form.woocommerce-cart-form > .porto-free-shipping + .porto-free-shipping {
    display: none !important;
}

/* Porto mini sepet: iki blok widget içeriğinde art arda geliyor. */
.widget_shopping_cart_content > .porto-free-shipping + .porto-free-shipping {
    display: none !important;
}

/* Bazı Porto sürümlerinde widget bir wrapper daha ekleyebilir; yine sadece ardışık ikinciyi gizle. */
.widget_shopping_cart_content .porto-free-shipping + .porto-free-shipping {
    display: none !important;
}
