/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height: 72px;
    --primary: #0066ff;
    --primary-dark: #0047b3;
    --primary-light: #6aafff;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-radius: 16px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bg-dark: #0b0e14;
    --text-secondary: #ffffff;
    --text-tertiary: rgba(255,255,255,0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-box {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(92%, 720px);
    padding: 24px 28px 22px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.97);
    animation: cookieFadeIn 0.7s ease 0.6s forwards;
}

@keyframes cookieFadeIn {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.cookie-box .title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-box .content-box {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}
.cookie-box .content-box a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.cookie-box .content-box a:hover {
    color: #fff;
}

.cookie-box .btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}
.cookie-box .btn-box>div {
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    flex: 1 1 auto;
    min-width: 140px;
    letter-spacing: 0.02em;
}
.cookie-box .accept-btn {
    background: linear-gradient(135deg, #0066ff, #0047b3);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}
.cookie-box .accept-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.45);
}
.cookie-box .rejectt-btn {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}
.cookie-box .rejectt-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   HEADER — всегда прозрачный, без затемнения при скролле
   ============================================================ */
.header-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    pointer-events: none;
}

.header-box .nav-header-wrap {
    height: 100%;
    width: 100%;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* Хедер всегда остаётся прозрачным — никаких изменений при скролле */
.header-box.scrolled .nav-header-wrap {
    /* сохраняем исходный прозрачный вид */
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.header-box.mega-open .nav-header-wrap {
    /* при открытом мега-меню делаем чуть плотнее, но сохраняем прозрачность */
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(20px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

.header-box.hidden {
    transform: translateY(-100%);
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-header-left {
    flex-shrink: 0;
    margin-right: 40px;
}

.nav-header-left-img {
    width: 150px;
    height: 36px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 56"><text x="0" y="40" font-family="Inter, sans-serif" font-weight="800" font-size="32" fill="white" letter-spacing="1.5">apply<span style="fill:%236aafff">.</span>media</text></svg>') no-repeat center/contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s;
}

.nav-header-content {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex: 1;
    margin: 0;
    padding: 0;
}

.nav-titles .link-item {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    cursor: pointer;
}

.nav-titles .link-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #6aafff);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-titles .link-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.nav-titles .link-item:hover::after {
    width: 60%;
}

/* Анимированная иконка каталога */
.catalog-icon {
    display: inline-block;
    animation: catalogIconPulse 2s ease-in-out infinite;
    margin-right: 4px;
}

@keyframes catalogIconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(5deg); }
}

/* ---- MEGA MENU (для каталога) ---- */
.mega-menu-trigger {
    position: relative;
}

.mega-menu-dropdown {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    background: rgba(12, 16, 28, 0.94);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1001;
    transform: translateY(8px) scale(0.97);
    transform-origin: top center;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.mega-menu-dropdown.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.mega-menu-dropdown .mega-menu__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 24px 20px;
}

.store-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 16px;
}

.store-menu-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.store-menu-header a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.store-menu-header a:hover {
    color: #fff;
}

.store-menu-header a svg {
    width: 18px;
    height: 18px;
}

.store-menu__body {
    display: flex;
    gap: 20px;
}

.store-menu__sidebar {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 16px;
}

.store-menu__sidebar .catalog-category-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.store-menu__sidebar .catalog-category-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.store-menu__sidebar .catalog-category-btn.active {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary-light);
}

.store-menu__sidebar .catalog-category-btn .cat-icon {
    width: 28px;
    font-size: 16px;
    text-align: center;
    flex-shrink: 0;
}

.store-menu__sidebar .store-search-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.store-menu__sidebar .store-search-wrapper .search-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.store-menu__sidebar .store-search-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    width: 100%;
    outline: none;
    font-family: inherit;
}

.store-menu__sidebar .store-search-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.store-menu__sidebar .sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 4px;
}

.store-menu__sidebar .sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s;
}

