@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeueCyr-Roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeueCyr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
}

:root {
    --blue-text: rgba(4, 35, 58, 1);
    --back: rgba(245, 245, 245, 1);
    --accent: rgba(204, 255, 0, 1);
    --accent-hover: rgba(184, 230, 0, 1);
    --white: rgba(255, 255, 255, 1);
    --grey-secondary: rgba(217, 217, 217, 1);
    --black: rgba(0, 0, 0, 1);
    --noactive: rgba(176, 176, 176, 1);
    --grey: rgba(158, 158, 158, 1);
}

body {
    line-height: 1.6;
    color: var(--blue-text);
    /* background-color: var(--back); */
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0px 4px 25px 0px #00000008;
    z-index: 1000;
}

.header-desktop {
    display: block;
}

.header-mobile {
    display: none;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #F5F5F5;
}

.logo {
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo svg {
    width: 102px;
    height: 34px;
}

.search-container {
    flex: 1;
    max-width: 640px;
    margin-left: 64px;
    margin-right: auto;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 8px 16px 8px 48px;
    height: 40px;
    border: 1px solid var(--grey-secondary);
    border-radius: 100px;
    border: none;
    font-size: 15px;
    background: var(--back);
    color: var(--grey);
    transition: all 0.3s linear;
}

.search-input:focus {
    outline: none;
    color: var(--blue-text);
}

.search-input::placeholder {
    color: var(--grey);
    transition: all 0.2s linear;
}

.search-input:focus::placeholder {
    color: transparent;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--grey);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-link {
    color: var(--blue-text);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Helvetica Neue', sans-serif;
    transition: all 0.3s linear;
    font-size: 15px;
}

.action-link:hover {
    opacity: 0.8;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background-color: var(--back);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
}

.icon-btn:hover {
    background: var(--blue-text);
}

.icon-btn:hover svg path {
    fill: var(--accent);
}

.icon-btn:disabled {
    color: var(--noactive);
    cursor: not-allowed;
}

.cart-btn:hover {
    background: var(--white);
}

.cart-btn:hover svg path {
    fill: var(--blue-text);
}

.cart-btn.active {
    background: var(--accent);
}

.cart-btn.active .cart-icon-default {
    display: none;
}

.cart-btn.active .cart-icon-hover {
    display: block;
}

.cart-btn .cart-icon-default {
    display: block;
}

.cart-btn .cart-icon-hover {
    display: none;
}

.cart-btn:hover .cart-icon-default {
    display: none;
}

.cart-btn:hover .cart-icon-hover {
    display: block;
}

/* ---------- */

.hero-banner {
    padding: 30px 0 44px;
}

.hero-banner .container {
    position: relative;
}

.hero-banner-image {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.hero-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Swiper */
.hero-swiper {
    position: relative;
    overflow: hidden;
}

.hero-pagination {
    position: absolute;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-25%) !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--back);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent);
}

.view-more-link {
    margin-left: auto;
    margin-right: 20px;
    text-decoration: none;
    font-size: 15px;
    color: var(--blue-text);
    font-weight: 700;
    transition: 0.3s ease;
}

.view-more-link:hover {
    opacity: 0.8;
}

/* Brands Section */
.brands-section {
    margin: 100px 0;
    overflow: hidden;
    position: relative;
}

.brands-container {
    width: 100%;
    overflow: hidden;
}

.brands-grid {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brands-grid .brand-logo {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-grid .brand-logo img {
    max-width: 100%;
    height: auto;
}

.navigation {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.navigation-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    width: 100%;
}

.nav-item {

    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue-text);
    text-decoration: none;
    cursor: pointer;
    padding: 19px 0;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: 'Helvetica Neue', sans-serif;
    height: 100%;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.nav-link:after {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    background: var(--accent);
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all 0.3s linear;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-item:hover .nav-link:after,
.nav-item.active .nav-link:after {
    width: 100%;
    transform: translateX(-50%);
}

.nav-item:hover .nav-link span,
.nav-item:hover .nav-link .nav-icon {
    opacity: 0.8;
}

.nav-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

/* Выпадающее меню */
.dropdown-menu {
    position: absolute;
    top: 100%;
    background: #fff;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1010;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #F0F0F0;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 32px 40px 32px 40px;
    gap: 40px;
}

.dropdown-column {
    flex: 1;
    min-width: 180px;
    list-style: none;
}

.dropdown-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-text);
    margin-bottom: 19px;
    letter-spacing: 0.01em;
}

.dropdown-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-column ul li {
    margin-bottom: 10px;
}

.dropdown-item {
    display: block;
    color: var(--blue-text);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 400;
    transition: color 0.2s, opacity 0.2s;
    border-radius: 6px;
    padding: 6px 8px;
}

.dropdown-item:hover {
    color: var(--accent);
    opacity: 1;
    background: #F5F7FA;
}

/* Уведомления для админа о настройке меню */
.navigation-admin-notice {
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    margin: 8px 0;
}

.navigation-admin-notice p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

.navigation-admin-notice a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.navigation-admin-notice a:hover {
    text-decoration: underline;
}

.mobile-menu-admin-notice {
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    margin: 16px;
    text-align: center;
}

.mobile-menu-admin-notice p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

.mobile-menu-admin-notice a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-admin-notice a:hover {
    text-decoration: underline;
}

/* Мобильное подменю */
.mobile-nav-item.has-submenu .mobile-nav-link {
    position: relative;
}

.mobile-nav-item.has-submenu .submenu-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
    transition: transform 0.2s ease;
}

