/* Currency Styles for CHF in Cart */

/* Remove CSS currency symbols to avoid duplication */
.snipcart-total-price::before,
.cart-total::before,
.price::before,
.total::before {
    content: none !important;
}

/* Ensure proper formatting for prices */
.snipcart-total-price,
.cart-total,
.price,
.total {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

/* Style for cart icon with CHF */
.snipcart-checkout .snipcart-total-price {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Remove any CSS-generated currency symbols */
[class*="price"]::before,
[class*="total"]::before,
[class*="amount"]::before {
    content: none !important;
}

/* Mobile responsive currency */
@media (max-width: 768px) {
    .snipcart-checkout .snipcart-total-price {
        font-size: 0.75rem;
    }
} 