:root {
    --font-heading: "Oswald", "Segoe UI", sans-serif;
    --font-body: "Barlow", "Segoe UI", sans-serif;
    --color-page-bg: #f0f1f3;
    --color-header-bg: #070b12;
    --color-deep-blue: #153866;
    --color-accent: #1f4f9a;
    --color-text: #0f1725;
    --color-muted: #667085;
    --color-border: #d7dbe3;
    --color-light: #ffffff;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --space-xs: 0.5rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.8rem;
    --space-xl: 2.6rem;
    --shadow-soft: 0 12px 28px rgba(10, 18, 30, 0.09);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-page-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-accent);
}

.c-page-wrap {
    min-height: calc(100vh - 520px);
}

.c-alert-success {
    border-radius: var(--radius-sm);
    border: 1px solid #a7c8ad;
    background: #e7f6e9;
    color: #1f4a2b;
}

.c-site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    border-top: 1px solid #141a24;
    border-bottom: 1px solid #172132;
    background: var(--color-header-bg);
}

.c-navbar {
    padding: 0;
}

.c-navbar__container {
    min-height: 76px;
    position: relative;
}

.c-navbar__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.c-navbar__block {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 0.75rem;
}

.c-navbar__block--left {
    justify-content: flex-start;
}

.c-navbar__block--right {
    justify-content: flex-end;
}

.c-navbar__menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 0.25rem;
}

.c-navbar__menu > .c-topbar-item {
    flex: 0 0 auto;
    justify-content: center;
}

.c-navbar__menu--right {
    justify-content: center;
}

.c-navbar__brand img,
.c-navbar__mobile-brand img {
    height: 52px;
    width: auto;
}

.c-navbar__brand {
    justify-self: center;
}

.c-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f2f6ff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: var(--font-heading);
    font-size: 0.93rem;
    padding: 1.62rem 1.15rem;
    min-width: 132px;
    text-align: center;
    position: relative;
    transition: color 180ms ease;
}

.c-nav-link.is-active,
.c-nav-link:hover {
    color: #ffffff;
}

.c-nav-link::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 0.7rem;
    height: 2px;
    background: #2d68b9;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.c-topbar-item--has-children:hover > .c-nav-link::after,
.c-topbar-item--has-children:focus-within > .c-nav-link::after,
.c-nav-link:hover::after {
    transform: scaleX(1);
}

.c-topbar-item {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.c-topbar-item--has-children > .c-nav-link::before {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 0.72rem;
    margin-left: 0.48rem;
    opacity: 0.85;
}

.c-topbar-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 240px;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 16, 31, 0.98);
    box-shadow: 0 18px 28px rgba(2, 8, 18, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 180ms ease;
    z-index: 20;
}

.c-topbar-dropdown__link {
    display: block;
    color: #dbe6fb;
    padding: 0.56rem 0.72rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c-topbar-dropdown__link:last-child {
    border-bottom: 0;
}

.c-topbar-dropdown__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.c-topbar-item--has-children:hover .c-topbar-dropdown,
.c-topbar-item--has-children:focus-within .c-topbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.c-circle-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #fff;
    margin-inline: 0.28rem;
    font-size: 0.9rem;
}

.c-navbar__utilities {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

@media (min-width: 1200px) {
    .c-navbar__grid {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 0;
    }

    .c-navbar__brand {
        position: static;
        justify-self: center;
        z-index: 20;
    }

    .c-navbar__block {
        width: 100%;
        min-height: 76px;
        position: relative;
    }

    .c-navbar__block--left {
        justify-content: flex-end;
        padding-left: 118px;
        padding-right: 0.5rem;
    }

    .c-navbar__block--right {
        justify-content: flex-start;
        padding-right: 118px;
        padding-left: 0.5rem;
    }

    .c-navbar__menu {
        width: auto;
    }

    .c-navbar__utilities--left,
    .c-navbar__utilities--right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
    }

    .c-navbar__utilities--left {
        left: 0;
        justify-content: flex-start;
    }

    .c-navbar__utilities--right {
        right: 0;
        justify-content: flex-end;
    }
}

.c-circle-btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.c-locale-dropdown .btn {
    color: #dce7ff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 56px;
}

.c-locale-dropdown .btn:hover,
.c-locale-dropdown .btn:focus,
.c-locale-dropdown .show > .btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.c-locale-dropdown .dropdown-menu {
    border-radius: var(--radius-sm);
    background: #0f1d2f;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-locale-dropdown .dropdown-item {
    color: #dce7ff;
}