.mobile-submenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #F0F0F0;
    background: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-submenu-back {
    background: none;
    border: none;
    padding: 8px;
    margin-right: 12px;
    cursor: pointer;
    border-radius: 4px;
    color: var(--blue-text);
    transition: background-color 0.2s ease;
}

.mobile-submenu-back:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-submenu-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-text);
    margin: 0;
}

.mobile-submenu-content {
    padding: 0;
}

.mobile-submenu-section {
    border-bottom: 1px solid #F0F0F0;
}

.mobile-submenu-section:last-child {
    border-bottom: none;
}

.mobile-submenu-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-text);
    margin: 0;
    padding: 20px 20px 16px 20px;
}

.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
    transition: background-color 0.2s ease;
    text-align: left;
    border-bottom: 1px solid #F0F0F0;
}

.mobile-submenu-toggle:hover {
    background: rgba(0, 0, 0, 0.02);
}

.mobile-submenu-toggle.active {
    background: #f8f9fa;
}

.mobile-submenu-toggle .toggle-arrow {
    transition: transform 0.2s ease;
    color: var(--grey);
}

.mobile-submenu-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafbfc;
}

.mobile-submenu-dropdown.active {
    max-height: 500px; /* Достаточно для отображения всех элементов */
}

.mobile-submenu-item-link {
    display: block;
    padding: 12px 40px;
    color: var(--blue-text);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-submenu-item-link:last-child {
    border-bottom: none;
}

.mobile-submenu-item-link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent);
    transform: translateX(4px);
}

/* Стили для основного списка мобильного меню */
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: var(--blue-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 0, 0, 0.02);
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.mobile-nav-link span {
    flex: 1;
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 360px) {
    .mobile-submenu-header {
        padding: 16px;
    }
    
    .mobile-submenu-section-title {
        padding: 16px 16px 12px 16px;
        font-size: 15px;
    }
    
    .mobile-submenu-toggle {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .mobile-submenu-item-link {
        padding: 10px 32px;
        font-size: 14px;
    }
}

.logo:hover {
    opacity: 0.8;
}

.search-box:hover .search-input {
    border-color: var(--grey);
}

.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search {
    padding-bottom: 12px;
}

.mobile-search .search-box {
    width: 100%;
}

.mobile-search .search-input {
    padding: 10px 16px 10px 40px;
    font-size: 14px;
}

.mobile-search .search-icon {
    left: 12px;
}

.main-content {
    margin-top: 145px;
}

.main-content h1 {
    color: var(--blue-text);
    margin-bottom: 20px;
}

.main-content p {
    color: var(--grey);
}

.breadcrumbs {
    font-size: 0.857rem;
    font-weight: 500;
    padding: 40px 0;
}

.breadcrumbs__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item:not(:last-child)::after {
    content: "";
    background-image: url(../images/svg/breadcrumbs.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 6px;
    height: 6px;
    margin: 0 8px 2px;
    align-self: center;
}

.breadcrumbs__link {
    color: #8E8E8E;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 12px;
    font-weight: 400;
}

.breadcrumbs__link:hover {
    color: #494949;
}

.breadcrumbs__text {
    color: var(--blue-text);
    font-size: 12px;
    font-weight: 500;
}

/* Заголовок страницы */
.page-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--blue-text);
    line-height: 120%;
}

.hero-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.column h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 12px;
    line-height: 24px;
}

.column p {
    font-size: 12px;
    line-height: 120%;
    color: var(--grey);
    font-weight: 400;
}

.motivation-section {
    text-align: center;
    margin: 100px 0;
}

.motivation-text {
    font-size: 36px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 120%;
    max-width: 976px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* Mobile Header Styles */
.mobile-menu-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 4px;
    margin-left: 10px;
}

.hamburger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 24px;
    height: 24px;
}

.grid-dot {
    width: 6px;
    height: 6px;
    background-color: var(--blue-text);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Анимация при активации - боковые квадратики (2,4,6,8) перемещаются в центр */
.mobile-menu-btn.active .grid-dot-2 {
    transform: translate(0, 9px);
}

.mobile-menu-btn.active .grid-dot-4 {
    transform: translate(9px, 0);
}

.mobile-menu-btn.active .grid-dot-6 {
    transform: translate(-9px, 0);
}

.mobile-menu-btn.active .grid-dot-8 {
    transform: translate(0, -9px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 130px;
    /* Под мобильной шапкой */
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    /* На всю оставшуюся высоту */
    background-color: var(--white);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #F5F5F5;
}

.mobile-menu-logo img {
    height: 32px;
}

.mobile-menu-close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--blue-text);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #F5F5F5;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--blue-text);
    font-size: 16px;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #F5F5F5;
}

.mobile-nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.mobile-nav-arrow {
    margin-left: auto;
    color: var(--grey);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}
.mobile-menu-body ul li a {
    text-decoration: none;
    color: var(--blue-text);
    font-size: 16px;
}

.mobile-menu-footer {
    flex-shrink: 0;
    padding: 20px 20px 30px;
    border-top: 1px solid #F5F5F5;
    background-color: var(--white);
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-footer-link {
    color: var(--blue-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
}

.mobile-menu-footer-link:hover {
    opacity: 0.7;
}

/* Mobile Submenu */
.mobile-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: calc(100% - 60px);
    /* Оставляем место для футера */
    background-color: var(--white);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.mobile-submenu.active {
    left: 0;
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #F5F5F5;
    gap: 12px;
}

.mobile-submenu-back {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-text);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.mobile-submenu-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-text);
    margin: 0;
}

.mobile-submenu-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-submenu-section {
    padding: 20px;
    border-bottom: 1px solid #F5F5F5;
}

