/* Dual Currency Display Styles */

/* Product price display with both USD and RSD */
.dual-currency-price {
  display: inline-block;
}

.dual-currency-price .usd-price {
  font-weight: bold;
  color: #333;
}

.dual-currency-price .rsd-price {
  font-size: 0.9em;
  color: #666;
  margin-left: 5px;
  font-weight: normal;
}

/* RSD total row styling in checkout */
.rsd-total {
  background-color: #f8f9fa;
  border-top: 2px solid #dee2e6;
}

.rsd-total th {
  font-weight: bold;
  color: #495057;
}

.rsd-total td {
  font-weight: bold;
  color: #495057;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dual-currency-price .rsd-price {
    display: block;
    margin-left: 0;
    margin-top: 2px;
    font-size: 0.85em;
  }
}

/* Ensure proper spacing in product listings */
.woocommerce-loop-product__title + .price .dual-currency-price {
  margin-top: 5px;
}

/* Single product page adjustments */
.single-product .price .dual-currency-price {
  font-size: 1.1em;
}

.single-product .dual-currency-price .rsd-price {
  font-size: 0.95em;
}


