:root {
    --primary-dark: #1A1A1A;
    --accent-green: #00A651;
    --accent-blue: #00BFFF;
    --accent-red: #FF4A4A;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--primary-dark);
    color: #fff;
    padding-top: 80px; /* Отступ для закрепленной навигации */
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent-green) !important;
    letter-spacing: 1px;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    text-shadow: 0 0 10px var(--accent-green);
}

.search-form {
    max-width: 400px;
    width: 100%;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-green);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 166, 81, 0.25);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nav-link {
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: var(--accent-green) !important;
}

.btn-outline-light:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.snipcart-checkout {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.snipcart-items-count {
    background: var(--accent-green);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.breadcrumb-item a {
    color: var(--accent-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--accent-green);
}

/* Footer Styles */
.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 0.3rem 0;
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-green);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-green);
}

.footer-link:hover::after {
    width: 100%;
}

.btn-accent-green {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accent-green:hover {
    background-color: #008f45;
    border-color: #008f45;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.text-accent-green {
    color: var(--accent-green) !important;
}

.text-accent-blue {
    color: var(--accent-blue) !important;
}

.text-accent-blue:hover {
    color: #0099cc !important;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-green);
    transform: translateY(-3px);
}

/* Cookie Consent */
/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 2rem;
}

.carousel-item {
    height: 600px;
    background-color: #f8f9fa;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 2rem;
    bottom: 50%;
    transform: translateY(50%);
}

/* Category Cards */
.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    height: 300px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 250px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .card-title a {
    color: var(--accent-green);
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(45deg, var(--primary-dark), #2a2a2a);
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    z-index: 1000;
    border-top: 1px solid var(--accent-green);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #fff;
}

.cookie-content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.cookie-content a:hover {
    color: var(--accent-green);
}

.accept-cookies {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    white-space: nowrap;
}

.accept-cookies:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Contact Page Styles */
.contact-info-section .card,
.faq-section .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
}

.contact-info-section address a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section address a:hover {
    color: var(--accent-green);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-green);
    color: #fff;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

/* ===== NEW MODERN STYLES ===== */

/* Hero Section with Background */
.hero-background {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,166,81,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 166, 81, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 166, 81, 0.05) 100%);
    border: 3px solid rgba(0, 166, 81, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 
        0 0 60px rgba(0, 166, 81, 0.2),
        inset 0 0 60px rgba(0, 166, 81, 0.1);
}

.hero-main-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(5deg) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 60px rgba(0, 166, 81, 0.2),
            inset 0 0 60px rgba(0, 166, 81, 0.1);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 80px rgba(0, 166, 81, 0.3),
            inset 0 0 80px rgba(0, 166, 81, 0.15);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, #008f45 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Modern Category Cards */
.category-card-modern {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 400px;
}

.category-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 166, 81, 0.3);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card-modern:hover .category-overlay {
    opacity: 1;
}

.category-card-modern:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.category-card-modern:hover .category-content {
    transform: translateY(0);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.category-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Modern Product Cards */
.product-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-green);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--accent-green);
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

/* Modern Service Cards */
.service-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.2);
    border-color: var(--accent-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #008f45 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #fff;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-accent-green {
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-accent-green:hover {
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 166, 81, 0.05) 0%, transparent 50%);
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Newsletter Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 166, 81, 0.1) 0%, transparent 50%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Меньший отступ для мобильных */
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-circle {
        width: 300px;
        height: 300px;
    }
    
    .hero-main-image {
        width: 200px;
        height: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .category-card-modern {
        height: 300px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .service-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 65px; /* Еще меньший отступ для маленьких экранов */
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-circle {
        width: 250px;
        height: 250px;
    }
    
    .hero-main-image {
        width: 160px;
        height: 160px;
    }
    
    .category-card-modern {
        height: 250px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .service-card-modern {
        padding: 1.5rem 1rem;
    }
}

/* Snipcart Currency Override */
.snipcart-cart__content .snipcart-cart__content__price,
.snipcart-cart__content .snipcart-cart__content__price--amount,
.snipcart-cart__content .snipcart-cart__content__price--currency,
.snipcart-cart__content .snipcart-cart__content__price--total,
.snipcart-cart__content .snipcart-cart__content__price--subtotal,
.snipcart-cart__content .snipcart-cart__content__price--tax,
.snipcart-cart__content .snipcart-cart__content__price--shipping,
.snipcart-cart__content .snipcart-cart__content__price--discount,
.snipcart-cart__content .snipcart-cart__content__price--grand-total {
    font-family: inherit !important;
}

/* Hide original currency symbols and show CHF */
.snipcart-cart__content .snipcart-cart__content__price--currency:before {
    content: "CHF" !important;
    display: inline !important;
}

.snipcart-cart__content .snipcart-cart__content__price--currency {
    display: none !important;
}

/* Override any remaining $ symbols */
.snipcart-cart__content *:not(script):not(style) {
    font-family: inherit !important;
}

/* Force CHF display in all Snipcart price elements */
.snipcart-cart__content [class*="price"]:not([class*="price--currency"]):before {
    content: "CHF " !important;
    display: inline !important;
}

/* Hide all $ symbols in Snipcart */
.snipcart-cart__content * {
    font-family: inherit !important;
}

/* Additional override for dynamic content */
.snipcart-cart__content .snipcart-cart__content__price--amount:before,
.snipcart-cart__content .snipcart-cart__content__price--total:before,
.snipcart-cart__content .snipcart-cart__content__price--subtotal:before,
.snipcart-cart__content .snipcart-cart__content__price--tax:before,
.snipcart-cart__content .snipcart-cart__content__price--shipping:before,
.snipcart-cart__content .snipcart-cart__content__price--discount:before,
.snipcart-cart__content .snipcart-cart__content__price--grand-total:before {
    content: "CHF " !important;
    display: inline !important;
}