.mobile-submenu-section:last-child {
    border-bottom: none;
}

.mobile-submenu-section-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-text);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-submenu-list li {
    margin-bottom: 8px;
}

.mobile-submenu-list li:last-child {
    margin-bottom: 0;
}

.mobile-submenu-link {
    display: block;
    color: var(--grey);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-submenu-link:hover {
    color: var(--blue-text);
}

/* Футер */
.footer {
    background-color: rgba(0, 0, 0, 1);
    padding: 40px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--white);
    border-radius: 50%;
}

.social-link img {
    transition: all 0.2s linear;
}

.social-link:hover img {
    transform: scale(0.9);
}

.footer-middle-column {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-column {
    list-style: none;
}

.footer-title {
    font-size: 10px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(126, 126, 126, 1);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-card {
    width: 60px;
    height: 24px;
}

.payment-card img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 94px;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(126, 126, 126, 1);
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a {
    color: rgba(126, 126, 126, 1);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: white;
}


/* Privacy Policy стили */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.privacy-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 16px;
}

.privacy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 16px;
}

.privacy-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    color: var(--blue-text);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info {
    background: var(--back);
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--blue-text);
}

.contact-info strong {
    color: var(--blue-text);
}

.effective-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-secondary);
}

.effective-date p {
    font-size: 14px;
    color: var(--blue-text);
    text-align: center;
}

/* Адаптивность для Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }

    .contact-info {
        padding: 16px;
    }
}

.shipping-section {
    margin-bottom: 40px;
}

.returns-section {
    margin-bottom: 60px;
}

.shipping-section p,
.returns-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

.returns-subtitle {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.shipping-list,
.returns-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.shipping-list li,
.returns-list li {
    font-size: 18px;
    line-height: 120%;
    color: var(--grey);
    margin-bottom: 2px;
    padding-left: 15px;
    position: relative;
}

.shipping-list li::before,
.returns-list li::before {
    content: "•";
    color: var(--grey);
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 0;
}

.shipping-list li span,
.returns-section li span {
    color: var(--blue-text);
    font-weight: 700;
}

.return-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 24px;
    counter-reset: step-counter;
}

.return-steps li {
    font-size: 20px;
    line-height: 120%;
    color: var(--grey);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    counter-increment: step-counter;
}

.return-steps li::before {
    content: counter(step-counter) ".";
    color: var(--blue-text);
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
}

.email-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.email-link:hover {
    opacity: 0.8;
}

.catalog-wrapper {
    padding-bottom: 100px;
}

.catalog-header {
    display: grid;
    grid-template-columns: 1fr 3fr;

    background-color: var(--white);
    position: sticky;
    top: 144px;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.catalog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-controls {
    display: flex;
    gap: 40px;
    align-items: center;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--grey-secondary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--white);
    position: relative;
}

.filter-checkbox-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.filter-checkbox-input:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--blue-text);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox-label {
    font-size: 14px;
    cursor: pointer;
}

.filter-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn-filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--blue-text);
}

.btn-filter-toggle img {
    transition: transform 0.3s ease;
}

.btn-filter-toggle.filters-hidden img {
    transform: rotate(180deg);
}

.sort-dropdown {
    position: relative;
}

.btn-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--blue-text);
}

.btn-sort img {
    transition: transform 0.3s ease;
}

.btn-sort.active img {
    transform: rotate(180deg);
}

.sort-dropdown-content {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.12);
    padding: 12px 6px;
    z-index: 10;
    display: none;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s linear;
}

.sort-dropdown-content.active {
    display: block;
    width: 216px;
    height: 176px;
    opacity: 1;
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 0 2px 27px;
    text-decoration: none;
    color: var(--blue-text);
    font-size: 12px;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    border-radius: 8px;
}

.sort-option:hover {
    background: var(--back);
}

.sort-option span {
    font-weight: 700;
}

.sort-option.selected {
    position: relative;
    padding-left: 26px;
}

.sort-option.selected::before {
    content: "";
    position: absolute;
    left: 8px;
    width: 12px;
    height: 12px;
    background-image: url(../images/svg/sort-aprove.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sort-option.selected {
    padding-left: 26px;
}

.catalog-content {
    display: flex;
    padding: 20px 0 0 0;
    overflow: hidden;
    position: relative;
}

.catalog-filters {
    min-width: 188px;
    margin-right: 106px;
    transition: transform 0.3s ease;
    position: sticky;
    bottom: 0;
}

.product-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 13px;
    transition: transform 0.3s ease;
}

.catalog-content.filters-hidden .product-grid-wrapper {
    width: calc(100% + 293px);
    grid-template-columns: repeat(4, 1fr);
    transform: translateX(-293px);
}

.catalog-content.filters-hidden .catalog-filters {
    transform: translateX(-100%);
}

.filter-group {
    border-bottom: 1px solid rgba(245, 245, 245, 1);
    padding: 16px 0;
}

.filter-group:first-child {
    padding: 0;
}

.filter-group:last-child {
    border-bottom: none;
}

/* Базовые стили для всех заголовков фильтров */
.filter-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.filter-title.collapsed {
    transition: margin-bottom 0.3s ease;
    margin-bottom: 0;
}