.store-menu__sidebar .sidebar-footer a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.store-menu__sidebar .sidebar-footer a .badge {
    margin-left: auto;
    background: rgba(0, 102, 255, 0.12);
    color: var(--primary-light);
    padding: 0 8px;
    border-radius: 12px;
    font-size: 11px;
}

.store-menu__content {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.store-menu__content .category-content {
    display: none;
}

.store-menu__content .category-content.active {
    display: block;
}

.store-menu__content .category-content .subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.store-menu__content .category-content .subcategory-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    cursor: default;
}

.store-menu__content .category-content .subcategory-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.12);
    transform: translateY(-2px);
}

.store-menu__content .category-content .subcategory-item .subcat-label {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.store-menu__content .category-content .subcategory-item .subcat-items {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
    line-height: 1.5;
}

.store-menu__content .category-content .subcategory-item .subcat-items span {
    display: block;
    padding: 2px 0;
}

.store-menu__content .category-content .subcategory-item .subcat-items .item-link {
    color: var(--text-muted);
    transition: color 0.2s;
}

.store-menu__content .category-content .subcategory-item .subcat-items .item-link:hover {
    color: var(--primary-light);
}

.store-menu__content .category-content .product-preview {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.store-menu__content .category-content .product-preview .preview-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-menu__content .category-content .product-preview .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.store-menu__content .category-content .product-preview .product-card-mini {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.store-menu__content .category-content .product-preview .product-card-mini:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.12);
}

.store-menu__content .category-content .product-preview .product-card-mini .prod-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.store-menu__content .category-content .product-preview .product-card-mini .prod-desc {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 2px;
}

/* ---- FULLSCREEN MENU (sitemap) ---- */
.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: rgba(8, 12, 20, 0.92);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        backdrop-filter 0.5s ease;
    padding: 40px 20px;
    overflow-y: auto;
}

.fullscreen-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-menu-overlay .close-btn {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.fullscreen-menu-overlay .close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: rotate(90deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.fullscreen-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px 40px;
    max-width: 1100px;
    width: 100%;
    padding: 20px 0;
}

.fullscreen-menu-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fullscreen-menu-col .col-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fullscreen-menu-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.fullscreen-menu-col a i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    width: 20px;
    text-align: center;
}

.fullscreen-menu-col a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.fullscreen-menu-col a:hover i {
    color: var(--primary-light);
}

.nav-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    white-space: nowrap;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.nav-phone:hover {
    color: #fff;
}
.nav-phone i {
    margin-right: 6px;
    font-size: 13px;
}

.lan-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.lan-select:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
.lan-select i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}
.lan-select:hover i {
    transform: rotate(180deg);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 2001;
}
.menu-icon:hover {
    background: rgba(255, 255, 255, 0.06);
}
.menu-icon .line-first,
.menu-icon .line-second {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition);
}
.menu-icon .line-first {
    width: 16px;
}
.menu-icon:hover .line-first {
    width: 22px;
}

.menu-icon.active .line-first {
    transform: rotate(45deg) translate(5px, 5px);
    width: 22px;
}
.menu-icon.active .line-second {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 22px;
}

/* ============================================================
   BANNER — отдельный контейнер, картинка cover без смещения
   ============================================================ */
.banner-container {
    max-width: 1400px;
    margin: calc(var(--header-height) + 20px) auto 0;
    padding: 0 20px;
}

.banner-wrap {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    overflow: hidden;
    background: #0b0e14;
    border-radius: var(--card-radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* убираем любые transform, чтобы картинка не смещалась */
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0.70) 100%);
    pointer-events: none;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 4;
    text-align: center;
    width: 90%;
    max-width: 860px;
    padding: 20px;
    pointer-events: none;
}

.banner-content>* {
    pointer-events: auto;
}

.banner-content .badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    background: rgba(0, 102, 255, 0.10);
    border: 1px solid rgba(0, 102, 255, 0.15);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.banner-content .title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #b8d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}

.banner-content .sub-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

.banner-content .cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 4px;
}