.c-locale-dropdown .dropdown-item.active,
.c-locale-dropdown .dropdown-item:hover {
    background: #214a86;
    color: #fff;
}

.navbar-toggler.c-navbar__toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler.c-navbar__toggler .navbar-toggler-icon {
    filter: invert(1);
}

.c-mobile-menu {
    display: none;
}

.c-hero-slider {
    background: #050a12;
}

.c-hero-swiper {
    width: 100%;
}

.c-hero-slide {
    min-height: clamp(360px, 52vw, 620px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.c-hero-slide__container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.c-hero-slide__content {
    text-align: center;
    color: #fff;
    padding-inline: 1rem;
}

.c-hero-slide__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.7rem;
}

.c-hero-slide__content p {
    font-size: 1.06rem;
    color: #d4dde9;
    max-width: 700px;
    margin: 0 auto 1.4rem;
}

.c-hero-slide__content a {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 0.52rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.09em;
}

.c-hero-slide__content a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.c-hero-swiper .swiper-button-prev,
.c-hero-swiper .swiper-button-next {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(2px);
}

.c-hero-swiper .swiper-button-prev::after,
.c-hero-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.c-hero-swiper .swiper-button-prev:hover,
.c-hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.c-search-band {
    background: #fff;
    padding: 2.9rem 0;
}

.c-search-box {
    max-width: 1160px;
    margin: 0 auto;
}

.c-search-box h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: clamp(1.55rem, 3.5vw, 2.1rem);
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.c-search-box p {
    text-align: center;
    font-style: italic;
    color: #7f8a98;
    margin-bottom: 2.2rem;
}

.c-search-box__label {
    font-size: 0.83rem;
    color: #6f7784;
    margin-bottom: 0.4rem;
}

.c-line-input {
    border: 0;
    border-bottom: 1px solid #bdc4cf;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    box-shadow: none;
}

.c-line-input:focus {
    border-color: #213d61;
    box-shadow: none;
}

.c-btn-search {
    border: 0;
    border-radius: 0;
    min-height: 44px;
    padding: 0.45rem 1.3rem;
    background: var(--color-deep-blue);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-family: var(--font-heading);
}

.c-btn-search:hover {
    background: #1c457b;
    color: #fff;
}

.c-about {
    background-size: cover;
    background-position: center;
    padding: clamp(3.2rem, 9vw, 8rem) 0;
}

.c-about__content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    color: #e8edf5;
}

.c-about__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

.c-about__content p {
    line-height: 1.72;
    font-size: 1.08rem;
    color: #dbe5f3;
    margin-bottom: 2.2rem;
}

.c-about__content a {
    display: inline-block;
    min-width: 190px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    padding: 0.65rem 1.2rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

.c-about__content a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.c-groups {
    background: #fff;
}

.c-block-title h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.c-block-title::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 220px;
    height: 2px;
    background: linear-gradient(to right, #223d64 38%, #d7dde7 38%);
}

.c-group-card {
    background: #fafbfc;
    border: 1px solid #e0e4eb;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 280px;
}

.c-group-card__body {
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.c-group-card__body h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.c-group-card__body p {
    color: #6e7582;
    margin-bottom: 1.3rem;
}

.c-group-card__link {
    margin-top: auto;
    text-transform: uppercase;
    color: #1ba3b5;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.92rem;
}

.c-group-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.95rem;
}

.c-group-card__chips span {
    font-size: 0.78rem;
    border: 1px solid #ccd2dc;
    background: #f1f4f9;
    padding: 0.17rem 0.48rem;
}

.c-group-card__image-wrap {
    background: #eceef2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.c-group-card__img {
    width: 100%;
    height: 100%;
    max-height: 248px;
    object-fit: cover;
}

.c-news {
    background: #dfe1e4;
    padding: 4rem 0;
}

.c-news-card {
    background: #f7f7f8;
    border: 1px solid #cfd3da;
    padding: 1rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.2rem;
    min-height: 220px;
}

.c-news-card img {
    width: 100%;
    height: 100%;
    max-height: 190px;
    object-fit: cover;
    border: 1px solid #c8ced8;
}

.c-news-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.6rem;
    font-size: 1.45rem;
}

.c-news-card p {
    color: #68717f;
    margin-bottom: 0.7rem;
}