/* Стрелки только для Brand, Playing style, Level и Shape */
.filter-group:nth-child(3) .filter-title,
.filter-group:nth-child(4) .filter-title,
.filter-group:nth-child(5) .filter-title,
.filter-group:nth-child(6) .filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.filter-group:nth-child(3) .filter-title::after,
.filter-group:nth-child(4) .filter-title::after,
.filter-group:nth-child(5) .filter-title::after,
.filter-group:nth-child(6) .filter-title::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url(../images/svg/sort-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.filter-group:nth-child(3) .filter-title.collapsed::after,
.filter-group:nth-child(4) .filter-title.collapsed::after,
.filter-group:nth-child(5) .filter-title.collapsed::after,
.filter-group:nth-child(6) .filter-title.collapsed::after {
    transform: rotate(180deg);
}

/* Базовые стили для всех списков */
.filter-list {
    list-style: none;
}
/* Скролл внутри групп фильтров при переполнении */
.catalog-filters .filter-group .filter-list {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
}

.filter-group:nth-child(3) .filter-list,
.filter-group:nth-child(4) .filter-list,
.filter-group:nth-child(5) .filter-list,
.filter-group:nth-child(6) .filter-list {
    overflow-x: hidden;
    overflow-y: auto;
    transition: max-height 0.3s linear;
    max-height: 500px;
}

.filter-group:nth-child(3) .filter-list.collapsed,
.filter-group:nth-child(4) .filter-list.collapsed,
.filter-group:nth-child(5) .filter-list.collapsed,
.filter-group:nth-child(6) .filter-list.collapsed {
    max-height: 0;
}

.filter-item {
    margin-bottom: 10px;
}

.filter-group:first-child .filter-item a {
    font-size: 15px;
}

.filter-item a {
    text-decoration: none;
    color: var(--blue-text);
    font-size: 14px;
    display: block;
    transition: all 0.3s linear;
}

.filter-item a:hover {
    opacity: 0.5;
}

.filter-item.active a {
    font-weight: 500;
}

.price-slider {
    margin-top: 20px;
}

.price-range {
    position: relative;
}

.range-slider {
    position: relative;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 20px;
}

.range-min,
.range-max {
    position: absolute;
    width: 100%;
    height: 4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-min::-webkit-slider-thumb,
.range-max::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card {
    /* background: var(--back); */
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 20px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    text-decoration: none;
    color: inherit;
}

.product-card .product-action {
    position: relative;
    z-index: 10;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--blue-text);
    font-size: 12px;
    font-weight: 500;
    border-radius: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex ;
    flex-direction: column;
    gap: 8px;
}

.product-badges .badge {
    background: var(--accent);
    color: var(--blue-text);
    font-size: 12px;
    font-weight: 500;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badges .badge[data-type="new"] {
    background: var(--accent);
    color: var(--blue-text);
}

.product-badges .badge[data-type="sale"] {
    background: var(--accent);
    color: var(--blue-text);
}

.product-images {
    position: relative;
    overflow: hidden;
    background-color: var(--back);
}

.product-swiper {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-slide img {
    height: 380px; 
}
@media (max-width: 768px) { 
    .related-products-slider .swiper-slide img {
        scale: 0.7;
    }
}
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--grey);
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--blue-text);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

/* Показываем иконки при наведении или если есть активные иконки */
.product-card:hover .product-actions,
.product-actions.has-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
.has-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
/* Тест - делаем has-active элементы видимыми с красной рамкой для отладки */
.has-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
}

.product-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.product-action svg {
    width: 20px;
    height: 20px;
    color: var(--blue-text);
}

.product-action:hover {
    background: var(--blue-text);
}

.product-action:hover svg path {
    fill: var(--accent);
}

.product-action.cart:hover {
    background: var(--accent);
}

.product-action.cart:hover svg path {
    fill: rgba(52, 51, 48, 1);
}

.product-action.cart .cart-icon-default {
    display: block;
}

.product-action.cart .cart-icon-hover {
    display: none;
}

.product-action.cart:hover .cart-icon-default {
    display: none;
}

.product-action.cart:hover .cart-icon-hover {
    display: block;
}

/* Активное состояние для корзины */
.product-action.cart.active {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.05);
}

.product-action.cart.active svg path {
    fill: rgba(52, 51, 48, 1);
}

/* Иконки корзины в активном состоянии */
.product-action.cart.active .cart-icon-default {
    display: none;
}

.product-action.cart.active .cart-icon-hover {
    display: block;
}

.product-info {
    display: flex;
    flex-direction: column;
    min-height: 50px;
}

.product-title {
    font-size: 15px;
    color: var(--blue-text);
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.out-of-stock-label {
    color: #ff6b6b !important;
    font-size: 0.85em;
    font-weight: 500;
    margin-left: 8px;
}

.current-price {
    font-size: 16px;
    color: var(--blue-text);
    font-weight: 500;
}

.old-price {
    font-weight: 500;
    font-size: 16px;
    color: var(--grey);
    text-decoration: line-through;
}

.show-more-container {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-show-more {
    background: var(--white);
    border: 1px solid var(--grey-secondary);
    border-radius: 70px;
    padding: 10px 10px;
    font-size: 15px;
    color: var(--blue-text);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-show-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--blue-text);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-show-more:hover {
    color: var(--white);
    border-color: var(--blue-text);
}

.btn-show-more:hover::before {
    height: 100%;
}

.product-page {
    padding: 0 0 100px 0;
}

.product-detail {
    display: flex;
    gap: 40px;
}

.product-gallery {
    display: flex;
    flex: 1;
    gap: 20px;
    height: 470px;
}

.gallery-thumbnails {
    width: 100px;
    height: 100%;
}

.gallery-thumbs-swiper {
    width: 100%;
    height: 100%;
}

.gallery-thumb {
    cursor: pointer;
    background-color: var(--back);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.swiper-slide-thumb-active .gallery-thumb {
    border: 1px solid var(--accent);
}

.thumb-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.gallery-main {
    background-color: var(--back);
    position: relative;
    width: 576px;
    height: 470px;
}

.gallery-main-swiper {
    width: 100%;
    height: 100%;
}

.gallery-main-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main-image {
    max-width: 576px;
    max-height: 470px;
    padding: 10px 10px 30px 10px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0;
}

/* Стили для пагинации с полосками */
.gallery-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
}
@media (max-width: 768px) { 
    .gallery-pagination {
        bottom: 0 !important;
    }
}

.gallery-pagination .swiper-pagination-bullet {
    background-color: var(--white);
    height: 4px;
    border-radius: 2px;
    opacity: 1;
    margin: 0 4px;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent) !important;
}

.product-detail-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 12px !important;
    color: var(--blue-text);
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.product-detail-price .current-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-text);
}

