/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.wc-bundle-box {
    border: 1px solid #e5e5e5;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    background: #fafafa;
}

.wc-bundle-box h4 {
    margin: 0 0 12px;
    font-size: 16px;
}

.wc-bundle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.wc-bundle-item img {
    width: 50px;
    height: auto;
}

.wc-bundle-title {
    font-weight: 500;
}

.wc-bundle-price {
    margin-left: auto;
    font-weight: 600;
}

/** TIP KUPCA V CHECKOUTU **/

#billing_customer_type_field .woocommerce-input-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}

#billing_customer_type_field label {
  margin-right: 16px;
  font-weight: normal;
}

#billing_customer_type_field input[type="radio"] {
  margin-right: 6px;
}

/* Customer type radio – bigger + brand color */
#billing_customer_type_field input[type="radio"] {
  transform: scale(1.4);
  accent-color: #ee2a28;
  cursor: pointer;
}

#billing_customer_type_field label {
  cursor: pointer;
  font-weight: 500;
}

/* Remove required asterisk from radio options (keep it on field label) */
#billing_customer_type_field .woocommerce-input-wrapper label .required {
  display: none;
}

/* My Account - customer type radios */
.woocommerce-account input[type="radio"]{
  transform: scale(1.2);
  accent-color: #ee2a28;
}

.woocommerce-account #billing_customer_type_field input[type="radio"]{
  transform: scale(1.2);
  accent-color: #ee2a28;
}

/* Highlight EU VAT Number when gated */
body.sw-vat-gate-on #billing_eu_vat_number_field {
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 0 0 4px rgba(238, 42, 40, 0.12);
}

/* Optional subtle pulse (can remove if you want it static) */
@keyframes swVatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(238,42,40,.35); }
  70%  { box-shadow: 0 0 0 10px rgba(238,42,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,42,40,0); }
}

body.sw-vat-gate-on #billing_eu_vat_number_field {
  animation: swVatPulse 1.6s ease-out infinite;
}

/* css popravek - ujemanje radio buttonov */

/* Shipping method radios – match customer type radios */
#shipping_method input[type="radio"] {
    transform: scale(1.4);
    accent-color: #ee2a28;
    cursor: pointer;
    margin-right: 6px;
}

/* Optional: improve spacing & click area */
#shipping_method li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0;
}

/* Optional: make label clickable and aligned nicely */
#shipping_method label {
    cursor: pointer;
    margin: 0;
}

/* Optional: subtle highlight for selected method */
#shipping_method input[type="radio"]:checked + label {
    font-weight: 600;
}

/* WooCommerce shipping method radios (inputs have class="shipping_method") */
.woocommerce input.shipping_method[type="radio"] {
    transform: scale(1.4) !important;
    accent-color: #ee2a28 !important;
    cursor: pointer;
    margin-right: 6px;
}

/* Optional: make label nicely clickable/aligned */
input.shipping_method[type="radio"] + label {
    cursor: pointer;
}

/* Woodmart / Woo checkout – Shipping method radios */
.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method[type="radio"]{
    -webkit-appearance: radio !important;
    appearance: auto !important;

    transform: scale(1.4) !important;
    accent-color: #ee2a28 !important;

    cursor: pointer !important;
    margin-right: 6px !important;
}

/* keep label clickable */
.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method[type="radio"] + label{
    cursor: pointer;
}

/* Make the whole shipping method line look like your styled radios */
.woocommerce-checkout .woocommerce-shipping-methods li{
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Selected method emphasis */
.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method[type="radio"]:checked + label{
    font-weight: 600;
}

/* If theme draws custom radio via label:before, color it when checked */
.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method[type="radio"]:checked + label:before{
    border-color: #ee2a28 !important;
    background-color: #ee2a28 !important;
}



/* konec css popravek - ujemanje radio buttonov */