.c-news-card__meta {
    color: #8a92a0;
    font-size: 0.86rem;
    margin-bottom: 0.8rem;
}

.c-news-card a {
    display: inline-block;
    border: 1px solid #aeb5c2;
    padding: 0.5rem 1.2rem;
    text-transform: uppercase;
    font-size: 0.83rem;
    font-weight: 700;
}

.c-news-card a:hover {
    background: #183a66;
    border-color: #183a66;
    color: #fff;
}

.c-newsletter {
    background: linear-gradient(140deg, #1a3f6f, #294f83);
    padding: 2.8rem 0;
}

.c-newsletter h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: 0.04em;
    margin: 0;
}

.c-newsletter__form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dce3ef;
    min-height: 52px;
}

.c-newsletter__form input {
    border: 0;
    flex: 1;
    padding: 0.8rem 0.95rem;
    outline: none;
}

.c-newsletter__form button {
    border: 0;
    background: transparent;
    padding: 0.8rem 1rem;
    font-size: 1.25rem;
    color: #213f64;
}

.c-breadcrumb {
    background: #fff;
    border: 1px solid #d8dce4;
    border-radius: var(--radius-sm);
    padding: 0.62rem 0.9rem;
    margin-bottom: 1rem;
}

.c-breadcrumb .breadcrumb {
    margin: 0;
}