.product-detail-price .old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--grey);
}

.product-addons {
    margin-bottom: 12px;
}

.addons-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.addons-options {
    display: flex;
    gap: 12px;
}

.addon-option {
    width: 60px;
    height: 60px;
    background-color: var(--back);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border 0.3s ease;
}
.addon-option.selected {
    border: 1px solid var(--accent);
}
.addon-option:hover {
    border-color: var(--accent);
}

.product-tabs-inline {
    margin-bottom: 14px;
    border-top: 1px solid var(--back);
}

.tab-section {
    border-bottom: 1px solid var(--back);
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-header:hover {
    opacity: 0.8;
}

.tab-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
}

.tab-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-arrow {
    content: '';
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url(../images/svg/sort-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    transform: rotate(0);
}

.tab-header.collapsed .tab-arrow {
    transform: rotate(180deg);
}

.tab-content-inline {
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    max-height: 500px;
    padding-bottom: 15px;
    opacity: 1;
}

.tab-content-inline.collapsed {
    max-height: 0;
    padding-bottom: 0;
    opacity: 0.7;
}

.description-text {
    font-size: 12px;
    line-height: 120%;
    color: var(--grey);
}

.specification-item {
    display: flex;
    gap: 3px;
}

.spec-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--blue-text);
}

.spec-value {
    font-size: 12px;
    color: var(--blue-text);
    font-weight: 400;
}

.product-actions-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.add-to-cart-btn {
    background-color: var(--blue-text);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 40px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.add-to-cart-btn:hover {
    border: 1px solid var(--blue-text);
    background-color: var(--white);
    color: var(--blue-text);
}

/* Неактивные кнопки добавления в корзину */
.add-to-cart-btn:disabled,
.btn-add-to-cart:disabled,
.product-action.cart:disabled,
.catalog-cart-btn:disabled,
.product-action.cart.disabled,
.catalog-cart-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.add-to-wishlist-btn {
    width: 44px;
    height: 44px;
}

.add-to-wishlist-btn svg {
    width: 22px;
    height: 22px;
}

.related-products-section {
    margin-bottom: 100px;
}

/* Product Showcase Section */
.product-showcase-section {
    margin: 80px 0;
}

.showcase-swiper {
    max-width: 1160px;
    margin: 0 auto;
    height: 500px;
}

@media (max-width: 768px) {
    .showcase-swiper {
        height: 250px;
    }
}

.showcase-container {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
    position: relative;
}

.showcase-main {
    flex: 1;
    height: 100%;
}

.main-product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .main-product-image {
        height: 250px;
    }
}
.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.showcase-grid {
    flex: 1;
    height: 100%;
    position: relative;
    background: #ECECEC;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 360px;
    object-fit: contain;
}

.product-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #FFFFFF;
    padding: 20px;
    min-width: 168px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .product-info-card {
        justify-content: end;
        height: fit-content;
        gap: 5px;
        max-width: 100%;
        width: 100%;
        padding: 10px;
        bottom: 0;
        left: 0px;
        right: 0px;
    }
}

.product-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: #04233A;
    margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
    .product-brand {
        margin: 0;
    }
}

.see-more-btn {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: #04233A!important;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.see-more-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 75px;
    height: 1px;
    background: #CCFF00;
}

.showcase-pagination {
    position: absolute;
    left: 20px!important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.showcase-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CCFF00;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    margin: 0;
}
.product-info-card_logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
}
@media screen and (max-width: 768px) {
    .product-info-card_logo {
        top: 5px;
        right: 5px;
    }
}
.product-info-card_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.showcase-pagination .swiper-pagination-bullet-active {
    background: #CCFF00;
}

.showcase-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
}

.showcase-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.1);
}



.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
}

.related-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.related-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--back);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-btn:disabled {
    opacity: 0.2;
}

.related-products-slider {
    overflow: hidden;
}

.related-swiper {
    overflow: visible;
}

.product-sizes {
    margin-bottom: 20px;
}

.sizes-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 12px;
}

.sizes-options {
    display: flex;
    gap: 4px;
}

.size-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: none;
    background-color: var(--back);
    color: var(--blue-text);
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: var(--accent);
}

.size-option.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--blue-text);
}

/* Корзина - Модальное окно */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 800px;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.cart-modal.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #F5F5F5;
}

.cart-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-text);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    color: var(--grey);
}

.cart-close svg {
    width: 25px;
    height: 25px;
}

.cart-close:hover {
    background: var(--back);
    color: var(--blue-text);
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid #F5F5F5;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--back);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--blue-text);
    font-weight: 400;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.quantity-btn {
    width: 42px;
    height: 28px;
    border: 1px solid rgba(101, 101, 101, 1);
    background: transparent;
    border-radius: 90px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--blue-text);
    transition: all 0.2s ease;
}

.quantity-btn svg {
    width: 16px;
    height: 16px;
}

