  /*
     Home Page CSS
     - Hero Slider
     - Categories
     - Featured Products
     - Promo Banners
     - Benefits
     - Newsletter
  */

  /* Hero Slider */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    overflow: visible;
    background-image: linear-gradient(90deg, transparent 49%, #E4E4E4 25%, #FAFAFA 100%);
    background-size: 100% 100%;
    margin-top: -115px; /* Компенсируем высоту хедера, чтобы фон заходил на него */
    padding-top: 115px; /* Добавляем padding, чтобы контент не накладывался на хедер */
  }

  .hero .container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 100vh; /* Полная высота viewport */
    margin: 0 auto;
    display: flex;
    align-items: center;
    z-index: 2; /* Контейнер выше фона и footer-bar */
    padding-bottom: 80px; /* Добавляем отступ внизу, чтобы текст не слишком низко заходил на черную полосу */
  }

  .hero__content {
    width: 445px;
    margin-left: 86px;
    position: relative;
    z-index: 3; /* Увеличиваем z-index, чтобы текст был над черной полосой */
    padding-top: 30px;
    padding-bottom: 60px; /* Добавляем отступ снизу, чтобы часть текста заходила на черную полосу, как в оригинальном дизайне */
  }

  .hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 112%;
    color: #000000;
    margin-bottom: 20px;
    max-width: 445px;
    position: relative;
    z-index: 3; /* Увеличиваем z-index */
  }

  .hero__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 50px;
    max-width: 445px;
    position: relative;
    z-index: 3; /* Увеличиваем z-index */
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    background: #000000;
    color: #FFFFFF;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 154%;
    text-decoration: none;
    border: none;
    box-shadow: 0px 100px 85px rgba(0, 0, 0, 0.09),
                0px 46.233px 39.2981px rgba(0, 0, 0, 0.0667508),
                0px 26.4535px 22.4855px rgba(0, 0, 0, 0.0564103),
                0px 16.0571px 13.6485px rgba(0, 0, 0, 0.0485953),
                0px 9.67509px 8.22383px rgba(0, 0, 0, 0.0414047),
                0px 5.38772px 4.57956px rgba(0, 0, 0, 0.0335897),
                0px 2.31722px 1.96964px rgba(0, 0, 0, 0.0232492);
    position: relative;
    z-index: 3; /* Увеличиваем z-index */
  }

  /* Выделяем серый фон в отдельный элемент - убираем дублирование фона */
  .hero__background {
    display: none; /* Скрываем дублирующий фон */
  }

  /* Обновляем контейнер изображения */
  .hero__image-container {
    position: relative;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2; /* Чтобы изображение было выше footer-bar но ниже текста */
    background: transparent;
    padding-bottom: 80px; /* Добавляем отступ снизу, чтобы изображение не заходило слишком низко на черную полосу */
  }

  .hero__product {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: 70%;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
  }

  /* Убираем абсолютное позиционирование и стили из Figma для эллипсов, они ломают адаптивность */
  .hero__ellipse {
    display: none; /* Скрываем эллипсы */
  }

  /* Черная полоса внизу героя */


  /* Categories Section */
  .categories {
    margin-bottom: 4rem;
  }

  .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .section-title__text {
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .section-title__text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #1a1a1a;
  }

  .section-title__link {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .section-title__link:hover {
    color: #1a1a1a;
  }

  .section-title__link img {
    width: 0.75rem;
    height: 0.75rem;
  }

  .categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
  }

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

  .category-card__image {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
  }

  .category-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .category-card__count {
    font-size: 0.875rem;
    opacity: 0.8;
  }

  /* Featured Products */
  .featured-products {
    margin-bottom: 4rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    flex: 0 0 230px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    max-width: 230px;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  /* Стили для изображений продуктов */
  .product-card__image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: white;
    padding: 10px;
  }

  .product-card__image img {
    transition: transform 0.5s ease;
    cursor: pointer;
  }

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

  .product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
  }

  .product-card__badge--sale {
    background-color: #ff3f3f;
    color: #fff;
  }

  .product-card__badge--new {
    background-color: #00c853;
    color: #fff;
  }

  .product-card__actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
  }

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

  .product-card__action {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #1a1a1a;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .product-card__action:hover {
    background-color: #1a1a1a;
    color: #fff;
  }

  .product-card__action img {
    width: 1rem;
    height: 1rem;
  }

  /* Стили для контента карточки */
  .product-card__content {
    padding: 15px;
    background-color: #FFFFFF;
  }

  .product-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 5px;
  }

  .product-card__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
  }

  .product-card__price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
    padding-bottom: 5px;
  }

  .product-card__btn {
    width: 100%;
    height: 43px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .product-card__btn:hover {
    background-color: #333333;
  }

  .product-card__category {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .product-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .product-card__favorite:hover {
    background: #f9f9f9;
  }

  /* Promo Banners */
  .promo-banners {
    margin-bottom: 4rem;
  }

  .promo-banners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .promo-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
  }

  .promo-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .promo-banner:hover .promo-banner__image {
    transform: scale(1.05);
  }

  .promo-banner__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    z-index: 1;
  }

  .promo-banner--light .promo-banner__content {
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .promo-banner__subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }

  .promo-banner__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 300px;
  }

  .promo-banner__button {
    margin-top: 1rem;
    align-self: flex-start;
  }

  /* Benefits */
  .benefits {
    padding: 4rem 0;
    background-color: #f9f9f9;
    margin-bottom: 4rem;
  }

  .benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .benefit {
    text-align: center;
  }

  .benefit__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
  }

  .benefit__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .benefit__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
  }

  /* Newsletter */
  .newsletter {
    background-color: #000;
    padding: 50px 0;
    color: #fff;
  }

  .newsletter__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
  }

  .newsletter__form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    height: 50px;
  }

  .newsletter__input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    color: #333;
  }

  .newsletter__input::placeholder {
    color: #999;
  }

  .newsletter__submit {
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .newsletter__submit:hover {
    background-color: #f5f5f5;
  }

  .newsletter__submit img {
    width: 24px;
    height: 24px;
  }

  /* Responsive */
  @media (max-width: 1440px) {
    .hero .container {
      height: 100vh;
    }

    .hero__image-container {
      width: 50%;
      height: 100%;
    }

    .hero__content {
      margin-left: 40px;
    }

    .hero__product {
      right: 5%;
      height: 60%;
    }
  }

  @media (max-width: 992px) {
    .hero {
      height: auto;
      min-height: 100vh;
    }

    .hero .container {
      flex-direction: column;
      padding: 40px 20px;
      height: auto;
    }

    .hero__content {
      width: 100%;
      max-width: 445px;
      margin: 0 auto;
      text-align: center;
    }

    .hero__image-container {
      position: relative;
      width: 100%;
      height: 400px;
      margin-top: 40px;
    }

    .hero__product {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      height: 400px;
      margin: 0 auto;
      max-width: 80%;
    }

    .hero__image-container {
      width: 100%;
      justify-content: center;
    }

    .container {
        margin-left: 0;
        padding: 0 30px;
    }
    
    .catalog-nav--prev {
        left: -20px;
    }
    
    .catalog-nav--next {
        right: -20px;
    }
    
    .product-feature__nav--prev {
        left: -20px;
    }
    
    .product-feature__nav--next {
        right: -20px;
    }
    
    .reviews-nav--prev {
        left: -20px;
    }
    
    .reviews-nav--next {
        right: -20px;
    }
  }

  @media (max-width: 576px) {
    .hero__title {
      font-size: 36px;
    }

    .hero__text {
      font-size: 14px;
    }

    .hero__image-container {
      height: 300px;
    }

    .hero__product {
      height: 300px;
    }

    .container {
        margin-left: 0;
        padding: 0 10px;
    }
  }

  /*
     YOGIKAI - Главная страница
  */

  /* Общие стили */
  :root {
    --primary-color: #000000;
    --secondary-color: #DA1010;
    --text-color: #000000;
    --text-color-light: rgba(0, 0, 0, 0.75);
    --text-white: #FFFFFF;
    --bg-light: #F3F3F3;
    --bg-gradient: linear-gradient(90deg, #E4E4E4 0%, #FAFAFA 100%);
    --border-color: #DEDEDE;
    --star-color: #FFB800;
  }

  /* Улучшения для интерактивности */
  a, button, .menu-toggle, .product-card, .catalog__item, .review-card, .slider-pagination__dot {
    transition: all 0.3s ease;
  }

  a {
    cursor: pointer;
  }

  a:hover {
    opacity: 0.8;
  }

  button {
    cursor: pointer;
  }

  button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
  }

  .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }

  .section-header--center {
    justify-content: center;
    gap: 40px;
  }

  .section-header__line {
    width: 47px;
    height: 3px;
    background-color: var(--primary-color);
  }

  .section-header__line--white {
    background-color: var(--text-white);
  }

  .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 45px;
    text-transform: uppercase;
    margin: 0 20px;
  }

  .section-title--white {
    color: var(--text-white);
  }

  .btn-primary:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0px 120px 100px rgba(0, 0, 0, 0.11),
                0px 50px 45px rgba(0, 0, 0, 0.08),
                0px 30px 25px rgba(0, 0, 0, 0.06);
  }

  .btn-primary:active {
    transform: translateY(1px);
  }

  .slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .slider-pagination__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-pagination__dot:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
  }

  .slider-pagination__dot--active {
    width: 18px;
    height: 18px;
    background-color: rgba(0, 0, 0, 0.75);
  }

  /* Header Styles обновленные */
  .header {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    overflow: visible;
  }

  /* Сбрасываем все z-индексы */
  .header .container,
  .header__top,
  .logo,
  .main-nav,
  .main-nav__list,
  .main-nav__link,
  .header__tools,
  .search-icon,
  .cart-icon {
    position: relative;
    z-index: 5;
  }

  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Оставляем для абсолютного позиционирования меню */
    height: auto; /* Убираем фикс. высоту */
    z-index: 2; /* Добавляем z-index */
  }

  .logo {
    /* Убираем absolute */
    flex-shrink: 0; /* Не сжимать логотип */
    position: relative; /* Добавляем relative */
    z-index: 2; /* Добавляем z-index */
  }

  .main-nav {
    /* Убираем absolute */
    position: relative; /* Добавляем relative */
    z-index: 2; /* Добавляем z-index */
  }

  .main-nav__list {
    display: flex;
    gap: 30px; /* Уменьшим gap */
  }

  .main-nav__link {
    font-family: 'Inter';
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 20px); /* Адаптивный шрифт */
    line-height: 1.5;
    color: #000000;
    position: relative;
  }

  .main-nav__link::after { /* Возвращаем подчеркивание при наведении */
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
  }

  .main-nav__link:hover::after {
    width: 100%;
  }

  .header__tools {
    /* Убираем absolute */
    display: flex;
    align-items: center;
    gap: 20px; /* Уменьшаем gap */
    position: relative; /* Добавляем relative */
    z-index: 2; /* Добавляем z-index */
  }

  .search-icon,
  .cart-icon {
    font-size: 20px; /* Уменьшаем иконки */
    position: relative; /* Добавляем relative */
    z-index: 2; /* Добавляем z-index */
  }

  .menu-toggle {
    /* Убираем absolute */
    display: flex; /* Используем flex для иконки */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    display: none; /* Скрываем на десктопе */
  }

  .menu-toggle__line {
    width: 25px;
    height: 3px;
    background-color: #000000;
    border: none; /* Убираем border, используем background */
    transition: all 0.3s ease;
  }

  .menu-toggle__line--short {
    width: 15px;
    margin-left: auto;
    margin-top: 0; /* Убираем старый отступ */
  }

  /* Стили для мобильного меню */
  @media (max-width: 992px) {
    .main-nav {
      display: none; /* Скрываем основное меню */
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .main-nav--active {
      display: block;
    }
    .main-nav__list {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    .menu-toggle {
      display: flex; /* Показываем кнопку меню */
    }
  }

  /* Hero Section */
  .hero {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
  }

  .hero .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
  }

  .hero__content {
    padding-top: 0;
    padding-left: 20px;
  }

  /* Удаляю дублирующее определение hero__image-container */

  .hero__product {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: 70%;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
  }

  /* Popular Products */
  .popular-products {
    padding: 50px 0;
    background-color: #fff;
  }

  .product-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    position: relative;
    margin-left: 0;
  }

  .product-feature__content {
    width: 35%;
    padding-right: 20px;
  }

  .product-feature__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    margin-bottom: 20px;
  }

  .product-feature__specs {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.7);
  }

  .product-feature__image {
    width: 65%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
  }

  .products-slider__container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .product-feature__image .products-slider__container {
    transform: translateX(0);
    overflow: visible;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .product-card {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .product-card__image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Aspect ratio 4:3 */
    overflow: hidden;
  }

  .product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
  }

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

  .product-card__content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    text-decoration: none;
  }

  .product-card__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .product-card__price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-top: auto;
    margin-bottom: 15px;
  }

  .product-card__btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: auto;
  }

  .product-card__btn:hover {
    background: #333;
  }

  .slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }

  .slider-pagination__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .slider-pagination__dot:hover {
    background-color: #bbb;
  }

  .slider-pagination__dot--active {
    background-color: #000;
  }

  /* Media queries for responsiveness */
  @media (max-width: 992px) {
    .product-feature {
        flex-direction: column;
    }
    
    .product-feature__content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .product-feature__image {
        width: 100%;
    }
    
    .products-slider__container {
        justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
    }
    
    .product-feature__nav, .catalog-nav, .reviews-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .product-feature__nav--prev, .catalog-nav--prev, .reviews-nav--prev {
        left: -15px;
    }
    
    .product-feature__nav--next, .catalog-nav--next, .reviews-nav--next {
        right: -15px;
    }
  }

  @media (max-width: 576px) {
    .product-card {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
    }
    
    .product-feature__nav, .catalog-nav, .reviews-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .product-feature__nav--prev, .catalog-nav--prev, .reviews-nav--prev {
        left: -15px;
    }
    
    .product-feature__nav--next, .catalog-nav--next, .reviews-nav--next {
        right: -15px;
    }
  }

  /* Стили для иконок Font Awesome и круглых логотипов */
  .fas, .fab {
    color: currentColor;
  }

  .marketplace__logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--secondary-color);
  }

  .footer__social-link {
    background-color: white;
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__social-link i {
    font-size: 20px;
  }

  .review-card__star {
    position: relative;
  }

  .review-card__star::before {
    content: "★";
    position: absolute;
    color: var(--star-color);
    font-size: 14px;
  }

  .marketplace__heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 110%;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 20px;
  }

  .marketplace__text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 95%;
  }

  /* Hero decorative ellipses */
  .hero__ellipse {
    position: absolute;
    width: 295.44px;
    height: 295.44px;
    background: linear-gradient(180deg, #F3F3F3 0%, #F3F3F3 100%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero__ellipse-21 {
    left: 1433.81px;
    top: 278.79px;
    transform: rotate(75deg);
  }
  .hero__ellipse-22 {
    left: 1747.17px;
    top: 640.55px;
    transform: rotate(135deg);
  }
  .hero__ellipse-23 {
    left: 1439px;
    top: 606.23px;
    transform: rotate(90deg);
  }

  /* Responsive Hero Section */
  @media (max-width: 1200px) {
    .hero .container {
        gap: 30px;
    }
    .hero__title {
        font-size: clamp(36px, 5vw, 60px);
    }
    .hero__text {
        font-size: clamp(15px, 1.4vw, 17px);
    }
    .hero__image-container {
        width: 55%;
    }
    .hero__product {
        height: 70%;
    }
  }

  @media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero__content {
        max-width: 100%;
        padding-left: 0;
        order: 2; /* Текст под картинкой */
    }
    .hero__image-container {
        width: 100%;
        max-width: 500px; /* Ограничим ширину картинки на планшете */
        margin: 0 auto 30px auto; /* Центрируем и добавляем отступ снизу */
        min-height: 350px;
        order: 1; /* Картинка над текстом */
        background: none; /* Убираем фон на мобильных */
    }
    .hero__product {
        max-width: 80%;
    }
    .btn-primary {
        margin: 0 auto; /* Центрируем кнопку */
    }
  }

  @media (max-width: 576px) {
    .hero {
        padding: 15px 0;
        min-height: auto;
    }
    .hero__title {
        font-size: clamp(24px, 6vw, 32px);
    }
    .hero__text {
        font-size: 14px;
    }
    .btn-primary {
        min-width: 180px;
        height: 60px;
        font-size: 16px;
    }
    .hero__image-container {
        min-height: 300px;
    }
  }

  /* Удаляем все псевдоэлементы */
  .header::before {
    display: none;
  }

  body::before {
    display: none;
  }

  /* Hero Section (улучшенная версия для экранов средних и больших) */
  @media (min-width: 992px) {
    .hero__product {
        position: absolute;
        right: -20%;
        top: 50%;
        transform: translateY(-50%);
        height: 80%;
        z-index: 10;
    }
  }

  /* Удаляю устаревшие стили */
  .hero__yogikai-vertical {
    display: none; /* Скрываем старый элемент */
  }

  /* Добавляю новые стили для вертикальной надписи YOGIKAI как независимого элемента */
  .yogikai-vertical-text {
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 10; /* Увеличиваем z-index, чтобы текст был над всеми элементами */
    transform: translateY(-50%);
    width: 100px; /* Управляет шириной контейнера */
  }

  .yogikai-vertical-text__image {
    height: 50%; /* Управляет высотой изображения */
    width: auto; /* Ширина автоматически подстраивается по пропорциям */
    opacity: 1.2;
    object-fit: contain; /* Сохраняет пропорции изображения */
    pointer-events: none;
  }

  /* Стили для поддержки кликабельных карточек */
  .product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }

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

  .product-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .product-card__favorite:hover {
    background: #f9f9f9;
  }

  .catalog__item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }

  .catalog__item-link:hover {
    transform: translateY(-5px);
  }

  /* Стили для навигации */
  .products-slider__nav, 
  .catalog__slider-arrow {
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .products-slider__nav:hover, 
  .catalog__slider-arrow:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }

  /* Стили для кнопок добавления в корзину */
  .product-card__btn,
  .catalog__item-cart {
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-card__btn:hover,
  .catalog__item-cart:hover {
    background-color: #000;
    color: #fff;
  }

  /* Адаптивные уточнения для мобильных устройств */
  @media (max-width: 768px) {
    .product-card__link:hover,
    .catalog__item-link:hover {
        transform: none;
    }
  }

  /* Стили для слайдера */
  .products-slider {
    position: relative;
    overflow: visible;
    margin: 30px 0;
    padding: 0 40px; /* Отступы для стрелок */
    max-width: 100%;
    margin-left: auto; /* Смещаем слайдер вправо */
  }

  .products-slider__container {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
    max-width: calc(260px * 3 + 40px); /* Ширина трех карточек с отступами */
    position: relative;
    transition: transform 0.5s ease; /* Плавное перемещение карточек */
  }

  .product-card {
    flex: 0 0 280px; /* Фиксированная ширина */
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  /* Стили для пагинации */
  .slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .slider-pagination__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .slider-pagination__dot--active {
    background-color: #000;
  }

  /* Стили для навигации слайдера */
  .products-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px; /* Меньший размер */
    height: 25px; /* Меньший размер */
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .products-slider__nav--prev {
    left: 60px; /* Отступ слева */
  }

  .products-slider__nav--next {
    right: 60px; /* Отступ справа */
  }

  /* Адаптивность для слайдера товаров */
  @media (max-width: 992px) {
    .products-slider__container {
        justify-content: flex-start;
    }
    
    .product-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 240px;
    }
  }

  @media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(50% - 20px);
        min-width: 200px;
    }
  }

  @media (max-width: 576px) {
    .product-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 260px;
    }
  }

  /* Добавляем стили для увеличения изображения */
  .product-image-zoom {
    cursor: zoom-in;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* Модальное окно для увеличенного изображения */
  .image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
  }

  .image-modal.active {
    display: flex;
  }

  .image-modal__content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  .image-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
  }

  /* Добавляем стрелки навигации для карточек в product-feature */
  .product-feature__nav, .catalog-nav, .reviews-nav {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font-size: 20px;
    color: #000;
    border: 2px solid #000;
  }

  .product-feature__nav:hover, .catalog-nav:hover, .reviews-nav:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }

  .product-feature__nav--prev, .catalog-nav--prev, .reviews-nav--prev {
    left: 0;
    z-index: 10;
  }

  .product-feature__nav--next, .catalog-nav--next, .reviews-nav--next {
    right: 0;
    z-index: 10;
  }

  .product-feature__image {
    width: 65%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px;
    overflow: visible;
  }

  .catalog-slider, .reviews-slider {
    padding: 0 50px;
    overflow: visible;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Catalog Section */
  .catalog {
    padding: 50px 0;
    position: relative;
    margin-bottom: 40px;
  }

  .catalog__tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .catalog__tab {
    min-width: 168px;
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.75);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 138%;
    color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .catalog__tab:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
  }

  .catalog__tab--active {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
  }

  .catalog-slider {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px; /* Отступы для стрелок */
  }

  .products-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: 100%;
    margin-left: 15px;
    justify-content: flex-start;
  }

  .catalog-nav {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }

  .catalog-nav:hover {
    background: #000;
    color: #fff;
  }

  .catalog-nav--prev {
    left: 0;
    z-index: 10;
  }

  .catalog-nav--next {
    right: 0;
    z-index: 10;
  }

  @media (max-width: 992px) {
    .catalog__tabs {
        flex-wrap: wrap;
    }
    
    .catalog__tab {
        min-width: 140px;
        height: 60px;
        font-size: 20px;
    }
    
    .catalog-nav--prev {
        left: -20px;
    }
    
    .catalog-nav--next {
        right: -20px;
    }
  }

  @media (max-width: 768px) {
    .catalog__tab {
        min-width: 120px;
        height: 50px;
        font-size: 18px;
    }
  }

  @media (max-width: 576px) {
    .catalog__tabs {
        gap: 10px;
    }
    
    .catalog__tab {
        min-width: 100px;
        height: 40px;
        font-size: 16px;
    }
  }

  /* Reviews Section */
  .reviews {
    padding: 50px 0;
    margin-bottom: 40px;
  }

  .reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible; /* Меняем на visible, чтобы стрелки были видны */
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px; /* Отступы для стрелок */
  }

  .reviews__grid {
    display: flex;
    gap: 15px;
    width: 100%;
    transition: transform 0.5s ease;
  }

  .review-card {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .review-card__avatar {
    flex: 0 0 97px;
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-card__content {
    flex: 1;
  }

  .review-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
  }

  .review-card__rating {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
  }

  .review-card__star {
    position: relative;
    width: 20px;
    height: 20px;
  }

  .review-card__star::before {
    content: "★";
    position: absolute;
    color: #FFB800;
    font-size: 20px;
  }

  .review-card__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
  }

  .reviews-nav {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }

  .reviews-nav:hover {
    background: #000;
    color: #fff;
  }

  .reviews-nav--prev {
    left: -40px;
  }

  .reviews-nav--next {
    right: -40px;
  }

  @media (max-width: 992px) {
    .reviews__grid {
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 20px);
    }
  }

  @media (max-width: 768px) {
    .review-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .review-card__rating {
        justify-content: center;
    }
  }

  @media (max-width: 992px) {
    .product-feature__nav--prev, .catalog-nav--prev, .reviews-nav--prev {
        left: -25px;
    }
    
    .product-feature__nav--next, .catalog-nav--next, .reviews-nav--next {
        right: -25px;
    }
  }

  .product-feature__nav i, .catalog-nav i, .reviews-nav i {
    color: inherit;
    font-size: 18px;
    font-weight: bold;
  }

  .product-feature__nav::before, .catalog-nav::before, .reviews-nav::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    z-index: -1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }

  /* Add overflow-x: hidden to prevent horizontal scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  /* Ensure all section containers don't overflow */
  section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }

  /* Ensure the product feature area doesn't cause horizontal scrolling */
  .product-feature {
    overflow: visible;
    width: 100%;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Fix container styling to prevent overflow */
  .products-slider__container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  /* Ensure product cards are properly sized */
  .product-card {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
  }

  /* Better arrow positioning to ensure they're visible but don't cause overflow */
  .product-feature__nav--prev {
    left: 0;
    z-index: 10;
  }

  .product-feature__nav--next {
    right: 0;
    z-index: 10;
  }

  /* Same for catalog navigation */
  .catalog-nav--prev {
    left: 0;
    z-index: 10;
  }

  .catalog-nav--next {
    right: 0;
    z-index: 10;
  }

  /* Better responsiveness for mobile */
  @media (max-width: 768px) {
    .product-feature__content {
      width: 100%;
      padding: 0 15px;
      box-sizing: border-box;
    }
    
    .product-feature__image {
      width: 100%;
      padding: 0 30px;
      box-sizing: border-box;
    }
    
    .product-card {
      flex: 0 0 100%;
      width: 100%;
      margin: 0;
    }
  }
 