.banner-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066ff, #0047b3);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.3);
    font-family: inherit;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.banner-content .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 50px rgba(0, 102, 255, 0.45);
}

.banner-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}

.banner-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: rgba(0, 102, 255, 0.25);
    border-color: rgba(0, 102, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dots .dot.active {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   КАРУСЕЛЬ БРЕНДОВ
   ============================================================ */
.brands-carousel {
    width: 100%;
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
}

.brands-carousel-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: scrollBrands 30s linear infinite;
    width: max-content;
}

.brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    height: 60px;
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-item img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.8) invert(0.1);
    transition: filter 0.3s;
}

.brand-item:hover img {
    filter: brightness(1) invert(0);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   БЛОК КАТАЛОГА
   ============================================================ */
.catalog-section {
    padding: 60px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.catalog-section-inner {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px 28px;
}

.catalog-header {
    margin-bottom: 32px;
}

.catalog-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 6px;
    display: block;
}

.catalog-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #fff;
}

.catalog-title span {
    color: var(--primary-light);
}

.catalog-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 620px;
    line-height: 1.7;
}

.catalog-main-layout {
    display: flex;
    gap: 28px;
    min-height: 400px;
}

.catalog-sidebar {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 20px;
}

.catalog-search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.catalog-search-wrapper i {
    color: var(--text-muted);
    font-size: 14px;
}

.catalog-search-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    width: 100%;
    outline: none;
    font-family: inherit;
}

.catalog-search-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.catalog-category-btn-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.catalog-category-btn-main:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.catalog-category-btn-main.active {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary-light);
}

.catalog-category-btn-main .cat-icon {
    width: 28px;
    font-size: 16px;
    text-align: center;
    flex-shrink: 0;
}

.catalog-content {
    flex: 1;
    min-height: 400px;
}

.catalog-content .category-content-main {
    display: none;
}

.catalog-content .category-content-main.active {
    display: block;
}

.catalog-content .category-content-main .subcategory-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.catalog-content .category-content-main .subcategory-item-main {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    cursor: default;
}

.catalog-content .category-content-main .subcategory-item-main:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.12);
    transform: translateY(-3px);
}

.catalog-content .category-content-main .subcategory-item-main .subcat-label-main {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.catalog-content .category-content-main .subcategory-item-main .subcat-items-main {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
    line-height: 1.6;
}

.catalog-content .category-content-main .subcategory-item-main .subcat-items-main span {
    display: block;
    padding: 2px 0;
}

.catalog-content .category-content-main .subcategory-item-main .subcat-items-main .item-link-main {
    color: var(--text-muted);
    transition: color 0.2s;
}

.catalog-content .category-content-main .subcategory-item-main .subcat-items-main .item-link-main:hover {
    color: var(--primary-light);
}

.catalog-content .category-content-main .product-preview-main {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.catalog-content .category-content-main .product-preview-main .preview-title-main {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.catalog-content .category-content-main .product-preview-main .product-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.catalog-content .category-content-main .product-preview-main .product-card-mini-main {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.catalog-content .category-content-main .product-preview-main .product-card-mini-main:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.12);
}

.catalog-content .category-content-main .product-preview-main .product-card-mini-main .prod-name-main {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.catalog-content .category-content-main .product-preview-main .product-card-mini-main .prod-desc-main {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 2px;
}

.sidebar-footer-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 8px;
}

.sidebar-footer-main a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s;
}

.sidebar-footer-main a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.sidebar-footer-main a .badge {
    margin-left: auto;
    background: rgba(0, 102, 255, 0.12);
    color: var(--primary-light);
    padding: 0 8px;
    border-radius: 12px;
    font-size: 11px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-box {
    background: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 20px 24px;
}

.footer-wrap-pc .foot {
    max-width: 1400px;
    margin: 0 auto;
}

.follow-us-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 28px;
}

.follow-us-left img {
    height: 32px;
    filter: brightness(0.9);
}

.follow-us-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.follow-us-right .fllow-us {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.follow-us-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.4);
}
.follow-us-right a:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