.quantity-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
}

.cart-item-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--blue-text);
    margin: 0 12px 0 8px;
    min-width: 50px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    color: var(--grey);
}

.cart-item-remove svg {
    width: 16px;
    height: 16px;
}

.cart-item-remove:hover {
    background: var(--back);
    color: var(--blue-text);
}

.cart-summary {
    padding: 20px 24px;
    background: var(--white);
}

.cart-summary-row.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px solid #F5F5F5;
    font-size: 20px;
    color: var(--blue-text);
}

.cart-checkout-btn {
    width: 100%;
    background: var(--blue-text);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: var(--accent);
    color: var(--blue-text);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Счетчик товаров на кнопке корзины */
.cart-counter {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--blue-text);
    color: var(--white);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.cart-btn {
    position: relative;
}



/* ИЗБРАННОЕ (Favorites) - Модальное окно */
.favorites-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.favorites-overlay.active {
    opacity: 1;
    visibility: visible;
}

.favorites-modal {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 800px;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.favorites-modal.active {
    transform: translateX(0);
}

.favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #F5F5F5;
}

.favorites-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-text);
    margin: 0;
}

.favorites-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    color: var(--grey);
}

.favorites-close svg {
    width: 25px;
    height: 25px;
}

.favorites-close:hover {
    background: var(--back);
    color: var(--blue-text);
}

.favorites-content {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
}

.favorites-items {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

.favorites-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid #F5F5F5;
}

.favorites-item:last-child {
    border-bottom: none;
}

.favorites-item-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--back);
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.favorites-item-info {
    flex: 1;
    min-width: 0;
}

.favorites-item-title {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--blue-text);
    font-weight: 400;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.favorites-item-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--blue-text);
    margin: 0 12px 0 8px;
    min-width: 50px;
    text-align: right;
}

/* Кнопка корзины в избранном - как в шапке */
.favorites-item-cart {
    margin-right: 8px;
}

.favorites-item-cart .cart-icon-hover {
    display: none;
}

.favorites-item-cart:hover {
    background: var(--accent) !important;
}

.favorites-item-cart:hover .cart-icon-hover path {
    fill: rgba(52, 51, 48, 1);
}

.favorites-item-cart:hover .cart-icon-default {
    display: none;
}

.favorites-item-cart:hover .cart-icon-hover {
    display: block;
}

/* Кнопка удаления в избранном - как в корзине */
.favorites-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    color: var(--grey);
}

.favorites-item-remove svg {
    width: 16px;
    height: 16px;
}

.favorites-item-remove:hover {
    background: var(--back);
    color: var(--blue-text);
}

.favorites-summary {
    padding: 20px 24px;
    background: var(--white);
}

.favorites-catalog-btn {
    width: 100%;
    background: var(--blue-text);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorites-catalog-btn:hover {
    background: var(--accent);
    color: var(--blue-text);
}

.favorites-catalog-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Счетчик товаров на кнопке избранного */
.favorites-counter {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--accent);
    color: var(--blue-text);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.wishlist-btn {
    position: relative;
}

/* Уведомления избранного */
.favorites-notification {
    position: fixed;
    top: 160px;
    right: 20px;
    background: var(--blue-text);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
}

.favorites-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Активное состояние кнопки избранного в карточке товара */
.product-action.wishlist.active {
    background: var(--blue-text);
}

.product-action.wishlist.active svg path {
    fill: var(--accent);
}

/* Активное состояние кнопки избранного в шапке */
.wishlist-btn.active {
    background: var(--blue-text);
}

.wishlist-btn.active svg path {
    fill: var(--accent);
}

.wishlist-btn:hover {
    background: var(--blue-text);
}

.wishlist-btn:hover svg path {
    fill: var(--accent);
}

/* Home Catalog Section */
.home-catalog-section {
    margin: 60px 0;
}

.home-catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.home-catalog-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--blue-text);
}

.home-catalog-subtitle {
    font-size: 15px;
    color: var(--grey);
}

.home-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.home-catalog-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--blue-text);
    font-weight: 700;
    padding: 10px 32px;
    width: 100%;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    border: 1px solid var(--accent);
}

.home-catalog-btn:hover {
    background-color: transparent;
    border: 1px solid var(--accent)
}

/* Стили для контактной страницы */
.contact-grid {
    display: grid;
    grid-template-columns: 340px 492px auto;
    margin-left: calc((100% - 1160px) / 2);
}

.contact-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 40px;
}

.contact-info-section {
    display: flex;
    gap: 40px;
}

.contact-info-item h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 12px;
}

.contact-info-item a {
    font-size: 12px;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--blue-text);
}

.contact-center-column {
    background-color: var(--back);
    padding: 95px 55px 0;
    height: 100%;
}

.contact-description {
    margin-bottom: 20px;
}

.contact-description p {
    font-size: 20px;
    color: var(--blue-text);
    line-height: 120%;
}

.contact-right-column {
    max-height: 682px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--grey-secondary);
    padding: 12px 0;
    font-size: 14px;
    color: var(--blue-text);
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-submit-btn {
    background-color: var(--accent);
    color: var(--blue-text);
    border: none;
    border-radius: 40px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid var(--accent);
}

.form-submit-btn:hover {
    background-color: transparent;
    color: var(--blue-text);
    border: 1px solid var(--accent);
}

.form-privacy {
    text-align: center;
    margin-bottom: calc(100vh - 860px);
}

.form-privacy p {
    font-size: 12px;
    color: #1E1E1E;
    text-decoration: underline;
}

.form-privacy p a {
    text-decoration: none;
    color: #1E1E1E;
}

