:where([class^="ri-"])::before {
    content: "\f3c2";
}
body {
    /* Единый фон и декоративная дымка без переходов между секциями */
    background-image:
            radial-gradient(1200px 600px at 50% 0%, rgba(45, 90, 39, 0.08), transparent 70%),
            radial-gradient(900px 500px at 85% 20%, rgba(74, 92, 106, 0.06), transparent 60%),
            radial-gradient(900px 500px at 20% 80%, rgba(45, 90, 39, 0.04), transparent 60%),
            linear-gradient(135deg, #0a0a0a 0%, #1a2e1a 50%, #0a0a0a 100%);
    background-attachment: fixed, fixed, fixed, fixed;
    background-repeat: no-repeat;
    background-size: cover, cover, cover, cover;
    font-family: 'Oswald', sans-serif;
}

/* Norse Cyrillic font: place files in src/assets/fonts/norse-cyrillic/ */
@font-face {
    font-family: 'Norse Cyrillic';
    src: url('/assets/fonts/norse-cyrillic-regular.woff2') format('woff2'),
    url('/assets/fonts/norse-cyrillic-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Norse Cyrillic';
    src: url('/assets/fonts/norse-cyrillic-bold.woff2') format('woff2'),
    url('/assets/fonts/norse-cyrillic-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.list-style-type-disc {
    list-style-type: disc;
}

.link-text-color {
    color: rgb(129 155 131);;
}

.norse-title {
    font-family: 'Norse Cyrillic', 'Cinzel', serif;
    letter-spacing: 0.06em;
}
.hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.fog-texture { opacity: 1 !important; }
.metal-accent {
    background: linear-gradient(135deg, #ffffff 0%, #9ba6ae 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gothic-title {
    font-family: "Cinzel", serif;
    text-shadow: 0 0 20px rgb(45 90 39 / 0%), 0 0 40px rgb(45 90 39 / 0%);
}
.swamp-glow {
    box-shadow: 0 0 20px rgba(45, 90, 39, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.carousel-container {
    /* scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none; */
    overflow-y: hidden;
    /* touch-action: pan-x;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    scroll-snap-type: x mandatory; */
    padding-left: 1rem;
    padding-right: 1rem;
}
.carousel-container::-webkit-scrollbar {
    display: none;
}
.product-card {
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(45, 90, 39, 0.3);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.2);
    border-color: rgba(45, 90, 39, 0.6);
}
.cta-button {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c3d 100%);
    border: 2px solid rgba(45, 90, 39, 0.6);
    box-shadow:
            0 0 12px rgba(45, 90, 39, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 3px 10px rgba(0, 0, 0, 0.28);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem !important;
    font-size: 1.125rem !important; /* ~text-lg */
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover {
    background: linear-gradient(135deg, #3d7a37 0%, #5a9c4d 100%);
    border-color: rgba(45, 90, 39, 0.8);
    box-shadow:
            0 0 28px rgba(45, 90, 39, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            0 6px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Выровнять иконку и текст */
.cta-button i,
.cta-button [class^="ri-"] {
    font-size: 1.25rem;
    line-height: 1;
}

/* Контейнер для иконки в CTA */
.cta-button .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
    line-height: 1;
}

/* Медиазапрос: на широких экранах чуть крупнее */
@media (min-width: 1024px) {
    .cta-button {
        padding: 1rem 1.5rem !important;
        font-size: 1.25rem !important; /* ~text-xl */
    }
}
.social-icon {
    background: linear-gradient(135deg, #4a5c6a 0%, #2c3e50 100%);
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: linear-gradient(135deg, #2d5a27 0%, #3d7a37 100%);
    box-shadow: 0 0 20px rgba(45, 90, 39, 0.4);
}