.foot-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
}

.foot-top-items {
    flex: 0 0 auto;
    min-width: 150px;
}
.foot-top-items .foot-top-title a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.foot-top-items .foot-top-title a:hover {
    color: var(--primary-light);
}

.foot-top-li a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    padding: 3px 0;
    transition: color 0.3s, transform 0.2s;
}
.foot-top-li a:hover {
    color: rgba(255, 255, 255, 0.75);
    transform: translateX(4px);
}

.friendship-link {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 18px 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
}
.friendship-link .item-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.friendship-link .item-box .link-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s;
    white-space: nowrap;
}
.friendship-link .item-box .link-item:hover {
    color: rgba(255, 255, 255, 0.65);
}
.friendship-link .link-line {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.foot-bot-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}
.foot-bot-wrap a {
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s;
}
.foot-bot-wrap a:hover {
    color: rgba(255, 255, 255, 0.55);
}

.backtop-wrap {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
    pointer-events: none;
}
.backtop-wrap.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.backtop-content {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.backtop-content:hover {
    background: rgba(0, 102, 255, 0.35);
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(0, 102, 255, 0.3);
}
.backtop-icon {
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='18 15 12 9 6 15'/></svg>") no-repeat center/contain;
}

.footer-wrap-mobile {
    display: none;
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1024px) {
    .store-menu__body {
        flex-direction: column;
    }
    .store-menu__sidebar {
        flex: 1 1 auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-right: 0;
        padding-bottom: 12px;
    }
    .store-menu__sidebar .catalog-category-btn {
        padding: 8px 10px;
        font-size: 13px;
    }
    .store-menu__content .category-content .subcategory-grid {
        grid-template-columns: 1fr 1fr;
    }
    .catalog-main-layout {
        flex-direction: column;
    }
    .catalog-sidebar {
        flex: 1 1 auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-right: 0;
        padding-bottom: 16px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }
    .catalog-search-wrapper {
        flex: 1 1 100%;
        margin-bottom: 6px;
    }
    .catalog-category-btn-main {
        flex: 0 0 auto;
        padding: 8px 14px;
        font-size: 13px;
    }
    .catalog-section {
        padding: 40px 20px 60px;
    }
    .catalog-section-inner {
        padding: 24px 16px;
    }
    .catalog-content .category-content-main .subcategory-grid-main {
        grid-template-columns: 1fr 1fr;
    }
    .banner-wrap {
        height: 40vh;
        min-height: 280px;
    }
    .banner-content .title {
        font-size: 2rem;
    }
    .banner-container {
        padding: 0 16px;
        margin-top: calc(var(--header-height) + 16px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    .nav-header {
        padding: 0 16px;
    }
    .nav-header-content {
        display: none;
    }
    .nav-header-left-img {
        width: 120px;
        height: 30px;
    }
    .nav-header-right .lan-select {
        padding: 4px 12px 4px 14px;
        font-size: 12px;
    }
    .nav-header-right .lan-select span {
        display: none;
    }
    .nav-phone {
        font-size: 12px;
    }
    .nav-phone i {
        display: none;
    }
    .banner-container {
        margin-top: calc(var(--header-height) + 12px);
        padding: 0 12px;
    }
    .banner-wrap {
        height: 35vh;
        min-height: 240px;
        border-radius: 12px;
    }
    .banner-content .title {
        font-size: 1.6rem;
    }
    .banner-content .sub-title {
        font-size: 0.7rem;
    }
    .banner-content .badge {
        font-size: 10px;
        padding: 4px 14px;
    }
    .banner-content .btn-primary,
    .banner-content .btn-secondary {
        padding: 8px 20px;
        font-size: 13px;
    }
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
        opacity: 0.6;
    }
    .slider-arrow.prev {
        left: 10px;
    }
    .slider-arrow.next {
        right: 10px;
    }
    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }
    .cookie-box {
        bottom: 16px;
        padding: 18px 16px 16px;
        width: 96%;
        border-radius: 16px;
    }
    .cookie-box .btn-box>div {
        min-width: 100%;
        flex: 1 1 100%;
    }
    .catalog-section {
        padding: 30px 12px 40px;
    }
    .catalog-section-inner {
        padding: 16px 12px;
    }
    .catalog-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .catalog-search-wrapper {
        flex: 1 1 100%;
    }
    .catalog-category-btn-main {
        flex: 0 0 auto;
        padding: 6px 12px;
        font-size: 13px;
    }
    .catalog-content .category-content-main .subcategory-grid-main {
        grid-template-columns: 1fr;
    }
    .catalog-content .category-content-main .product-preview-main .product-grid-main {
        grid-template-columns: 1fr 1fr;
    }
    .foot-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .follow-us-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .friendship-link .item-box .link-item {
        font-size: 11px;
        white-space: normal;
    }
    .foot-bot-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .backtop-wrap {
        bottom: 80px;
        right: 16px;
    }
    .backtop-content {
        width: 42px;
        height: 42px;
    }
    .footer-wrap-pc {
        display: none;
    }
    .footer-wrap-mobile {
        display: block;
    }
    .fullscreen-menu-overlay {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 80px;
    }
    .fullscreen-menu-overlay .close-btn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .fullscreen-menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }
    .fullscreen-menu-col .col-title {
        font-size: 13px;
    }
    .fullscreen-menu-col a {
        font-size: 13px;
        padding: 4px 8px;
    }
    .mega-menu-dropdown {
        top: var(--header-height);
        width: 100vw;
        left: 0;
        transform: translateY(8px) scale(0.97);
        border-radius: 0;
        max-height: calc(100vh - var(--header-height));
    }
    .mega-menu-dropdown.active {
        transform: translateY(0) scale(1);
    }
    .mega-menu-dropdown .store-menu__content .category-content .subcategory-grid {
        grid-template-columns: 1fr;
    }
    .mega-menu-dropdown .store-menu__content .category-content .product-preview .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brands-track {
        gap: 20px;
        animation-duration: 20s;
    }
    .brand-item img {
        height: 30px;
        max-width: 80px;
    }
    .brand-item {
        height: 48px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .nav-header-left-img {
        width: 100px;
        height: 26px;
    }
    .banner-wrap {
        height: 30vh;
        min-height: 200px;
        border-radius: 8px;
    }
    .banner-content .title {
        font-size: 1.4rem;
    }
    .banner-content .sub-title {
        font-size: 0.6rem;
    }
    .cookie-box .title {
        font-size: 12px;
    }
    .cookie-box .content-box {
        font-size: 13px;
    }
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .fullscreen-menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .catalog-content .category-content-main .product-preview-main .product-grid-main {
        grid-template-columns: 1fr;
    }
    .catalog-category-btn-main {
        font-size: 12px;
        padding: 6px 10px;
    }
    .catalog-category-btn-main .cat-icon {
        font-size: 14px;
        width: 22px;
    }
    .brands-track {
        gap: 16px;
        animation-duration: 16s;
    }
    .brand-item img {
        height: 24px;
        max-width: 60px;
    }
    .brand-item {
        height: 40px;
        padding: 4px 8px;
    }
}

/* Mobile footer */
.footer-wrap-mobile .foot {
    padding: 16px 0;
}
.footer-wrap-mobile .foot-top {
    border-bottom: none;
    padding-bottom: 0;
}
.footer-wrap-mobile .follow-us-right {
    flex-wrap: wrap;
}
.footer-wrap-mobile .media-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-wrap-mobile .media-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.3);
}
.footer-wrap-mobile .media-box a:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.25);
    color: #fff;
}
.footer-wrap-mobile .foot-content .foot-top-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-wrap-mobile .foot-top-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-wrap-mobile .foot-top-items .foot-top-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.footer-wrap-mobile .foot-top-items i {
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
}
.footer-wrap-mobile .foot-bottom-wrap {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-wrap-mobile .bottom-link {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}
.footer-wrap-mobile .bottom-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}