.contact-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Стили для страницы checkout */
.checkout-page {
    padding: 0 0 100px 0;
}

.checkout-container {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: start;
}

.checkout-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--blue-text);
    margin-bottom: 20px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-form .form-group {
    position: relative;
}

.checkout-form .form-input,
.checkout-form .form-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--grey-secondary);
    padding: 12px 0;
    font-size: 14px;
    color: var(--blue-text);
    background: transparent;
    transition: border-color 0.3s ease;
}

.checkout-form .form-input:focus,
.checkout-form .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.checkout-form .form-input::placeholder,
.checkout-form .form-textarea::placeholder {
    color: var(--blue-text);
    font-size: 14px;
}

.checkout-form .form-textarea {
    resize: vertical;
    min-height: 80px;
}

.checkout-submit-btn {
    background-color: var(--blue-text);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.checkout-submit-btn:hover {
    background-color: var(--accent);
    color: var(--blue-text);
}

.checkout-terms {
    margin-top: 20px;
    text-align: center;
}

.checkout-terms p {
    font-size: 12px;
    color: #1E1E1E;
}

.checkout-terms a {
    color: var(--blue-text);
    text-decoration: underline;
}

.checkout-terms a:hover {
    opacity: 0.8;
}

/* Стили для корзины заказа */
.order-summary-section {
    background: #F9F9F9;
    padding: 25px 20px 20px;
}

.order-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-text);
    padding-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 30px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    height: 369px;
    overflow-y: auto;
    padding-right: 10px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-item-image {
    width: 60px;
    height: 60px;
    background: var(--back);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-text);
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}

.order-item-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-text);
    flex-shrink: 0;
}

.order-delivery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #D9D9D9;
}

.delivery-info {
    display: flex;
    align-items: center;
}

.delivery-label {
    font-size: 16px;
    color: var(--blue-text);
    font-weight: 400;
}

.delivery-price {
    font-size: 16px;
    color: var(--blue-text);
    font-weight: 400;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-quantity {
    font-size: 20px;
    color: var(--blue-text);
    font-weight: 400;
}

.total-sum {
    font-size: 20px;
    color: var(--blue-text);
    font-weight: 400;
}

/* Стили для пустой корзины */
.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--grey);
}

.empty-cart-message p {
    font-size: 18px;
    margin-bottom: 20px;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--blue-text);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: transparent;
    color: var(--blue-text);
    border: 1px solid var(--accent);
}

/* Стили для количества товаров в заказе */
.order-item-quantity {
    font-size: 12px;
    color: var(--grey);
    margin-top: 4px;
}

/* Стили для системы поиска */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99999;
}

.search-results-content {
    padding: 0;
}

.search-results-list {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--back);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: rgb(250, 249, 249);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    flex-shrink: 0;
    background-color: var(--back);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-text);
    margin: 0 0 4px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-title mark {
    background-color: var(--accent);
    color: var(--blue-text);
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--blue-text);
}

.search-no-results {
    padding: 20px 16px;
    text-align: center;
    color: var(--grey);
}

.search-no-results p {
    margin: 0;
    font-size: 14px;
}

/* Mobile Submenu Navigation */
.mobile-submenu-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-submenu-nav-item {
    border-bottom: 1px solid #F5F5F5;
}

.mobile-submenu-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--blue-text);
    font-size: 16px;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-submenu-nav-arrow {
    color: var(--grey);
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active .mobile-submenu-nav-arrow {
    transform: rotate(90deg);
}

/* Mobile Submenu Dropdown */
.mobile-submenu-dropdown {
    max-height: 0;
    overflow: hidden;
    background-color: var(--back);
    transition: max-height 0.3s ease;
}

.mobile-submenu-dropdown.active {
    max-height: 500px;
}

.mobile-submenu-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-submenu-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--blue-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.mobile-submenu-dropdown-link:hover {
    color: var(--blue-text);
    background-color: #F0F0F0;
}

@media (max-width: 1224px) {
    .contact-grid {
        grid-template-columns: 267px 492px auto;
        margin-left: 20px;
    }

    .product-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        transform: none;
    }

    .catalog-content.filters-hidden .product-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        transform: none;
    }

    .catalog-content.filters-hidden .catalog-filters {
        display: none;
    }
}

@media (max-width: 1124px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .main-content h1 {
        margin-bottom: 40px;
    }

    .contact-info-section {
        margin-bottom: 40px;
    }

    .contact-grid-wrapper:first-child {
        margin-left: 20px;
    }

    .contact-center-column {
        padding-left: 20px;
    }

    .contact-grid {
        margin-left: 0;
    }

    .form-privacy {
        margin-bottom: 80px;
    }

    .contact-right-column {}

    .contact-image img {
        object-fit: fill;
        height: 690px;

    }
}