.c-page-head {
    background: linear-gradient(120deg, #0d182a, #182f4e);
    color: #f4f7ff;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
}

.c-page-head h1 {
    margin: 0 0 0.2rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.c-page-head p {
    margin: 0;
    color: #d0ddf0;
}

.c-page-head--compact {
    padding-block: 0.95rem;
}

.c-sidebar {
    background: #fff;
    border: 1px solid #d6dbe4;
    padding: 0.9rem;
}

.c-sidebar h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.c-sidebar__link {
    display: block;
    border-bottom: 1px solid #eceff4;
    padding: 0.56rem 0.3rem;
    color: #263548;
}

.c-sidebar__link.is-active,
.c-sidebar__link:hover {
    color: #1f4f9a;
    font-weight: 700;
}

.c-search-form {
    background: #fff;
    border: 1px solid #d6dbe4;
    padding: 0.8rem;
}

.c-product-list {
    background: #fff;
    border: 1px solid #d6dbe4;
}

.c-product-list thead th {
    background: #f2f4f8;
    font-weight: 700;
    border-bottom: 1px solid #d6dbe4;
}

.c-product-list td,
.c-product-list th {
    border-color: #e3e7ee;
}

.c-badge-code {
    display: inline-block;
    border: 1px solid #ccd4e3;
    background: #f6f8fb;
    padding: 0.2rem 0.7rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.c-pagination .page-link {
    color: #223a60;
    border-radius: 0;
}

.c-pagination .page-item.active .page-link {
    background: #1f4f9a;
    border-color: #1f4f9a;
}

.c-product-detail {
    background: #fff;
    border: 1px solid #d6dbe4;
    padding: 1.4rem;
}

.c-product-detail__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid #e4e8ef;
    padding-bottom: 0.9rem;
    margin-bottom: 1rem;
}

.c-product-detail__head h1 {
    margin: 0;
    font-family: var(--font-heading);
}

.c-product-detail__head p {
    margin: 0;
    color: #66758a;
}

.c-product-detail__image {
    width: 100%;
    border: 1px solid #d4dae5;
}

.c-product-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.c-product-meta__item {
    border: 1px solid #d6dbe4;
    padding: 0.68rem;
    background: #f9fafc;
}

.c-product-meta__item small {
    color: #6f7a8e;
    display: block;
}

.c-panel {
    background: #fff;
    border: 1px solid #d6dbe4;
    padding: 1rem;
}

.c-panel h2,
.c-panel h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.c-panel--content {
    padding: 1.3rem;
}

.c-contact-map {
    border: 1px solid #d6dbe4;
    background: #f6f8fb;
    overflow: hidden;
    position: relative;
}

.c-contact-map iframe {
    display: block;
}

.c-contact-map__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.c-richtext {
    color: #2d3a4e;
    line-height: 1.7;
}

.c-related-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-related-links li {
    border-bottom: 1px solid #edf0f5;
    padding: 0.45rem 0;
}

.c-oem-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.c-oem-list li {
    border: 1px solid #d3dae8;
    padding: 0.28rem 0.7rem;
    background: #f7f9fd;
    font-size: 0.9rem;
}

.c-product-card {
    background: #fff;
    border: 1px solid #d6dbe4;
    box-shadow: var(--shadow-soft);
}

.c-product-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.c-product-card__body {
    padding: 0.95rem;
}

.c-product-card__code {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3f4e66;
    margin-bottom: 0.35rem;
}

.c-product-card h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.c-product-card p {
    color: #667085;
    font-size: 0.95rem;
}

.c-product-card__link {
    border: 1px solid #c4ccd9;
    padding: 0.38rem 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    align-self: flex-start;
}

.c-related-title {
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.c-page-hero {
    background-size: cover;
    background-position: center;
    padding: 4.1rem 0;
}

.c-page-hero h1 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0;
    letter-spacing: 0.06em;
}

.c-footer {
    background-size: cover;
    background-position: center;
    color: #d8deea;
}

.c-footer__main {
    padding-top: 3.1rem;
    padding-bottom: 1.3rem;
}

.c-footer__logo {
    height: 72px;
    width: auto;
}

.c-footer__title {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.7rem;
}

.c-footer__columns {
    max-width: 1180px;
    margin-inline: auto;
    justify-content: center;
}

.c-footer__col {
    text-align: center;
}

.c-footer__meta {
    margin-bottom: 0.25rem;
}

.c-footer__list li {
    margin-bottom: 0.36rem;
}

.c-footer__list {
    width: fit-content;
    margin-inline: auto;
}

.c-footer__list a {
    color: #e3e8f2;
}

.c-footer__catalog img {
    max-width: 190px;
    width: 100%;
}

.c-footer__catalog a {
    color: #edf2fb;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.c-footer__menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.7rem 2rem;
    padding: 1.1rem 0 0;
    margin: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.c-footer__menu li {
    flex: 0 0 auto;
}

.c-footer__menu a {
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: #f2f6ff;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    padding: 0.35rem 0.2rem;
}

.c-footer__tiny {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 0;
    font-size: 0.88rem;
    color: #cad3e3;
    background: rgba(0, 0, 0, 0.32);
}

.c-footer__credit-link {
    color: #d8e6ff;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.c-footer__credit-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .c-navbar__grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 1rem;
    }

    .c-navbar__block {
        min-height: auto;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .c-navbar__menu {
        width: auto;
    }

    .c-nav-link {
        padding: 0.6rem 0.7rem;
        min-width: auto;
    }

    .c-topbar-item {
        display: none;
    }

    .c-navbar__mobile-brand {
        display: inline-flex;
        align-items: center;
    }

    .c-navbar__utilities {
        margin-left: auto;
    }

    .c-mobile-menu {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 0.8rem;
        padding-top: 0.7rem;
    }

    .c-mobile-menu__item {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .c-mobile-menu__link {
        color: #eff4ff;
        text-transform: uppercase;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        padding: 0.76rem 0.2rem;
        letter-spacing: 0.03em;
    }

    .c-mobile-menu__toggle {
        border: 0;
        background: transparent;
        color: #dce7ff;
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }

    .c-mobile-menu__submenu {
        grid-column: 1 / -1;
        padding: 0.25rem 0 0.7rem 0.55rem;
    }

    .c-mobile-menu__submenu a {
        display: block;
        color: #d4dff3;
        padding: 0.36rem 0;
        font-size: 0.9rem;
        letter-spacing: 0.02em;
    }

    .c-news-card {
        grid-template-columns: 1fr;
    }

    .c-hero-swiper .swiper-button-prev,
    .c-hero-swiper .swiper-button-next {
        width: 44px;
        height: 44px;
    }

    .c-footer__menu {
        gap: 0.7rem 1.2rem;
    }
}

@media (max-width: 991px) {
    .c-group-card {
        grid-template-columns: 1fr;
    }

    .c-group-card__image-wrap {
        min-height: 210px;
    }

    .c-product-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .c-navbar__container {
        min-height: 66px;
    }

    .c-hero-slide {
        min-height: 460px;
    }

    .c-hero-slide__content h2 {
        font-size: 2rem;
    }

    .c-search-band {
        padding: 2rem 0;
    }

    .c-about__content p {
        font-size: 1rem;
    }

    .c-footer__menu {
        gap: 0.5rem 0.9rem;
    }

    .c-newsletter__form {
        min-height: 46px;
    }

    .c-hero-swiper .swiper-button-prev,
    .c-hero-swiper .swiper-button-next {
        display: none;
    }
}
