/* BOX NOW – opis ispod naziva (klasični Woo checkout) */
.woocommerce-shipping-methods input[type="radio"][value="box_now_delivery"] + label{
  display: inline-block;
}

/* Dodaj mali masni tekst ispod */
.woocommerce-shipping-methods input[type="radio"][value="box_now_delivery"] + label::after{
  content: "Dostava u BoxNow paketomat (24/7)";
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
  line-height: 1.2;
}



/* BOX NOW – klasični checkout */
.woocommerce-shipping-methods input[value*="box_now_delivery"] + label{
  padding-left: 28px;
  position: relative;
}

.woocommerce-shipping-methods input[value*="box_now_delivery"] + label:before{
  content:"";
  width:18px;
  height:18px;
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  background: url("../assets/box-now.svg") no-repeat center / contain;
}
/* BOX NOW – WooCommerce Blocks checkout */
.wc-block-components-shipping-rates input[type="radio"][value*="box_now_delivery"]{
  /* samo marker; ne diramo */
}

.wc-block-components-shipping-rates input[type="radio"][value*="box_now_delivery"] + label{
  padding-left: 28px;
  position: relative;
}

.wc-block-components-shipping-rates input[type="radio"][value*="box_now_delivery"] + label:before{
  content:"";
  width:18px;
  height:18px;
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  background: url("../assets/box-now.svg") no-repeat center / contain;
}

/* BOX NOW – opis ispod naziva */
label[for="shipping_method_0_box_now_delivery"]{
  display: inline-block;
}

label[for="shipping_method_0_box_now_delivery"]::after{
  content: "Dostava u paketomat (24/7)";
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
  line-height: 1.2;
}

}