@media (max-width: 834px) {

    .checkout-container {
        flex-direction: column;
    }

    .page-title {
        text-wrap: nowrap;
    }

    .order-summary-section {
        order: -1;
        width: 100%;
    }

    .checkout-form-section {
        width: 100%;
    }

    .checkout-form {
        flex-direction: column;
    }

    .form-row {
        display: flex;
        flex-direction: column;

    }

    .product-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }


    .container {
        padding: 0 20px;
    }

    .hero-banner {
        padding: 0;
        padding-bottom: 40px;
    }

    .hero-banner-image {
        height: auto;
    }

    .hero-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero-pagination {
        position: absolute;
        left: 50% !important;
        top: 95px !important;
        bottom: 15px !important;
        transform: translateX(-50%) !important;
        display: flex;
        flex-direction: row !important;
        gap: 5px;
        z-index: 10;
        pointer-events: none;
        width: fit-content !important;
    }
    .hero-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }
    .related-title {
        font-size: 16px;
    }

    .view-more-link {
        font-size: 12px;
    }
    .product-images .swiper-slide {
        height: 250px;
        width: 100%!important;
    }
    .related-products-section {
        margin-bottom: 40px;
    }

    .product-card .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .home-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Скрываем выпадающее меню на мобильных */
    .dropdown-menu {
        display: none !important;
    }


    .page-title {
        font-size: 32px;
    }

    .content-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-image {
        margin-bottom: 40px;
    }

    .hero-img {
        height: 250px;
    }

    .motivation-text {
        font-size: 24px;
    }

    .product-detail {
        display: block;
    }

    .filter-controls {
        display: none;
    }

    /* Мобильная галерея товара */
    .product-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
        margin-bottom: 20px;
    }

    .gallery-main {
        width: 100%;
        height: 300px;
        order: 1;
    }

    .gallery-thumbnails {
        width: 100%;
        height: 60px;
        order: 2;
    }

    .gallery-thumbs-swiper {
        width: 100%;
        height: 100%;
    }

    .gallery-thumbs-swiper .swiper-wrapper {
        align-items: center;
    }

    .gallery-thumbs-swiper .swiper-slide {
        width: calc((100% - 32px) / 5) !important;
        flex-shrink: 0;
    }

    .gallery-thumb {
        height: 60px;
        width: 100%;
        flex-shrink: 0;
    }

    .main-image {
        max-width: 100%;
        max-height: 300px;
        padding: 10px;
    }

    .navigation {
        display: none;
    }

    /* Убираем фокус с элементов при касании */
    .mobile-nav-link:focus,
    .mobile-submenu-link:focus,
    .mobile-menu-btn:focus {
        outline: none;
    }

    .catalog-header {
        display: flex;
        justify-content: space-between;
    }

    .page-title {
        font-size: 28px;
    }

    /* Улучшаем размеры кнопок для касания */
    .mobile-nav-link {
        min-height: 48px;
    }

    .mobile-submenu-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .footer-left {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .footer-column {
        margin-top: 40px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: row;
        gap: 16px;
        text-align: center;
        padding-top: 40px;
    }

    .footer-policies {
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .catalog-header {
        flex-direction: column;
        gap: 20px;
    }

    .filter-buttons {
    width: 100%;
        justify-content: space-between;
        margin-bottom: 8px;
    }
}

@media (max-width: 426px) {
    .contact-right-column {
        display: none;
    }

    .catalog-controls {
        margin-left: 0;
    }

    .page-title {
        font-size: 24px;
    }

    .catalog-wrapper {
        padding-bottom: 60px;
    }

    .btn-filter-toggle {
        display: none;
    }
}

.checkout-form-section {
    width: 100%;
}
.order-summary-section {
    width: 100%;

}

/* Стили для отображения размеров и add-ons в корзине */
.cart-item-size,
.cart-item-addons {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
    line-height: 1.3;
}

.cart-item-size strong,
.cart-item-addons strong {
    color: #333;
    font-weight: 600;
}

.cart-item-addons {
    color: #007cba;
}

/* Стили для WooCommerce корзины и checkout */
.woocommerce-cart-form__cart-item .item-meta,
.woocommerce .shop_table .item-meta,
.order-items .item-meta {
    margin: 8px 0;
    padding: 6px 0;
    border-top: 1px solid #f0f0f0;
}

.woocommerce-cart-form__cart-item .item-meta small,
.woocommerce .shop_table .item-meta small,
.order-items .item-meta small {
    display: block;
    font-size: 13px;
    color: #666;
    margin: 4px 0;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #007cba;
}

.woocommerce-cart-form__cart-item .item-meta strong,
.woocommerce .shop_table .item-meta strong,
.order-items .item-meta strong {
    color: #333;
    font-weight: 600;
}

/* Специальные стили для размеров */
.item-meta small:contains("Size") {
    border-left-color: #28a745;
    background: #f8fff9;
}

/* Специальные стили для add-ons */
.item-meta small:contains("Add-ons") {
    border-left-color: #007cba;
    background: #f0f7ff;
}

/* Стили для страницы order-received */
.order-items .item-meta div {
    margin: 4px 0;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #007cba;
}

.order-items .item-meta div strong {
    color: #333;
    font-weight: 600;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cart-item-size,
    .cart-item-addons {
        font-size: 11px;
        margin: 2px 0;
    }
    
    .woocommerce-cart-form__cart-item .item-meta small,
    .woocommerce .shop_table .item-meta small,
    .order-items .item-meta small {
        font-size: 12px;
        padding: 3px 6px;
        margin: 2px 0;
    }
}
.product-title a {
    text-decoration: none;
    color: var(--blue-text);
}
ins {
    text-decoration: none;

}

/* Гарантируем видимость product-actions с has-active */
.product-actions.has-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
}

/* Delivery Tooltip */
.delivery-info {
    position: relative !important;
    cursor: help !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-tooltip {
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-8px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
}

.delivery-info:hover .delivery-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(-8px) !important;
}

.tooltip-content {
    background: #343330 !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    min-width: 150px !important;
    text-align: center !important;
}

.tooltip-content::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 5px solid transparent !important;
    border-top-color: #343330 !important;
}

.tooltip-text {
    font-weight: 500 !important;
}

#free-shipping-threshold {
    font-weight: 600 !important;
    color: #ccff00 !important;
}

/* Fallback для отладки */
.delivery-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: transparent;
    z-index: -1;
}