/* F2R style tweaks - 2026-09-25
   Prices: whole amount (number + €) in the brand orange #d78000 already used for the € symbol,
   and no visual gap before the € (the gap came from theme CSS ".price-box span{margin:0 5px}").
   Font sizes are intentionally untouched. */

/* 1. No gap between number and currency symbol */
html body .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	left: 0 !important;
}
html body .price-box .woocommerce-Price-amount,
html body .price-box .woocommerce-Price-amount bdi {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* 2. Whole price in orange: product grids, product page, related/upsells, search, cart, checkout, order tables, mini-cart */
html body .price-box .woocommerce-Price-amount.amount,
html body .price-box .woocommerce-Price-amount.amount *,
html body .price .woocommerce-Price-amount.amount,
html body .price .woocommerce-Price-amount.amount *,
html body .shop_table td > .woocommerce-Price-amount.amount,
html body .shop_table td > .woocommerce-Price-amount.amount *,
html body .shop_table td > strong > .woocommerce-Price-amount.amount,
html body .shop_table td > strong > .woocommerce-Price-amount.amount *,
html body .woocommerce-mini-cart .woocommerce-Price-amount.amount,
html body .woocommerce-mini-cart .woocommerce-Price-amount.amount *,
html body .widget_shopping_cart .total .woocommerce-Price-amount.amount,
html body .widget_shopping_cart .total .woocommerce-Price-amount.amount *,
html body .dgwt-wcas-sp .woocommerce-Price-amount.amount,
html body .dgwt-wcas-sp .woocommerce-Price-amount.amount * {
	color: #d78000 !important;
}

/* 3. <del> prices: this site deliberately hides <ins> (sale price) and removes the strikethrough
   (inline CSS "Sakrij snizenu cenu" / "Ukloni precrtavanje"), so the <del> amount IS the price
   customers see. Override the theme's black del rules so it is orange like every other price. */
html body .price del .woocommerce-Price-amount.amount,
html body .price del .woocommerce-Price-amount.amount *,
html body .price-box del .woocommerce-Price-amount.amount,
html body .price-box del .woocommerce-Price-amount.amount *,
html body .shop_table td del .woocommerce-Price-amount.amount,
html body .shop_table td del .woocommerce-Price-amount.amount *,
html body .dgwt-wcas-sp del .woocommerce-Price-amount.amount,
html body .dgwt-wcas-sp del .woocommerce-Price-amount.amount * {
	color: #d78000 !important;
}
