/* Шрифт Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Основные стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
}

/* Стили для каталога */
.catalog-page {
    background-color: #fff;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация по категориям */
.categories-nav {
    padding: 40px 0;
    background-color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    margin-bottom: 20px;
}

.category-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.category-content {
    position: relative;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.boys-card .category-title {
    color: #304CD0;
}

.girls-card .category-title {
    color: #E97491;
}

.collections-card .category-title {
    color: #A68466;
}

/* Стрелки категорий */
.category-arrow {
    width: 60px;
    height: 60px;
    margin: 10px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blue-arrow-down {
    background-image: url('../images/blue-arrow.png');
    transform: rotate(0deg);
}

.pink-arrow-up {
    background-image: url('../images/pink-arrow.png');
    transform: rotate(180deg);
}

.brown-arrow-right {
    background-image: url('../images/yellow-arrow.png');
    transform: rotate(-90deg);
}

/* Секции товаров */
.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.boys-section {
    border-bottom: 1px solid #f0f0f0;
}

.girls-section {
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.boys-section .section-title {
    color: #304CD0;
}

.girls-section .section-title {
    color: #E97491;
}

/* Фильтры */
.filters-container {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.filters-header {
    margin-bottom: 20px;
}

.filters-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #304CD0;
    margin: 0;
}

.girls-section .filters-text {
    color: #E97491;
}

.filters-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.filter-select {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    min-width: 120px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select:focus {
    outline: none;
    border-color: #304CD0;
}

.girls-section .filter-select:focus {
    border-color: #E97491;
}

/* Стрелки фильтров */
.filter-arrow {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.blue-arrow-down {
    background-image: url('../images/blue-arrow.png');
    transform: rotate(0deg) scale(0.3);
}

.pink-arrow-down {
    background-image: url('../images/pink-arrow.png');
    transform: rotate(0deg) scale(0.3);
}

.filters-actions {
    text-align: right;
}

.btn-reset {
    padding: 10px 20px;
    border: 1px solid #304CD0;
    border-radius: 6px;
    background-color: transparent;
    color: #304CD0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reset:hover {
    background-color: #304CD0;
    color: #fff;
}

.girls-section .btn-reset {
    border-color: #E97491;
    color: #E97491;
}

.girls-section .btn-reset:hover {
    background-color: #E97491;
    color: #fff;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    text-align: center;
}

.product-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.product-image {
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.product-info {
    width: 100%;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3A3C7D;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.girls-section .product-name {
    color: #E97491;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2f2f4f;
    margin: 0 0 16px 0;
}

.girls-section .product-price {
    color: #CC7485;
}

.product-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-details {
    background: #f8f9fa;
    color: #3A3C7D;
    border: 1px solid #e9ecef;
}

.btn-details:hover {
    background: #e9ecef;
}

.girls-section .btn-details {
    color: #E97491;
}

.btn-add-cart {
    background: #E97491;
    color: #fff;
}

.btn-add-cart:hover {
    background: #d65a7a;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .collections-card {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .filters-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        padding: 20px 12px 16px 12px;
    }
    
    .product-image img {
        max-width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 15px;
    }
    
    .categories-nav {
        padding: 30px 0;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .filters-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filters-text {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .btn {
        width: 100%;
        padding: 10px 16px;
    }
}

/* Хлебные крошки */
.breadcrumbs {
    margin-bottom: 32px;
    padding: 16px 0;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
}

.breadcrumbs-item:not(:last-child)::after {
    content: '›';
    margin: 0 8px;
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.breadcrumbs-link {
    color: #E97491;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumbs-link:hover {
    color: #d81b60;
    text-decoration: underline;
}

.breadcrumbs-current {
    color: #3A3C7D;
    font-size: 16px;
    font-weight: 600;
}

/* Стили для страницы статьи */
.article-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.article-main {
    background: #fff;
    border-radius: 8px;
    padding: 40px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    padding: 6px 12px;
    border-radius: 15px;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.article-date {
    color: #666;
    font-size: 14px;
}

.article-views {
    color: #999;
    font-size: 14px;
}

.article-title {
    font-size: 32px;
    font-weight: 600;
    color: #3A3C7D;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-image {
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Стили для HTML контента в статьях */
.article-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    margin-top: 32px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #3A3C7D;
    margin: 32px 0 16px 0;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #E97491;
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

.article-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.article-content li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.article-content strong {
    font-weight: 600;
    color: #3A3C7D;
}

.article-content a {
    color: #E97491;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.article-content a:hover {
    border-bottom-color: #E97491;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.article-content th,
.article-content td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.article-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Боковая панель */
.article-sidebar {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.related-articles,
.recent-articles {
    margin-bottom: 25px;
}

.related-articles h3,
.recent-articles h3 {
    font-size: 18px;
    font-weight: 600;
    color: #3A3C7D;
    margin-bottom: 15px;
}

.related-article,
.recent-article {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
    background: #f8f9fa;
}

.related-link,
.recent-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.related-image,
.recent-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 12px;
}

.related-image img,
.recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content,
.recent-content {
    flex: 1;
}

.related-title,
.recent-title {
    font-size: 14px;
    font-weight: 600;
    color: #3A3C7D;
    line-height: 1.4;
    margin-bottom: 4px;
}

.related-date,
.recent-date {
    font-size: 12px;
    color: #999;
}

/* Галерея */
.article-gallery {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-gallery h3 {
    font-size: 18px;
    font-weight: 600;
    color: #3A3C7D;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-caption {
    padding: 8px 12px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .article-detail-page {
        padding: 10px;
    }
    
    .article-main {
        padding: 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .gallery-item img {
        height: 120px;
    }
}

/* Стили для страниц мальчиков */
.product-boy-page .breadcrumbs-link {
    color: #183663;
}

.product-boy-page .breadcrumbs-link:hover {
    color: #0f2a4a;
}

.product-boy-page .breadcrumbs-current {
    color: #183663;
}

@media (max-width: 768px) {
    .breadcrumbs {
        margin-bottom: 24px;
        padding: 12px 0;
    }
    
    .breadcrumbs-list {
        gap: 6px;
    }
    
    .breadcrumbs-item:not(:last-child)::after {
        margin: 0 6px;
        font-size: 16px;
    }
    
    .breadcrumbs-link,
    .breadcrumbs-current {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-list {
        gap: 4px;
    }
    
    .breadcrumbs-item:not(:last-child)::after {
        margin: 0 4px;
        font-size: 14px;
    }
    
    .breadcrumbs-link,
    .breadcrumbs-current {
        font-size: 13px;
    }
}

.page-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 32px 50px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(24,54,99,0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Шапка */
.header {
    background: #fff;
    padding: 32px 0 32px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 80px;
  min-width: 180px;
}
.logo img {
  max-height: 130px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .logo img {
    max-height: 90px;
  }
}
@media (max-width: 600px) {
  .logo img {
    max-height: 60px;
  }
}
.nav {
  display: flex;
  align-items: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.circle {
  width: 16px;
  height: 16px;
  background: #E97491;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 1024px) {
  .header__inner {
    flex-direction: row;
    gap: 16px;
    padding: 0 20px;
  }
  .logo {
    margin: 0;
    min-width: 140px;
  }
  .logo img {
    max-height: 110px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.03);
  }
  .nav__list {
    gap: 32px;
  }
  .nav__link {
    font-size: 28px;
  }
}

/* Для маленьких ноутбуков - хедер остается в одну строчку */
@media (max-width: 1200px) and (min-width: 1025px) {
  .header__inner {
    flex-direction: row;
    gap: 16px;
    padding: 0 20px;
  }
  .logo {
    margin: 0;
    min-width: 140px;
  }
  .logo img {
    max-height: 100px;
  }
  .nav__list {
    gap: 32px;
  }
  .nav__link {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    flex-direction: row;
    gap: 12px;
    padding: 0 15px;
  }
  .logo {
    margin: 0;
    min-width: 120px;
  }
  .logo img {
    max-height: 90px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.02);
  }
  .nav__list {
    gap: 24px;
  }
  .nav__link {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .header__inner {
    flex-direction: column;
    gap: 16px;
  }
  .logo {
    margin: 16px 0;
  }
  
  .logo img {
    max-height: 85px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.02);
  }
  .nav__list {
    gap: 20px;
  }
  .nav__link {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 16px 0;
  }
  .logo img {
    max-height: 75px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.02);
  }
  .nav__list {
    gap: 12px;
  }
  .nav__link {
    font-size: 18px;
  }
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header__inner > .nav {
    min-width: 320px;
}

.nav--right {
    text-align: right;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav--left .nav__list {
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.nav--right .nav__list {
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.nav__item {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.nav__link {
    color: #1836C1;
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s, text-decoration 0.2s;
    padding-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.nav__link.active, .nav__link:focus, .nav__link:hover {
    color: #0a1e7a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cart-counter {
    background: #ff2222;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 0 7px;
    border-radius: 50%;
    margin-left: 6px;
    min-width: 22px;
    text-align: center;
    display: inline-block;
    line-height: 22px;
    box-shadow: 0 2px 8px rgba(233,116,145,0.15);
    border: 2px solid #fff;
}

/* Кружочки */
.circle {
    width: 18px;
    height: 18px;
    background-color: #E97491;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

/* Футер */
.site-footer {
    background-color: #afbdd4;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 30px 20px;
  }
  
  .footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
  }
  
  /* Левая часть футера */
  .footer-left {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
  }
  
  .footer-socials {
    display: flex;
    gap: 15px;
  }
  
  .footer-socials img {
    width: 28px;
    height: 28px;
  }
  
  .footer-socials a {
    color: #FFFFFF;
    transition: opacity 0.3s ease;
  }
  
  .footer-socials a:hover {
    opacity: 0.7;
  }
  
  .footer-socials i {
    font-size: 28px;
    width: 28px;
    height: 28px;
    display: inline-block;
  }
  
  .footer-legal {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.4;
  }
  
  /* Правая часть футера */
  .footer-right {
    display: flex;
    flex-shrink: 0;
    min-width: 320px;
    gap: 40px;
  }
  
  .footer-contacts {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-contacts a {
    color: white;
    text-decoration: none;
  }
  
  .footer-phone {
    font-size: 16px;
    font-weight: bold;
  }
  
  .footer-email,
  .footer-address {
    font-weight: bold;
  }
  
  /* Политика */
  .footer-policy-column {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    white-space: nowrap;
  }
  
  .footer-policy-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }

  /* Адаптив для футера*/
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
  }

  .footer-policy-column {
    justify-content: flex-start;
  }
}

/* Основной контент */
.main-content {
    padding-top: 60px;
    min-height: 100vh;
    padding: 60px 20px 20px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Текстовые плашки - теперь используются в hero секции */
.text-plate {
    color: white;
    background-color: #FFAFBF;
    font-family: 'Alumni Sans', sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 0;
}

/* Стили для изображений - теперь используются в hero секции */
.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.catalog-plate {
    position: absolute;
    top: 200px;
    right: 25%;
    transform: translateX(-50%);
    font-family: 'Alumni Sans', sans-serif;
    font-size: 46px;
    font-weight: 500;
    color: #3A3C7D; 
    letter-spacing: 1px;
    z-index: 30;
    white-space: nowrap;
    text-decoration: none; 
    display: block;
}

/* Стили для ламы - теперь используются в hero секции */
.lama-image,
.lama-image-home {
    z-index: 2;
}

.lama-image {
    max-width: 250px; 
}

.lama-image-home {
    width: 200px;
}

.lama-image img,
.lama-image-home img {
    width: 100%;
    height: auto;
    display: block;
}

/* Стили для логотипа - теперь используются в hero секции */
.logo-image {
    max-width: 200px;
    z-index: 3;
}

.logo-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Стили для текста по центру - теперь используются в hero секции */
.center-text {
    text-align: center;
    z-index: 3;
}

.center-text-line1 {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #3A3C7D;
    line-height: 1.1;
}

.center-text-line2 {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 26px; 
    color: #3A3C7D;
    line-height: 1.1;
}

/* слайдер */
.slider-section {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: -175px auto 0;
  padding: 0px 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Стиль для слайдера с видео */
.slider-section.video-slider {
  margin: -70px auto 0;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-grow: 1;
  margin: 0 20px;
  height: 520px;
  display: flex;
  align-items: center;
}

.arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow svg {
  width: 32px;
  height: 32px;
  display: block;
}

.arrow.left {
  left: 12px;
}

.arrow.right {
  right: 12px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center; 
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

.slide {
  flex: 0 0 30%;
  margin: 0 5px;
  opacity: 1;
  transform: scale(0.8);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  height: 100%;
  box-sizing: border-box;
  padding: 20px 0;
}

.slide {
  padding-bottom: 30px; 
}

.slide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide img,
.video-wrapper {
  width: 100%;
  max-width: 420px;
  height: 420px;
  border-radius: 19px;
  overflow: hidden;
}

.slide img {
  object-fit: cover;
  height: 420px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 70%;
  height: 0;
  margin-bottom: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 19px;
}

.slide-caption {
  color: #41447C;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
  max-width: 300px;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 1.3;
}

.slide.active {
  transform: scale(1);
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Полоска с градиентом */
.gradient-stripe {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  height: 500px;
  background: linear-gradient(180deg, 
      rgba(255, 255, 255, 1) 0%, 
      rgba(255, 255, 255, 0.95) 10%,
      rgba(135, 206, 235, 0.4) 25%, 
      rgba(135, 206, 235, 0.35) 35%, 
      rgba(135, 206, 235, 0.25) 42%, 
      rgba(135, 206, 235, 0.1) 48%, 
      rgba(255, 255, 255, 0.9) 50%, 
      rgba(255, 255, 255, 0.9) 50%, 
      rgba(255, 220, 230, 0.15) 52%, 
      rgba(255, 200, 220, 0.3) 55%, 
      rgba(255, 182, 193, 0.4) 70%,
      rgba(200, 220, 255, 0.3) 85%,
      rgba(220, 240, 255, 0.6) 90%,
      rgba(240, 248, 255, 0.9) 95%,
      rgba(255, 255, 255, 1) 100%);
  z-index: -5;
  margin-top: -300px;
}

/* Стили для секции с товарами */
.products-section {
    padding: 160px 0 100px;
    position: relative;
    z-index: 1;
    margin-top: -200px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin: 0 auto;
    max-width: 2000px;
    padding: 0 25px 32px 25px;
}

/* ===== НОВАЯ СИСТЕМА КАРТОЧЕК ТОВАРОВ ===== */

.product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 450px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 116, 145, 0.2);
}

.product-card-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 24px 24px 24px;
    box-sizing: border-box;
    margin-top: auto;
}
.product-image {
    width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-align: center;
    padding: 0 24px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
    color: #2c3e50;
}
.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 24px;
    line-height: 1;
}
.catalog-plate {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* Стили для блока с изображением */
.products-section .wide-image {
  grid-column: span 2;
  text-align: center;
  padding-top: 20px;
}

.products-section .wide-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: #3A3C7D;
    width: 100%;
    padding: 0 10px;
    max-width: 250px;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    max-width: 100%;
    height: 300px; 
    object-fit: cover; 
    object-position: center;
    margin-bottom: 15px;
    display: block;
    border-radius: 10px; 
}

.product-title {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0 5px 0;
    line-height: 1.3;
    color: #3A3C7D;
    width: 100%;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #3A3C7D;
    width: 100%;
}

/* Адаптивность */
@media (max-width: 1800px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  
  .product-title {
    font-size: 14px;
  }
  
  .cart-product-price {
    font-size: 16px;
  }
  
  .catalog-item p {
    font-size: 14px;
  }
  
  .catalog-item strong {
    font-size: 16px;
  }
  
  .catalog-item-btns {
    flex-direction: column;
    gap: 6px;
  }
  
  .catalog-item-btns .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-card {
        margin-bottom: 30px;
    }
    
    .product-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
  .slide {
      flex: 0 0 50%;
  }
  
  .slide.active {
      flex: 0 0 70%;
  }
  
  .arrow.left {
      left: 5px;
  }
  
  .arrow.right {
      right: 5px;
  }
}

/* Стили для контактной формы */
.contact-container {
  display: flex;
  min-height: 50vh;
  padding: 0;
  max-width: 2000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.contact-left {
  width: 60%;  
  padding: 40px 40px;  
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

h1 {
  font-size: 36px;
  color: #183663;
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.contact-image-container {
  text-align: right;
  margin: -85px 0;
  position: relative;
  z-index: 1;
}

.contact-middle-image {
  width: 160px;
  height: auto;
}

.contact-left .subtitle {
  font-size: 18px;
  color: #183663;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.contact-left .email {
  font-size: 14px;
  color: #E97491;
  margin: 4px 0;
  font-family: 'Montserrat', sans-serif;
}

.email-address {
  color: #6b6ba5;
}

.contact-left .phone {
  font-size: 14px;
  color: #E97491;
  margin: 4px 0 4px 25px; 
  font-family: 'Montserrat', sans-serif;
}

.phone-number {
  color: #6b6ba5; 
  font-weight: normal;
}

.contact-left .phone span {
  color: #6b6ba5;
  font-weight: 500;
}

.contact-left .form-invite {
  font-weight: 400;
  color: #E97491;
  margin: 30px 0 15px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  border: 2px solid #f28eae;
  border-radius: 15px;
  padding: 12px 14px;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  background-color: #fffbfd;
  color: #333;
}

/* Стили для плейсхолдеров */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #E97491;
  opacity: 1; /* Для Firefox */
}

/* Для старых браузеров */
.contact-form input::-webkit-input-placeholder { color: #E97491; }
.contact-form input::-moz-placeholder { color: #E97491; }
.contact-form input:-ms-input-placeholder { color: #E97491; }
.contact-form input:-moz-placeholder { color: #E97491; }

/* Стили для секции часто задаваемых вопросов */
.faq-section {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
}

.faq-images-container {
  display: flex;
  justify-content: center;
  margin-bottom: -440px;
  position: relative;
  z-index: 0;
  width: 100%;
}

.faq-image-left,
.faq-image-center,
.faq-image-right {
  height: 440px;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0;
}

.faq-image-left,
.faq-image-right {
  width: 40%;
}

.faq-image-center {
  width: auto;
}

@media (max-width: 1200px) {
  .faq-image-left {
    display: none;
  }
  
  .faq-image-center,
  .faq-image-right {
    width: auto;
  }
}

.faq-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section {
  position: relative;
  padding-top: 30px; 
}

.pink-stripe {
  position: absolute;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  height: 3px;
  background-color: #f28eae;
  top: 0;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-headers {
  text-align: center;
  margin-bottom: 30px;
}

.faq-container h2 {
  color: #3A3C7D;
  font-size: 32px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.faq-subheader {
  color: #3A3C7D;
  font-size: 26px;
  font-weight: 400;
  margin-top: 0px;
}

.faq-item {
  margin-bottom: 12px;
  border: 2px solid #f28eae;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fffbfd;
}

.faq-question {
  padding: 10px 18px;
  font-weight: 500;
  color: #d45d7d;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  font-size: 15px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #b84c68; 
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #E97491;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff; 
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  color: #E97491;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Достаточно большое значение для плавного раскрытия */
}

.contact-form textarea::-webkit-input-placeholder { color: #E97491; }
.contact-form textarea::-moz-placeholder { color: #E97491; }
.contact-form textarea:-ms-input-placeholder { color: #E97491; }
.contact-form textarea:-moz-placeholder { color: #E97491; }

.contact-form textarea {
  resize: none;
  height: 90px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  font-size: 12px;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
}

.checkbox-wrapper input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #f28eae;
  border-radius: 4px;
  margin-right: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #f28eae;
}

.checkbox-label a {
  color: #6b6ba5;
  text-decoration: none;
  margin-left: 4px;
}

.contact-form button {
  border: none;
  border-radius: 20px;
  padding: 10px 0;
  background-color: #f9c5d3;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.contact-form button:disabled {
  background-color: #fddfe8;
  color: #f28eae;
  cursor: not-allowed;
}

.contact-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  overflow: hidden;
  padding-left: 20px; 
}

.contact-right img {
  height: 100%;
  max-height: 800px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right center; 
  display: block;
}

/* Контейнер для ламы */
.lama-wrapper {
  position: relative;
  height: 250px; 
  margin-top: -200px;
  margin-bottom: 40px; 
}

/* Стили корзины */
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.titles-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 20px auto 10px;
  padding: 0 20px;
}

.form-title,
.section-title,
.cart-container > h2.section-title {
  font-size: 20px;
  margin: 0;
  color: #183663;
  font-weight: 400;
}

.form-title {
  text-align: left;
  width: 65%;
}

.section-title {
  width: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #8B91A3;
  text-decoration: none;
  transition: color 0.3s;
}

.back-link:hover {
  color: #6B7183;
  text-decoration: underline;
}

.cart-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(65% - 10px);
}

.right-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 35%;
  align-items: flex-end; 
}

/* Плейсхолдеры в корзине */
.cart-container ::placeholder {
  color: rgba(24, 54, 99, 0.7);
  opacity: 1;
}

.cart-container ::-webkit-input-placeholder {
  color: rgba(24, 54, 99, 0.7);
}

.cart-container ::-moz-placeholder {
  color: rgba(24, 54, 99, 0.7);
}

.cart-container :-ms-input-placeholder {
  color: rgba(24, 54, 99, 0.7);
}

.cart-container :-moz-placeholder {
  color: rgba(24, 54, 99, 0.7);
}

/* Правые плашки */
.cart-summary,
.payment-methods {
  width: 100%;
  box-sizing: border-box;
  max-width: 350px; 
}

.cart-box {
  display: flex;
  gap: 20px;
  width: 100%;
}

.cart-left {
  flex: 1; 
  border: 2px solid #8B91A3;
  padding: 15px;
  background: #fff;
  width: 100%; 
}

.cart-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}

.clear-cart {
  color: #e74c3c;
  text-decoration: none;
  font-size: 14px;
}

.clear-cart:hover {
  text-decoration: underline;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

/* Общие стили для изображений товаров */
.product-image {
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 15px;
  display: block;
  border-radius: 10px;
}

/* Стили для изображений товаров в корзине */
.cart-item .product-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  margin-bottom: 0;
}

.product-info p {
  margin: 0;
  line-height: 1.3;
  font-size: 14px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.quantity-btn {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input {
  width: 35px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 2px 5px;
}


.cart-summary {
  border: 2px solid #8B91A3;
  padding: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  height: auto; 
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}

.cart-summary input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  color: #183663;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.submit-order {
  background-color: #8B91A3;
  color: white;
  border: none;
  padding: 10px;
  margin-top: auto;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.submit-order:hover {
  background-color: #6B7183;
}

.form-section {
  width: 100%;
  border: 2px solid #8B91A3;
  padding: 20px;
  background: #fff;
}

.form-box {
  width: 100%;
}

.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.input-row input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #183663;
  background-color: #f8f9fa;
  border-radius: 5px;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  resize: vertical;
  font-family: 'Montserrat', sans-serif;
  color: #183663;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.delivery-options {
  margin: 15px 0;
  display: flex;
  gap: 30px;
}

.delivery-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.policy-confirm {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 15px;
  font-size: 14px;
  color: #E97491;
  white-space: nowrap;
  flex-wrap: wrap;
}

.policy-confirm a {
  color: #183663;
  text-decoration: underline;
  margin-left: 4px;
}

.policy-confirm a:hover {
  text-decoration: underline;
}

.policy-confirm input[type="checkbox"] {
  margin-right: 4px;
}

.payment-methods {
  width: 100%;
  border: 2px solid #8B91A3;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.promo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: -60px;  
  margin-bottom: -60px;
}

.promo-image img {
  max-width: 400px;
  height: auto;
}

.promo-text {
  font-size: 24px;
  color: #8B91A3;
  font-weight: 500;
  line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .left-section,
  .right-section {
    width: 100%;
  }
  
  .cart-box {
    flex-direction: column;
  }
  
  .cart-summary {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .titles-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-title,
  .section-title {
    width: 100%;
    text-align: left;
  }
  
  .input-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .delivery-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .promo-image {
    flex-direction: column;
    text-align: center;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .form-box {
    padding-top: 80px;
  }
  
  .form-lama {
    width: 120px;
    top: -20px;
  }
  
  .cart-box {
    flex-direction: column;
  }
  
  .input-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .delivery-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .cart-item {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .product-info {
    flex: 1;
    min-width: 150px;
  }
  
  .quantity-controls {
    margin: 10px 0;
  }
  
  .cart-summary {
    max-width: 100%;
  }
}

/* Стили для изображения ламы с облаком */
.lama-image {
  position: absolute;
  left: 30px;
  top: 0;
  max-width: 300px; 
  z-index: 2;
}

/* Заголовок видео */
.video-title {
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, -50%);
  color: #41447C;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.lama-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Отступ для секции слайдера */
.slider-section {
  margin-bottom: 10px;
}

/* Стили для страницы блога */
.blog-page {
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero секция */
.blog-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 20px 20px;
}

.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-title {
  font-size: 42px;
  color: #2f2f4f;
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.blog-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

/* Основная сетка статей */
.blog-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 0 20px;
  margin-bottom: 60px;
}

/* Большая карточка слева */
.blog-featured-article {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-featured-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-featured-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-featured-article:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-featured-content {
  padding: 32px;
}

.blog-featured-title {
  font-size: 28px;
  color: #2f2f4f;
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.blog-featured-excerpt {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
  font-family: 'Montserrat', sans-serif;
}

.blog-featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Колонка справа */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-sidebar-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-sidebar-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-sidebar-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-sidebar-article:hover .blog-sidebar-image img {
  transform: scale(1.05);
}

.blog-sidebar-content {
  padding: 20px;
}

.blog-sidebar-title {
  font-size: 16px;
  color: #2f2f4f;
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

.blog-sidebar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Нижний ряд карточек */
.blog-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
  margin-bottom: 60px;
}

.blog-bottom-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-bottom-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-bottom-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-bottom-article:hover .blog-bottom-image img {
  transform: scale(1.05);
}

.blog-bottom-content {
  padding: 20px;
}

.blog-bottom-title {
  font-size: 16px;
  color: #2f2f4f;
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

.blog-bottom-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Общие стили для метаданных */
.blog-article-category {
  background: #E97491;
  color: white;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-article-date {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .blog-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .blog-featured-image {
    height: 350px;
  }
  
  .blog-bottom-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .blog-title {
    font-size: 32px;
  }
  
  .blog-subtitle {
    font-size: 16px;
  }
  
  .blog-main-grid {
    padding: 0 15px;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .blog-featured-content {
    padding: 24px;
  }
  
  .blog-featured-title {
    font-size: 24px;
  }
  
  .blog-sidebar {
    gap: 20px;
  }
  
  .blog-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: 30px 15px;
  }
  
  .blog-title {
    font-size: 28px;
  }
  
  .blog-subtitle {
    font-size: 14px;
  }
  
  .blog-main-grid {
    padding: 0 10px;
  }
  
  .blog-featured-content {
    padding: 20px;
  }
  
  .blog-featured-title {
    font-size: 20px;
  }
  
  .blog-sidebar-content,
  .blog-bottom-content {
    padding: 16px;
  }
  
  .blog-sidebar-title,
  .blog-bottom-title {
    font-size: 14px;
  }
  
  .blog-article-category {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .blog-article-date {
    font-size: 11px;
  }
}

/* Стили для перенаправления блога */
.blog-redirect {
  padding: 80px 20px;
  text-align: center;
}

.blog-redirect-content {
  max-width: 600px;
  margin: 0 auto;
}

.blog-redirect-content h2 {
  font-size: 32px;
  color: #2f2f4f;
  margin: 0 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.blog-redirect-content p {
  font-size: 18px;
  color: #666;
  margin: 0 0 40px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.blog-redirect-btn {
  display: inline-block;
  background: #E97491;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s ease;
}

.blog-redirect-btn:hover {
  background: #d65a7a;
}

/* Стили для ссылок в блоге */
.blog-featured-link,
.blog-sidebar-link,
.blog-bottom-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-featured-link:hover,
.blog-sidebar-link:hover,
.blog-bottom-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Стили для пагинации */
.blog-pagination {
  padding: 40px 20px;
  text-align: center;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination-link {
  color: #E97491;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.pagination-link:hover {
  color: #d65a7a;
}

.pagination-current {
  color: #666;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-left,
  .contact-right {
    width: 100%;
  }
  
  .contact-left {
    padding: 40px 20px;
  }
  
  .contact-right {
    height: 400px;
  }
}

/* Основной макет каталога */
.catalog-layout {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.left-column {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.left-image-container {
  position: relative;
  width: 100%;
  line-height: 0;
}

/* Синяя стрелочка с текстом */
.blue-arrow {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 2;
  color: #3A3C7D;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  text-align: right;
  padding-right: 20px;
  box-sizing: border-box;
  width: 100%;
}

.blue-arrow::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: url('../images/blue-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  margin-top: 5px;
}

.left-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 80px;
}

.bottom-image {
  margin-top: 0;
}


.top-image {
  width: 100%;
}


.bottom-image {
  width: 60%;
  margin-left: 0; 
}


.new-arrivals-section {
  margin-top: -200px;
  margin-right: 40px;
  margin-bottom: 40px;
  background-color: #fff;
}

.new-arrivals-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.new-arrivals-content {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.yellow-arrow-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #A68466;
  margin-right: 20px;
  white-space: nowrap;
}

.yellow-arrow {
  width: 60px;
  height: 60px;
  background-image: url('../images/yellow-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.new-arrivals-image {
  max-width: 300px;
  height: auto;
}

/* Стили для заголовков категорий */
.category-title-section {
  text-align: center;
  background-color: #fff;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.category-title-boy {
  color: #3A3C7D; 
  margin-bottom: 15px;
}

/* Стили для девочек */
.category-title-section-girl {
  margin-top: 60px;
}

.category-title-girl {
  color: #E97491;
  margin-bottom: 15px;
}

.filters-text-girl,
.category-title-section-girl .filters-text {
  color: #E97491;
}

.filters-list-girl .filter-item-girl {
  color: #E97491;
}

.filters-list-girl .filter-item-girl .filter-arrow-girl {
  background-image: url('../images/pink-arrow.png');
  transform: rotate(180deg);
  margin-left: 15px;
}

.catalog-item-girl p,
.catalog-products-girl .catalog-item p {
  color: #E97491;
}

.catalog-item-girl strong,
.catalog-products-girl .catalog-item strong {
  color: #CC7485;
}

/* Текст фильтрации */
.filters-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #3A3C7D;
  text-align: left;
  margin: 10px 0 10px 0;
}

/* Список фильтров */
.filters-list {
  display: flex;
  gap: 30px;
  margin: 0 12px 20px 12px;
}

/* Секция с товарами каталога */
.catalog-products {
  padding: 0px 0;
}

.catalog-grid {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 45px 35px;
  margin-bottom: 40px;
}

.catalog-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 340px;
  transition: box-shadow 0.2s;
  text-align: center;
  width: 100%;
}

.catalog-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.catalog-item img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

.catalog-item p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
  text-align: center;
  color: #3A3C7D;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4;
}

.catalog-item strong {
  font-size: 20px;
  font-weight: 700;
  color: #2f2f4f;
  margin-bottom: 8px;
  text-align: center;
  display: block;
}

.catalog-item-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.catalog-item-btns .btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.catalog-item-btns .btn-more {
  background: #f8f9fa;
  color: #3A3C7D;
  border: 1px solid #e9ecef;
}

.catalog-item-btns .btn-more:hover {
  background: #e9ecef;
}

.catalog-item-btns .btn-cart {
  background: #E97491;
  color: #fff;
}

.catalog-item-btns .btn-cart:hover {
  background: #d65a7a;
}

/* Адаптивность */
@media (max-width: 1800px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .catalog-item {
    margin-bottom: 30px;
  }
  
  .catalog-item:last-child {
    margin-bottom: 0;
  }
  
  .catalog-item p {
    font-size: 14px;
  }
  
  .catalog-item strong {
    font-size: 16px;
  }
}

/* Элемент фильтра */
.filter-item {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #3A3C7D;
  cursor: pointer;
}

/* Стрелочка фильтра */
.filter-arrow {
  width: 50px;
  height: 50px;
  margin-left: 10px;
  background-image: url('../images/blue-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  opacity: 0.8;
}

/* Стили для фотографий в шапке каталога */
.catalog-header-images {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.right-image-container {
  position: relative;
  max-height: 300px;
}

.pink-arrow {
  position: absolute;
  left: 30%;
  bottom: 15%;
  width: 60px;
  height: 60px;
  background-image: url('../images/pink-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pink-arrow::after {
  content: 'Девочкам';
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-105%);
  font-family: 'Montserrat', sans-serif;
  color: #FF6B9C;
  font-size: 32px;
  font-weight: 400;
  white-space: nowrap;
}

.header-image {
  height: 300px;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Первая фотография */
.catalog-header-images img:first-child {
  height: 180px;
  margin-bottom: 20px;
}

/* Адаптивность для фотографий */
@media (max-width: 1024px) {
  .header-image {
    height: 250px;
  }
  .catalog-header-images img:first-child {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .header-image {
    height: 200px;
  }
  .catalog-header-images img:first-child {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .catalog-header-images {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .header-image {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .catalog-header-images img:first-child {
    height: auto;
    margin-bottom: 10px;
  }
}

/* Стили для селектора количества товара */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  height: 40px;
}

.quantity-btn {
  width: 35px;
  height: 100%;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #183663;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  padding: 0;
}

.quantity-btn:hover {
  background: #f5f5f5;
}

.quantity-input {
  width: 40px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  appearance: textfield;
  -moz-appearance: textfield;
  font-weight: 600;
  color: #183663;
  font-size: 16px;
  padding: 0;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Градиентные секции */
.gradient-section {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: -1;
}

.top-gradient {
  background: linear-gradient(to bottom, #FFE6EE, white);
}

.bottom-gradient {
  background: linear-gradient(to bottom, white, #FFE6EE);
  margin-top: -300px;
}

.debut-section-header {
  display: flex;
  align-items: center;
  margin-top: -200px;
}

.debut-arrow {
  width: 60px;
  height: auto;
  margin: 0 30px;
}

.debut-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #74503C;
  margin: 0;
}

.debut-description {
  margin: 30px auto 0;
  padding: 0 30px;
  color: #74503C;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  line-height: 1.6;
  text-align: left;
}

.debut-description p:last-child {
  margin-bottom: 0;
}

/* Стили для "галереи" */
.debut-gallery {
  display: flex;
  justify-content: space-between;
  margin: 60px 30px 0;
  gap: 20px;
}

.gallery-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
}

.gallery-caption span {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #74503C;
  margin-right: 8px;
}

.gallery-arrow {
  width: 16px;
  height: 16px;
  max-width: 50px;
  max-height: 50px;
  opacity: 0.8;
  transform: rotate(180deg);
  position: relative;
}

/* Стили для коллешкина слайдера */
.debut-slider .slider-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #74503C;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.swiper-section {
  padding: 80px 0;
  position: relative;
}

.swiper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

.swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.slide-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.debut-slide .debut-product-info {
  padding: 15px 10px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.debut-slide .debut-product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #74503C;
  margin: 0 0 8px 0;
  line-height: 1.3;
  text-align: center;
}

.debut-slide .debut-product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #74503C;
  margin: 0;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cтрелки */
.custom-prev,
.custom-next {
  width: 80px;
  height: 80px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 200px;
  z-index: 10;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.custom-prev {
  left: 0;
  transform: rotate(90deg);
}

.custom-next {
  right: 0;
  transform: rotate(-90deg);
}

.custom-prev:hover,
.custom-next:hover {
  opacity: 1;
}

.custom-prev img,
.custom-next img {
  height: 42px;
  object-fit: contain;
}

.swiper-slide {
  visibility: hidden;
}

.swiper-slide-visible {
  visibility: visible;
}

/* Блок с тремя изображениями */
.three-images-section {
  text-align: center;
  max-width: 50%;
  margin-top: -260px;
}

.three-images-title {
  position: relative;
  display: inline-block;
}

.three-images-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #74503C;
  margin: 0 0 10px 0;
  position: relative;
  display: block;
}

.three-images-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 10px;
}

.three-images-container .image-block {
  position: relative;
  flex: 1;
  max-width: 160px;
}

.image-bg {
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  background: linear-gradient(to bottom, white, #FFE6EE);
  border-radius: 9px;
  z-index: 1;
}

.three-images-container img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 9px;
  z-index: 2;
}

/* Секция с изображением и текстом */
.debut-image-text-section {
  min-height: 600px;
  padding: 80px 0;
  position: relative;
}

.debut-image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.debut-image-right-block {
  margin-left: auto;
  margin-top: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 300px;
  height: auto;
}

.debut-image-right-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #FFE6EE, white);
  border-radius: 9px;
  z-index: 1;
}

.debut-right-text-block {
  position: relative;
  z-index: 3;
  padding: 20px;
  border-radius: 9px;
  margin-top: 183px;
  right: -270px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.debut-right-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #74503C;
  margin-bottom: 8px;
  line-height: 1.3;
}

.debut-right-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #74503C;
  line-height: 1.5;
}

.debut-right-small-photo {
  width: 160px;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.debut-right-small-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.debut-image-right-img {
  position: relative;
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 9px;
  z-index: 2;
  top: 0px;
  right: 0px;
}

.debut-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 9px;
  z-index: 1;
}

.debut-image-container {
  position: relative;
  width: 240px;
  height: auto;
}

.debut-image-inner-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #FFE6EE, white);
  border-radius: 9px;
  z-index: 1;
}

.debut-featured-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  z-index: 2;
  margin-top: 20px;
  margin-left: 20px;
}

/* Текстовые блоки */
.debut-text-block {
  position: absolute;
  left: 280px; 
  top: 10px;
  color: #74503C;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.debut-text-line1 {
  font-size: 26px;
  font-weight: 500;
  top: 10px;
}

.debut-text-line2 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.about-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 80px;
}

.dots-bg {
  position: absolute;
  top: 58%;
  left: 43%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.photos-container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  max-width: 1200px;
  padding: 40px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3E407E;
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  z-index: 10;
  width: 90%;
  max-width: 500px;
  pointer-events: none;
}

.about-description {
  position: relative;
  color: #3E407E;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  max-width: 640px;
  width: 100%;
  z-index: 10;
  margin: 20px auto 0;
  padding: 0 15px;
}

.threads-text {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #3E407E;
  text-align: center;
  line-height: 1.2;
  max-width: 200px;
  width: 100%;
  z-index: 10;
  margin: 15px auto 0;
}

.photo-container {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  margin-left: 160px;
}

.small-photo-left {
  position: relative;
  max-width: 200px;
  width: 200px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 60px;
}

.small-photo-right {
  position: relative;
  max-width: 200px;
  width: 200px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 20px;
}

.small-photo-left .photo-bg {
  transform: rotate(180deg);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: 0px;
  top: auto;
  bottom: 0px;
}

.small-photo-right .photo-bg {
  transform: rotate(0deg);
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  left: -20px;
  top: -10px;
  bottom: auto;
}

.photo-wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
}

.photo-wrapper.mx-auto {
  max-width: 420px;
  width: 100%;
}

.photo-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  background: linear-gradient(0deg, #ffcce0 0%, #ffffff 100%);
  border-radius: 5px;
  z-index: 1;
}

.mission-photo-main .photo-bg {
  transform: rotate(-1deg);
  width: calc(100% + 1px);
  height: calc(100% + 20px);
  left: 20px;
  top: 0px;
  bottom: auto;
}

.values-photo-main .photo-bg {
  transform: rotate(180deg);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: -20px;
  top: auto;
  bottom: 0px;
}

.values-photo-secondary .photo-bg {
  background: linear-gradient(180deg, #ffcce0 0%, #ffffff 100%);
  top: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 40px);
}

.main-photo {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  z-index: 2;
}

.about-logo {
  position: relative;
  z-index: 50;
  margin: 30px auto 0;
  text-align: center;
}

.about-logo img {
  width: 200px;
  height: auto;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.about-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.mission-content, .values-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.mission-text-block, .values-text-block {
  flex: 1;
  max-width: 500px;
  padding: 0 20px;
}

.mission-text, .values-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #3E407E;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;

}

.mission-photos, .values-photos {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.photo-composition {
  position: relative;
  width: 520px;
  height: 420px;
}

.mission-photo-main, .values-photo-main,
.mission-photo-secondary, .values-photo-secondary {
  position: absolute;
}

.mission-photo-main {
  width: 380px;
  bottom: 0;
  left: 60px;
}

.mission-photo-secondary, .values-photo-secondary {
  position: absolute;
}

.mission-photo-secondary {
  width: 180px;
  right: -140px;
  bottom: 15%;
}

.values-photo-main {
  width: 380px;
  left: -120px;
  top: 20px;
}

.values-photo-secondary {
  width: 190px;
  left: 300px;
  bottom: -10px;
}

.decorative-line {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.mission-line {
  top: 40px;
  left: -50px;
  width: 700px;
  transform: rotate(-5deg);
}

.values-line {
  bottom: -140px;
  right: -50px;
  width: 960px;
  transform: rotate(3deg);
}

.mission-photos img, .values-photos img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .mission-content, .values-content {
    flex-direction: column;
  }
  
  .values-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 15px;
  }
  
  .about-logo {
    position: relative;
    margin: 20px auto 0;
    text-align: center;
  }
  
  .about-logo img {
    width: 120px;
  }
  
  .photo-bg {
    width: calc(100% + 20px);
    height: calc(100% + 10px);
  }

  .mission-content,
  .values-content {
    flex-direction: column;
    gap: 20px;
  }

  .mission-photos,
  .values-photos {
    min-height: auto;
    width: 100%;
  }

  .photo-composition {
    width: 100%;
    height: auto;
    position: relative;
  }

  .mission-photo-main,
  .values-photo-main,
  .mission-photo-secondary,
  .values-photo-secondary {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-bottom: 15px;
  }

  .decorative-line {
    display: none;
  }

  .final-composition-section {
    height: auto;
    padding: 30px 15px;
  }

  .composition-wrapper {
    height: auto;
    position: relative;
  }

  .final-composition-section .photo-wrapper,
  .final-composition-section .composition-text,
  .final-composition-section .decorative-line {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 20px !important;
    transform: none !important;
  }

  .final-composition-section .composition-text {
    padding: 0 15px;
  }

  .final-composition-section .composition-text p {
    font-size: 18px;
  }

  .final-story-section {
    height: auto;
    padding: 30px 15px;
    margin-bottom: 30px;
  }

  .final-story-wrapper {
    height: auto;
    position: relative;
  }

  .final-story-section .final-line-bg {
    display: none;
  }

  .final-story-section .final-logo {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin-bottom: 30px;
  }

  .final-story-section .final-logo img {
    width: 150px;
  }

  .final-story-section .story-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 auto 30px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .final-story-section .story-item h3 {
    font-size: 28px;
  }

  .final-story-section .story-item p {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    margin-top: 15px;
  }

  .story-item-1 .main-photo,
  .story-item-2 .main-photo,
  .story-item-3 .main-photo {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto;
  }
}

.stitch-section, .materials-section {
  position: relative;
  padding: 80px 0;
}

.stitch-content, .materials-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.stitch-text, .materials-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: #3E407E;
  line-height: 1.2;
  font-weight: 500;
}

.stitch-content { align-items: flex-start; }
.stitch-photo-main { max-width: 400px; }
.stitch-right-block { max-width: 450px; }
.stitch-text-block { margin-bottom: 20px; }
.stitch-photos-right {
  position: relative;
  height: 300px;
}
.stitch-photos-right .photo-wrapper {
  position: absolute;
}
.stitch-photo-secondary {
  max-width: 300px;
  left: 0;
  top: 0;
}
.stitch-photo-tertiary {
  max-width: 250px;
  right: -50px;
  bottom: 0;
}
.stitch-line-1 {
  position: absolute;
  width: 450px;
  top: 150px;
  right: 150px;
  z-index: -1;
}

.materials-text-block { max-width: 400px; }
.materials-photo-main { max-width: 320px; }
.materials-line-1 {
  position: absolute;
  width: 300px;
  bottom: 80px;
  left: 250px;
  z-index: -1;
}

.final-composition-section {
  position: relative;
  height: 750px; 
}
.composition-wrapper {
  position: relative;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
}
.final-composition-section .photo-wrapper,
.final-composition-section .composition-text,
.final-composition-section .decorative-line {
  position: absolute;
}
.final-composition-section .composition-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: #3E407E;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
  text-align: center; 
}

/* Позиционирование элементов */
.composition-photo-1 { top: 0; left: 20px; max-width: 340px; z-index: 1; }
.composition-text-1 { top: 30px; left: 500px; max-width: 410px; z-index: 4; }
.composition-photo-2 { top: 180px; left: 410px; max-width: 220px; z-index: 3; }
.composition-photo-3 { top: 160px; left: 82%; max-width: 180px; z-index: 2; }
.composition-line-1 { top: 350px; left: -20px; width: 400px; transform: rotate(0deg); z-index: 0; }

.composition-text-2 { top: 520px; left: 380px; max-width: 320px; z-index: 2; }
.composition-photo-4 { top: 380px; left: 800px; max-width: 280px; z-index: 2; }
.composition-line-2 { top: 170px; left: 550px; width: 400px; transform: rotate(0deg); z-index: 0; }

.composition-photo-1 .photo-bg {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: 53%;
  top: 0px;
  bottom: auto;
}

.composition-photo-3 .photo-bg {
  left: 40%;
  top: -10%;
  width: calc(100% + 10px);
  background: linear-gradient(180deg, #ffcce0 0%, #ffffff 100%);
}

.composition-photo-4 .photo-bg {
  left: 40%;
  width: calc(100% + 10px);
  height: calc(100%);
}

.final-story-section {
  position: relative;
  width: 100%;
  height: 750px; 
  margin-bottom: 100px;
}

.final-story-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.final-story-section .final-line-bg {
  position: absolute;
  top: -300px;
  left: 45%;
  transform: translateX(-50%);
  width: 100%; 
  z-index: 0;
}

.final-story-section .final-logo {
  position: absolute;
  top: -20px;
  left: 0px;
  z-index: 10;
}

.final-story-section .final-logo img {
  width: 240px;
}

.final-story-section .story-item {
  position: absolute;
  text-align: center;
  z-index: 5;
}

.final-story-section .story-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #3E407E;
  font-weight: 400;
  margin: 0; 
}

.final-story-section .photo-wrapper + h3 {
  margin-top: 20px;
}

.final-story-section h3 + .photo-wrapper {
  margin-top: 20px;
}

.final-story-section .story-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: #3E407E;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 25px;
  width: 280px;
}

.story-item-1 { /* Качество */
  top: 300px;
  left: 60px;
}
.story-item-1 .main-photo { width: 240px; }

.story-item-2 { /* Стиль */
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.story-item-2 .main-photo { width: 400px; }

.story-item-3 { /* Забота */
  top: 240px;
  right: 60px;
}
.story-item-3 .main-photo { width: 240px; }

/* --- Стили для мобильного бокового меню --- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #183663;
  border-radius: 2px;
  transition: 0.3s;
}

.side-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 75vw;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 16px rgba(0,0,0,0.08);
  z-index: 2000;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.side-menu.open {
  display: block;
  transform: translateX(0);
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu li {
  margin-bottom: 24px;
}
.side-menu a {
  color: #183663;
  font-size: 22px;
  text-decoration: none;
  font-weight: 500;
}
.close-menu-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #183663;
  cursor: pointer;
}

@media (max-width: 768px) {
  .header__inner {
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    max-width: 100%;
  }
  
  .mobile-menu-btn {
    display: flex;
    order: 1;
  }
  
  .logo {
    order: 2;
    flex: 0 0 auto;
  }
  
  .mobile-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    order: 3;
  }
  
  .mobile-cart-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .mobile-cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #E97491;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border: 2px solid #fff;
    display: none;
  }
  
  .mobile-cart-counter.show {
    display: block;
  }
  
  .nav.nav--left, .nav.nav--right {
    display: none;
  }
  
  .side-menu {
    display: block;
    transform: translateX(-100%);
  }
  
  .side-menu.open {
    transform: translateX(0);
  }
}

@media (min-width: 769px) {
  .side-menu {
    display: none !important;
  }
  .mobile-menu-btn {
    display: none !important;
  }
  .mobile-cart-btn {
    display: none !important;
  }
}

/* --- Вкладки бокового меню --- */
.side-menu-tabs {
  display: flex;
  margin-bottom: 20px;
  gap: 8px;
}
.side-menu-tab {
  flex: 1 1 0;
  background: #f2f2f7;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 0;
  font-size: 18px;
  color: #183663;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.side-menu-tab.active {
  background: #e97491;
  color: #fff;
}
.side-menu-content {
  width: 100%;
}
.side-menu-list {
  list-style: none;
  margin: 0;
  padding: 0 18px 0 28px !important;
  display: none;
}
.side-menu-list.active {
  display: flex;
}

@media (max-width: 600px) {
  .hero-image,
  .logo-image,
  .center-text,
  .lama-image-home,
  .text-plate,
  .catalog-plate {
    position: static !important;
    max-width: 90vw !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto 16px auto !important;
    display: block !important;
    text-align: center !important;
  }

  .logo-image img {
    max-width: 120px !important;
    height: auto !important;
  }

  .center-text-line1,
  .center-text-line2 {
    font-size: 20px !important;
    word-break: break-word;
  }

  .text-plate,
  .catalog-plate {
    font-size: 18px !important;
    padding: 4px 8px !important;
  }

  .lama-image-home img {
    max-width: 100px !important;
  }
}

@media (max-width: 600px) {
  .slider-section {
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
    min-height: 180px;
    position: relative;
    background: none;
  }
  .slider-container, .slider-track {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0;
    height: 180px !important;
    min-height: 120px;
    overflow: hidden;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative;
    background: none;
  }
  .slide, .slide-container {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0;
    height: 180px !important;
    min-height: 120px;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    margin: 0 !important;
    padding: 0 !important;
  }
  .slide img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 0;
    margin: 0 auto;
    display: block;
  }
  .arrow {
    width: 16px !important;
    height: 16px !important;
    background: rgba(255,255,255,0.7) !important;
    border-radius: 50%;
    border: none;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.7;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .arrow.left {
    left: 4px !important;
    right: auto !important;
  }
  .arrow.right {
    right: 4px !important;
    left: auto !important;
  }
  .arrow img {
    width: 14px !important;
    height: 14px !important;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .product-container {
    padding: 12px 4vw !important;
    max-width: 100vw !important;
  }
  .product-main {
    display: block !important;
    gap: 0 !important;
    margin-bottom: 24px !important;
  }
  .product-gallery {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }
  .gallery-img-container {
    width: 100% !important;
    padding-bottom: 100% !important;
    border-radius: 8px !important;
  }
  .gallery-img {
    border-radius: 8px !important;
  }
  .product-info {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .product-info h1 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
    text-align: left !important;
  }
  .product-article {
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }
  .product-info .product-price {
    font-size: 20px !important;
    margin-top: 8px !important;
    text-align: left !important;
  }
  .product-sizes span {
    font-size: 14px !important;
  }

  .product-quantity {
    width: 100% !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }
  .quantity-selector {
    height: 32px !important;
  }
  .quantity-btn {
    width: 20px !important;
    font-size: 16px !important;
  }
  .quantity-input {
    width: 36px !important;
    font-size: 14px !important;
  }
  .cart-button {
    font-size: 14px !important;
    padding: 8px !important;
  }
  .product-description, .product-info h2, .product-info h3 {
    font-size: 15px !important;
    word-break: break-word;
  }
}

@media (max-width: 600px) {
  .recommendation-carousel-wrapper {
    width: 100vw !important;
    margin-left: -4vw !important;
    padding: 0 0 8px 0 !important;
  }
  .recommendation-carousel {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    gap: 12px !important;
    padding: 8px 0 8px 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .recommendation-carousel::-webkit-scrollbar {
    display: none;
  }
  .recommendation-item {
    flex: 0 0 80vw !important;
    max-width: 80vw !important;
    min-width: 220px !important;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 0 !important;
    padding: 8px 8px 16px 8px !important;
    text-align: center !important;
  }
  .recommendation-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
  }
  .carousel-arrow {
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
    top: 45% !important;
    z-index: 2;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .carousel-arrow.left {
    left: 2px !important;
  }
  .carousel-arrow.right {
    right: 2px !important;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 4vw 24px 4vw;
  }
  .product-card {
    padding: 16px 8px 16px 8px;
    min-height: 260px;
  }
  .product-image {
    max-width: 100vw;
    height: 120px;
  }
}

.product-card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}

@media (max-width: 600px) {
  .product-card-buttons {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
}

/* Специальные стили для страницы test.html */
.test-page .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 16px 32px 16px;
}

.test-page .product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 20px 12px 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 320px;
    transition: box-shadow 0.2s;
}

.test-page .product-image {
    width: 100%;
    max-width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.test-page .product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    text-align: center;
}

.test-page .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2f2f4f;
    margin-bottom: 8px;
    text-align: center;
}

/* Адаптивность для test.html */
@media (max-width: 768px) {
    .test-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 12px 24px 12px;
    }
    
    .test-page .product-card {
        padding: 16px 8px 12px 8px;
        min-height: 280px;
    }
    
    .test-page .product-image {
        max-width: 140px;
        height: 140px;
    }
    
    .test-page .product-title {
        font-size: 14px;
    }
    
    .test-page .product-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .test-page .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .test-page .product-card {
        margin-bottom: 20px;
        min-height: 260px;
    }
    
    .test-page .product-card:last-child {
        margin-bottom: 0;
    }
}

/* Стили для пустой корзины */
.empty-cart {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 2px solid #8B91A3;
  border-radius: 8px;
  margin: 20px 0;
}

.empty-cart p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.catalog-link {
  display: inline-block;
  background: #e97491;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.catalog-link:hover {
  background: #d81b60;
}

/* Стили для кнопки удаления товара */
.remove-item-btn {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: background 0.2s;
}

.remove-item-btn:hover {
  background: #c0392b;
}

/* Обновленные стили для товаров в корзине */
.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item .product-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  margin-bottom: 0;
  object-fit: cover;
}

.cart-item .product-info {
  flex: 1;
  min-width: 0;
}

.cart-item .product-info p {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  color: #333;
}

.cart-item .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  height: 32px;
}

.cart-item .quantity-btn {
  width: 24px;
  height: 100%;
  background: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #d81b60;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.cart-item .quantity-btn:hover {
  background: #fce4ec;
}

.cart-item .quantity-input {
  width: 40px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  appearance: textfield;
  -moz-appearance: textfield;
  font-weight: 600;
  color: #d81b60;
  font-size: 14px;
  padding: 0;
}

.cart-item .quantity-input::-webkit-outer-spin-button,
.cart-item .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item .cart-product-price {
  font-weight: 600;
  color: #d81b60;
  font-size: 16px;
  min-width: 80px;
  text-align: right;
}

.cart-item .item-total {
  font-weight: 700;
  color: #d81b60;
  font-size: 18px;
  min-width: 100px;
  text-align: right;
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .page-container {
    padding: 0 2vw !important;
    max-width: 100vw !important;
  }
  
  /* Минимальные исправления для страницы about - только убираем наложения */
  .about-section {
    padding: 20px 0 !important;
  }
  .welcome-text {
    font-size: 24px !important;
    left: 50% !important;
    top: 20% !important;
    transform: translate(-50%, -50%) !important;
    width: 90vw !important;
    max-width: 90vw !important;
  }
  .about-description {
    font-size: 16px !important;
    left: 50% !important;
    top: 60% !important;
    transform: translate(-50%, -50%) !important;
    width: 90vw !important;
    max-width: 90vw !important;
  }
  .threads-text {
    font-size: 12px !important;
    left: 50% !important;
    top: 85% !important;
    transform: translate(-50%, -50%) !important;
    width: 90vw !important;
    max-width: 90vw !important;
  }
  .about-logo {
    left: 50% !important;
    bottom: 20px !important;
    transform: translateX(-50%) !important;
  }
  .about-logo img {
    width: 120px !important;
    height: auto !important;
  }
  
  /* Секции миссии и ценностей - только убираем наложения */
  .mission-content, .values-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .mission-text-block, .values-text-block {
    max-width: 90vw !important;
    padding: 0 2vw !important;
  }
  .mission-text, .values-text {
    font-size: 18px !important;
  }
  .mission-photos, .values-photos {
    min-height: auto !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  .mission-photo-main, .values-photo-main {
    position: static !important;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto 20px auto !important;
  }
  .mission-photo-secondary, .values-photo-secondary {
    position: static !important;
    width: 100% !important;
    max-width: 150px !important;
    margin: 0 auto !important;
  }
  
  /* Финальная композиция - только убираем наложения */
  .final-composition-section {
    height: auto !important;
    padding: 40px 0 !important;
  }
  .composition-wrapper {
    position: static !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
  }
  .composition-photo-1, .composition-photo-2, .composition-photo-3, .composition-photo-4 {
    position: static !important;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
  }
  .composition-text {
    position: static !important;
    max-width: 90vw !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  /* Финальная история - только убираем наложения */
  .final-story-section {
    height: auto !important;
    padding: 40px 0 !important;
    margin-bottom: 40px !important;
  }
  .final-story-wrapper {
    position: static !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
  }
  .story-item {
    position: static !important;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  /* Остальные мобильные стили остаются как есть */
  .text-plate:not(.hero-plates .text-plate), .catalog-plate {
    position: static !important;
    font-size: 16px !important;
    padding: 4px 8px !important;
    margin: 0 auto 8px auto !important;
    display: block !important;
    white-space: normal !important;
    text-align: center !important;
    max-width: 90vw !important;
  }
  /* Старые стили hero секции скрыты на мобильных */
  .hero-image:not(.hero-left .hero-image), 
  .logo-image:not(.hero-logo), 
  .center-text:not(.hero-center), 
  .lama-image-home:not(.hero-lama) {
    position: static !important;
    max-width: 90vw !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto 8px auto !important;
    display: block !important;
    text-align: center !important;
  }
  .logo-image img {
    max-width: 120px !important;
    height: auto !important;
  }
  .center-text-line1, .center-text-line2 {
    font-size: 18px !important;
    word-break: break-word;
  }
  .slider-section {
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
    min-height: 120px;
    position: relative;
    background: none;
  }
  .slider-container, .slider-track {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0;
    height: 120px !important;
    min-height: 80px;
    overflow: hidden;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative;
    background: none;
  }
  .slide, .slide-container {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0;
    height: 120px !important;
    min-height: 80px;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    margin: 0 !important;
    padding: 0 !important;
  }
  .slide img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 120px !important;
    object-fit: cover;
    border-radius: 0;
    margin: 0 auto;
    display: block;
  }
  .arrow {
    width: 16px !important;
    height: 16px !important;
    background: rgba(255,255,255,0.7) !important;
    border-radius: 50%;
    border: none;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.7;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .arrow.left {
    left: 4px !important;
    right: auto !important;
  }
  .arrow.right {
    right: 4px !important;
    left: auto !important;
  }
  .arrow img {
    width: 14px !important;
    height: 14px !important;
    margin: 0;
    padding: 0;
  }
  .products-grid, .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 2vw 16px 2vw !important;
    max-width: 100vw !important;
  }
  .product-card, .catalog-item {
    padding: 12px 4vw !important;
    min-height: 180px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .product-image, .catalog-item img {
    max-width: 100vw !important;
    height: 100px !important;
    object-fit: cover !important;
  }
  .product-title, .catalog-item p, .product-info h1, .product-info h2, .product-info h3 {
    font-size: 15px !important;
    word-break: break-word;
  }
  .product-card-buttons {
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 8px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .cart-button, .add-to-cart-btn {
    font-size: 14px !important;
    padding: 14px 24px !important;
    width: 100% !important;
    max-width: 200px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(135deg, #E97491 0%, #d65a7a 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(233, 116, 145, 0.3) !important;
    height: 48px !important;
    letter-spacing: 0.3px !important;
  }
  .footer-wrapper, .footer-left, .footer-right {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    align-items: flex-start !important;
  }
  .footer-menu, .footer-socials {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .footer-policy-column {
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .faq-images-container {
    display: none !important;
  }
  .three-images-container {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .three-images-container img {
    width: 90vw !important;
    height: auto !important;
    max-width: 100vw !important;
    margin: 0 auto 8px auto !important;
  }
  .faq-section {
    padding: 20px 0 !important;
    overflow-x: hidden !important;
  }
  .pink-stripe {
    width: 100vw !important;
  }
  .faq-container {
    padding: 0 4vw !important;
  }
  .faq-container h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }
  .faq-subheader {
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    font-style: italic !important;
    color: #E97491 !important;
  }
  .faq-headers {
    margin-bottom: 40px !important;
    padding: 20px 0 !important;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(233, 116, 145, 0.1) !important;
  }
  .faq-question {
    font-size: 14px !important;
    padding: 12px 40px 12px 12px !important;
  }
  .faq-answer p {
    font-size: 13px !important;
    padding: 0 12px 12px !important;
  }
  .faq-feedback-form {
    max-width: 100% !important;
  }
  .faq-feedback-form input[type="text"],
  .faq-feedback-form input[type="email"],
  .faq-feedback-form textarea,
  .faq-feedback-form button {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
  }
  .faq-feedback-form input[type="checkbox"] {
    width: auto !important;
    margin-right: 8px !important;
  }
  .faq-feedback-form label {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
  .messages {
    padding: 0 !important;
    margin: 10px 0 !important;
    list-style: none !important;
  }
  .messages li {
    padding: 12px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }
  .contact-container {
    flex-direction: column !important;
    padding: 0 !important;
    max-width: 100vw !important;
  }
  .contact-left {
    width: 100% !important;
    padding: 20px 4vw !important;
    box-sizing: border-box !important;
  }
  .contact-right {
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .contact-left h1 {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }
  .contact-left h2 {
    font-size: 22px !important;
  }
  .contact-left .subtitle {
    font-size: 16px !important;
  }
  .contact-left .email,
  .contact-left .phone {
    font-size: 13px !important;
    margin: 8px 0 !important;
  }
  .contact-left .form-invite {
    font-size: 14px !important;
    margin: 20px 0 10px !important;
  }
  .contact-image-container {
    text-align: center !important;
    margin: 20px 0 !important;
  }
  .contact-image-container img {
    max-width: 80vw !important;
    height: auto !important;
  }
  .contact-right {
    padding: 0 !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
  }
  .contact-right img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 0 !important;
  }
  .cart-box, .cart-sections, .left-section, .right-section {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }
  .cart-summary, .payment-methods {
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .input-row, .delivery-options {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .recommendation-list, .recommendation-carousel {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    overflow-x: auto !important;
  }
  .recommendation-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 auto 8px auto !important;
  }
  .recommendation-img {
    width: 100% !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 600px) {
  .about-section,
  .content-wrapper,
  .photos-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: static !important;
    gap: 20px !important;
    padding: 20px 15px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .welcome-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 15px auto !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .about-description,
  .threads-text {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }
  .photo-container,
  .small-photo-left,
  .small-photo-right {
    position: static !important;
    max-width: 180px !important;
    width: 100% !important;
    margin: 0 auto 15px !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
  }
  .about-logo {
    position: static !important;
    margin: 20px auto 0 !important;
    left: auto !important;
    bottom: auto !important;
  }
  .about-logo img {
    width: 120px !important;
  }
}

/* Side Cart Panel */
.side-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 360px;
  max-width: 95vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 24px rgba(24,54,99,0.10);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
}
.side-cart.open {
  right: 0;
}
.side-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 12px 24px;
  border-bottom: 1px solid #f3e6ee;
}
.side-cart-title {
  font-size: 22px;
  font-weight: 600;
  color: #183663;
}
.side-cart-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #e97491;
  cursor: pointer;
  line-height: 1;
}
.side-cart-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 24px 12px 24px;
}
.side-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.side-cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f8f8fa;
}
.side-cart-item-info {
  flex: 1 1 auto;
}
.side-cart-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #183663;
  margin-bottom: 4px;
}
.side-cart-item-variant {
  font-size: 14px;
  color: #888;
  margin-bottom: 4px;
}
.side-cart-item-qty {
  font-size: 14px;
  color: #666;
}
.side-cart-item-price {
  font-size: 16px;
  font-weight: 600;
  color: #E97491;
  margin-left: 8px;
}
.side-cart-remove-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  transition: color 0.2s;
}
.side-cart-remove-btn:hover {
  color: #E97491;
}
.side-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #f3e6ee;
  margin-top: 16px;
}
.side-cart-total-text {
  font-size: 18px;
  font-weight: 600;
  color: #183663;
}
.side-cart-total-price {
  font-size: 20px;
  font-weight: 700;
  color: #E97491;
}
.side-cart-footer {
  padding: 16px 24px 24px 24px;
  border-top: 1px solid #f3e6ee;
}
.side-cart-checkout {
  width: 100%;
  background: #E97491;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.side-cart-checkout:hover {
  background: #d86582;
}
.side-cart-link {
  display: block;
  text-align: center;
  color: #E97491;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.side-cart-link:hover {
  color: #d86582;
}

/* Стили для страницы товара */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 60%;
    min-width: 500px;
    max-width: 700px;
    flex-shrink: 0;
}

.gallery-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    background: #f8f8f8;
    box-shadow: none;
    margin: 0;
    transition: transform 0.2s;
    position: relative;
}

.gallery-img:not([src]), 
.gallery-img[src=""],
.gallery-img[src*="image.png"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.gallery-img:not([src])::after, 
.gallery-img[src=""]::after,
.gallery-img[src*="image.png"]::after {
    content: "Фото товара";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}
.gallery-img:hover {
    transform: scale(1.03);
}

.product-info {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    padding: 0;
    background: none;
    position: sticky;
    top: 20px;
}
.product-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}
.product-article {
    color: #888;
    font-size: 15px;
    margin-bottom: 18px;
}
.product-info .product-price {
    font-size: 36px;
    color: #E97491;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: left;
    line-height: 1;
}

.product-boy-page .product-info .product-price {
    color: #183663;
}
.size-grid, .color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.size-btn, .color-btn {
    min-width: 56px;
    padding: 12px 8px;
    border: 2px solid #E97491;
    background: #fff;
    color: #E97491;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

/* Улучшения только для мобильных */
@media (max-width: 768px) {
    .size-grid, .color-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 24px;
        width: 100%;
    }
    
    .size-btn, .color-btn {
        width: 100%;
        padding: 14px 12px;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
    }
}

.product-boy-page .size-btn,
.product-boy-page .color-btn {
    border-color: #183663;
    color: #183663;
}
/* Убираем эффект наведения, оставляем только выбранное состояние */
.size-btn.selected, .color-btn.selected,
.size-btn.active, .color-btn.active {
    background: #E97491;
    color: #fff;
    border-color: #E97491;
    box-shadow: 0 2px 8px rgba(233, 116, 145, 0.3);
}

.product-boy-page .size-btn.selected,
.product-boy-page .color-btn.selected,
.product-boy-page .size-btn.active,
.product-boy-page .color-btn.active {
    background: #183663;
    color: #fff;
    border-color: #183663;
    box-shadow: 0 2px 8px rgba(24, 54, 99, 0.3);
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #E97491;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    min-width: 140px;
}

/* Улучшения только для мобильных */
@media (max-width: 768px) {
    .product-quantity {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .product-quantity .cart-button {
        align-self: stretch;
        width: 100%;
        max-width: 100%;
    }
    
    .quantity-selector {
        justify-content: center;
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
}

.product-boy-page .quantity-selector {
    border-color: #183663;
}
.quantity-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    color: #E97491;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

/* Улучшения только для мобильных */
@media (max-width: 768px) {
    .quantity-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
        font-weight: 700;
        transition: all 0.3s ease;
    }
}

.product-boy-page .quantity-btn {
    color: #183663;
}
.quantity-btn:hover {
    background: #E97491;
    color: #fff;
}

.product-boy-page .quantity-btn:hover {
    background: #183663;
    color: #fff;
}
.quantity-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 12px 0;
    background: #fff;
    color: #333;
    outline: none;
}

/* Улучшения только для мобильных */
@media (max-width: 768px) {
    .quantity-input {
        width: 80px;
        font-weight: 700;
    }
}
.cart-button {
    flex: 1;
    background: #e97491;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    padding: 16px 0;
    border: none;
    transition: all 0.2s;
    cursor: pointer;
    margin-left: 16px;
}

/* Улучшения только для мобильных */
@media (max-width: 768px) {
    .cart-button {
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, #E97491 0%, #d65a7a 100%);
        font-size: 18px;
        border-radius: 10px;
        padding: 18px 32px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(233, 116, 145, 0.3);
        margin: 0 auto;
        display: block;
        box-sizing: border-box;
    }
}

.product-boy-page .cart-button {
    background: #183663;
}

.cart-button:hover {
    background: #e97491;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 54, 99, 0.3);
}

.product-boy-page .cart-button:hover {
    background: #0f2a4a;
    box-shadow: 0 4px 12px rgba(24, 54, 99, 0.4);
}

/* Улучшения для мобильных */
@media (max-width: 768px) {
    .product-boy-page .cart-button {
        width: 100% !important;
        max-width: 100% !important;
        background: linear-gradient(135deg, #183663 0%, #0f2a4a 100%) !important;
        font-size: 18px;
        border-radius: 10px;
        padding: 18px 32px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(24, 54, 99, 0.3);
        margin: 0 auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .product-girl-page .cart-button {
        width: 100% !important;
        max-width: 100% !important;
        background: linear-gradient(135deg, #E97491 0%, #d65a7a 100%) !important;
        font-size: 18px;
        border-radius: 10px;
        padding: 18px 32px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(233, 116, 145, 0.3);
        margin: 0 auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .cart-button:hover {
        background: linear-gradient(135deg, #d65a7a 0%, #c44569 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 116, 145, 0.4);
    }
    
    .product-boy-page .cart-button:hover {
        background: linear-gradient(135deg, #0f2a4a 0%, #081c33 100%) !important;
        box-shadow: 0 6px 20px rgba(24, 54, 99, 0.5);
    }
    
    .product-girl-page .cart-button:hover {
        background: linear-gradient(135deg, #d65a7a 0%, #c44569 100%) !important;
        box-shadow: 0 6px 20px rgba(233, 116, 145, 0.4);
    }
}
.cart-button:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
    border: 1px solid #e0e0e0;
}

.product-boy-page .cart-button:disabled {
    background: #f5f5f5;
    color: #999;
    border: 1px solid #e0e0e0;
}

.product-description {
    margin-top: 36px;
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    border-top: 1px solid #eee;
    padding-top: 24px;
}
.product-description h2, .product-description h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #183663;
}
.product-description p {
    margin-bottom: 10px;
}

.product-description-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Характеристики товара */
.specifications-grid {
    display: grid;
    gap: 0;
}

.specification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.specification-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #495057;
    min-width: 140px;
    font-size: 14px;
}

.spec-value {
    color: #183663;
    font-weight: 500;
    text-align: right;
    flex: 1;
    margin-left: 16px;
    font-size: 14px;
}

/* Стили для девочек */
.product-girl-page .spec-value {
    color: #E97491;
}

/* Стили для отзывов */
.reviews-content {
    padding: 20px 0;
    text-align: center;
    color: #666;
}

.reviews-content p {
    margin: 0;
    font-size: 16px;
}

.product-specifications {
    margin-top: 80px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(24,54,99,0.04);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.specifications-tabs-header {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.specifications-tab-btn {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: #999;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.specifications-tab-btn.active {
    color: #183663;
    background: #fff;
    font-weight: 800;
}

.specifications-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #183663;
}

.product-girl-page .specifications-tab-btn.active {
    color: #d81b60;
}

.product-girl-page .specifications-tab-btn.active::after {
    background: #d81b60;
}

.specifications-tabs-content {
    padding: 48px 40px;
}

.specifications-tab-pane {
    display: none;
}

.specifications-tab-pane.active {
    display: block;
}

.product-specifications .specifications-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.product-specifications .specification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.product-specifications .specification-item:last-child {
    border-bottom: none;
}

.product-specifications .specification-item:hover {
    background: linear-gradient(90deg, rgba(24,54,99,0.02) 0%, rgba(24,54,99,0.05) 100%);
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 12px;
}

.product-girl-page .product-specifications .specification-item:hover {
    background: linear-gradient(90deg, rgba(216,27,96,0.02) 0%, rgba(216,27,96,0.05) 100%);
}

.product-specifications .spec-label {
    font-weight: 700;
    color: #183663;
    font-size: 16px;
    min-width: 220px;
    margin-right: 24px;
    font-family: 'Montserrat', sans-serif;
}

.product-girl-page .product-specifications .spec-label {
    color: #d81b60;
}

.product-specifications .spec-value {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    text-align: right;
    flex: 1;
    font-family: 'Montserrat', sans-serif;
}

.product-recommendations {
    margin-top: 60px;
    padding: 0 20px;
}
.product-recommendations h2 {
    text-align: center;
    color: #183663;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.recommendation-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.recommendation-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    padding: 0 10px;
}

.recommendation-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.recommendation-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.recommendation-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommendation-card:hover .recommendation-card-image img {
    transform: scale(1.05);
}

.recommendation-card-content {
    padding: 16px;
}

.recommendation-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2f2f4f;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #E97491;
    margin: 0;
}

.product-boy-page .recommendation-card-price {
    color: #183663;
}

.recommendation-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
}

.recommendation-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f2f4f;
    transition: all 0.3s ease;
    z-index: 2;
}

.recommendation-arrow:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.recommendation-arrow-prev {
    left: -24px;
}

.recommendation-arrow-next {
    right: -24px;
}

.recommendation-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .product-main {
        gap: 40px;
        max-width: 1200px;
    }
    .product-gallery {
        width: 60%;
        min-width: 500px;
        max-width: 700px;
    }
    .product-info {
        max-width: 400px;
        min-width: 300px;
    }
}

@media (max-width: 900px) {
    .product-main {
        flex-direction: column;
        gap: 32px;
    }
    .product-gallery {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .page-container {
        padding: 8px 2vw;
        border-radius: 0;
        box-shadow: none;
    }
    
    .product-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 8px;
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        margin: 0 auto;
    }
    
    .gallery-img-container {
        aspect-ratio: 1;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background: #f8f9fa;
        min-height: 120px;
    }
    
    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        min-height: 120px;
        background: #f8f9fa;
        display: block;
        max-width: 100%;
        max-height: 100%;
    }
    
    .gallery-img:not([src]), 
    .gallery-img[src=""],
    .gallery-img[src*="image.png"] {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6c757d;
        font-size: 0.8rem;
        text-align: center;
        padding: 10px;
    }
    
    .gallery-img:not([src])::after, 
    .gallery-img[src=""]::after,
    .gallery-img[src*="image.png"]::after {
        content: "Фото товара";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #6c757d;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .gallery-zoom-icon {
        width: 28px;
        height: 28px;
        right: 6px;
        bottom: 6px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-zoom-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .product-info {
        max-width: 100vw;
        padding: 0;
    }
    
    .product-info h1 {
        font-size: 1.4rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .product-article {
        font-size: 0.85rem;
        margin-bottom: 10px;
        color: #666;
    }
    
    .product-info .product-price {
        font-size: 1.6rem;
        margin-bottom: 16px;
        text-align: left;
    }
    
    .product-sizes {
        margin-bottom: 16px;
    }
    
    .product-sizes span {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .size-grid, .color-grid {
        gap: 6px;
    }
    
    .size-btn, .color-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: 36px;
    }
    
    .product-quantity {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .quantity-selector {
        justify-content: center;
        max-width: 160px;
        margin: 0 auto;
    }
    
    .quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .quantity-input {
        width: 60px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .cart-button {
        margin-left: 0;
        margin-top: 8px;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .product-description-block {
        margin-top: 20px;
    }
    
    .product-description-block h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .product-description-block h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .product-description-text,
    .product-composition-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .recommendation-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 2vw;
    }
    
    .recommendation-item {
        padding: 8px;
    }
    
    .recommendation-img {
        height: 120px;
        border-radius: 6px;
    }
    
    .recommendation-item p {
        font-size: 0.85rem;
        margin-top: 6px;
    }
    
    .recommendation-item strong {
        font-size: 0.9rem;
    }
    
    .product-specifications {
        margin-top: 30px;
        border-radius: 12px;
    }
    
    .specifications-tabs-header {
        flex-direction: column;
    }
    
    .specifications-tab-btn {
        font-size: 0.9rem;
        padding: 14px 0;
        width: 100%;
    }
    
    .specifications-tabs-content {
        padding: 20px 16px;
    }
    
    .product-specifications .specifications-grid {
        max-width: 100%;
        gap: 10px;
    }
    
    .product-specifications .specification-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 6px;
    }
    
    .product-specifications .spec-label {
        min-width: auto;
        margin-right: 0;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .product-specifications .spec-value {
        text-align: left;
        font-size: 0.85rem;
    }
    
    .product-tabs {
        margin-top: 24px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 12px 0 8px 0;
        width: 100%;
    }
    
    .tabs-content {
        padding: 16px 16px 0 16px;
    }
    
    .specification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 0;
    }
    
    .spec-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .spec-value {
        text-align: left;
        margin-left: 0;
        font-size: 0.85rem;
    }
    
    .show-more-btn {
        grid-column: span 2;
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 6px;
        margin-top: 6px;
    }
    
    /* Хлебные крошки для мобильных */
    .breadcrumbs {
        margin-bottom: 16px;
    }
    
    .breadcrumbs-list {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .breadcrumbs-item:not(:last-child)::after {
        margin: 0 4px;
    }
    
    .breadcrumbs-link,
    .breadcrumbs-current {
        font-size: 0.8rem;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .product-gallery {
        gap: 6px;
        margin: 0 auto;
    }
    
    .gallery-img-container {
        border-radius: 6px;
        background: #f8f9fa;
        min-height: 100px;
    }
    
    .gallery-img {
        border-radius: 6px;
        min-height: 100px;
        background: #f8f9fa;
        display: block;
        max-width: 100%;
        max-height: 100%;
    }
    
    .gallery-img:not([src]), 
    .gallery-img[src=""],
    .gallery-img[src*="image.png"] {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6c757d;
        font-size: 0.7rem;
        text-align: center;
        padding: 8px;
    }
    
    .gallery-img:not([src])::after, 
    .gallery-img[src=""]::after,
    .gallery-img[src*="image.png"]::after {
        content: "Фото товара";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #6c757d;
        font-size: 0.7rem;
        font-weight: 500;
    }
    
    .gallery-zoom-icon {
        width: 24px;
        height: 24px;
        right: 4px;
        bottom: 4px;
    }
    
    .gallery-zoom-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .product-info h1 {
        font-size: 1.3rem;
    }
    
    .product-info .product-price {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .size-btn, .color-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-height: 32px;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .quantity-input {
        width: 50px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .cart-button {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .recommendation-slider {
        padding: 0;
    }
    .recommendation-track {
        gap: 16px;
        padding: 0 5px;
    }
    .recommendation-card {
        flex: 0 0 200px;
    }
    .recommendation-card-image {
        height: 200px;
    }
    .recommendation-card-content {
        padding: 12px;
    }
    .recommendation-card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .recommendation-card-price {
        font-size: 16px;
    }
    .recommendation-arrow {
        width: 40px;
        height: 40px;
    }
    .recommendation-arrow-prev {
        left: -20px;
    }
    .recommendation-arrow-next {
        right: -20px;
    }
    .recommendation-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .specifications-tab-btn {
        font-size: 0.85rem;
        padding: 12px 0;
    }
    
    .specifications-tabs-content {
        padding: 16px 12px;
    }
    
    .product-specifications .spec-label,
    .product-specifications .spec-value {
        font-size: 0.8rem;
    }
    
    .show-more-btn {
        padding: 8px;
        font-size: 0.85rem;
    }
}

/* Горизонтальная ориентация на мобильных */
@media (max-width: 600px) and (orientation: landscape) {
    .product-main {
        flex-direction: row;
        gap: 16px;
        align-items: flex-start;
    }
    
    .product-gallery {
        width: 40%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 4px;
    }
    
    .gallery-img-container {
        min-height: 80px;
        background: #f8f9fa;
    }
    
    .gallery-img {
        min-height: 80px;
        background: #f8f9fa;
        display: block;
        max-width: 100%;
        max-height: 100%;
    }
    
    .product-info {
        width: 60%;
        padding-left: 16px;
    }
    
    .product-info h1 {
        font-size: 1.2rem;
    }
    
    .product-info .product-price {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .product-quantity {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .quantity-selector {
        max-width: 120px;
    }
    
    .cart-button {
        margin-top: 0;
        flex: 1;
    }
    
    .product-specifications {
        margin-top: 20px;
    }
    
    .recommendation-slider {
        padding: 0;
    }
    .recommendation-track {
        gap: 12px;
    }
    .recommendation-card {
        flex: 0 0 160px;
    }
    .recommendation-card-image {
        height: 160px;
    }
    .recommendation-card-content {
        padding: 8px;
    }
    .recommendation-card-title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .recommendation-card-price {
        font-size: 14px;
    }
}

/* Кнопка 'Показать ещё' в галерее товара */
.show-more-btn {
    grid-column: span 2;
    background: #E97491;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 0;
    border: none;
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(24,54,99,0.04);
}
.show-more-btn:hover {
    background: #d65a7a;
}

.color-btn {
    min-width: 48px !important;
    height: 40px !important;
    padding: 0 !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.product-tabs {
  margin-top: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,54,99,0.04);
  padding: 0 0 16px 0;
}
.tabs-header {
  display: flex;
  border-bottom: 1.5px solid #f3c3d1;
  margin-bottom: 0;
}
.tab-btn {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  padding: 16px 0 12px 0;
  cursor: pointer;
  transition: color 0.2s, border 0.2s, background 0.2s;
  border-bottom: 2.5px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tab-btn.active {
  color: #183663;
  border-bottom: 2.5px solid #183663;
  background: #f8f9fa;
}
.tabs-content {
  padding: 24px 24px 0 24px;
}
.tab-pane {
  display: none;
  animation: fadein 0.3s;
}
.tab-pane.active {
  display: block;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-img-container {
  position: relative;
  display: inline-block;
}
.gallery-img {
  cursor: zoom-in;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 10px;
  min-height: 200px;
  background: #f8f9fa;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-img-container:hover .gallery-img {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 4px 24px rgba(24,54,99,0.12);
}
/* Убираю глобальный .gallery-img:hover */

.gallery-zoom-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(24,54,99,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.gallery-img-container:hover .gallery-zoom-icon {
  opacity: 1;
}
.gallery-zoom-icon svg {
  width: 20px;
  height: 20px;
  fill: #E97491;
}

/* Стили для модального zoom-окна */
#imgModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,54,99,0.25);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
#imgModal[style*="display: flex"] {
  display: flex !important;
}
#imgModalContent {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(24,54,99,0.18);
  padding: 24px;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#imgModalImg {
  max-width: 70vw;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(24,54,99,0.10);
  transition: transform 0.3s;
  cursor: zoom-out;
}
#imgModalClose {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: #E97491;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
}

/* Превью изображений в модальном окне */
#imgModalThumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.imgModalThumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  opacity: 0.7;
}

.imgModalThumb:hover {
  opacity: 1;
}

.imgModalThumb.selected {
  border-color: #E97491;
  opacity: 1;
}

/* Стрелки навигации в модальном окне */
.imgModalArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24, 54, 99, 0.8);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background-color 0.2s;
}

.imgModalArrow:hover {
  background: rgba(24, 54, 99, 1);
}

.imgModalArrow.left {
  left: -24px;
}

.imgModalArrow.right {
  right: -24px;
}

.imgModalArrow svg {
  width: 24px;
  height: 24px;
}

/* Стили для страниц мальчиков */
.product-boy-page .imgModalThumb.selected {
  border-color: #183663;
}

.product-boy-page .imgModalArrow {
  background: rgba(24, 54, 99, 0.8);
}

.product-boy-page .imgModalArrow:hover {
  background: rgba(24, 54, 99, 1);
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
  #imgModal {
    padding: 10px;
  }
  
  #imgModalContent {
    padding: 12px;
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 12px;
  }
  
  #imgModalImg {
    max-width: 90vw;
    max-height: 65vh;
    border-radius: 8px;
  }
  
  #imgModalClose {
    top: 12px;
    right: 16px;
    font-size: 28px;
  }
  
  .imgModalArrow {
    width: 44px;
    height: 44px;
  }
  
  .imgModalArrow.left {
    left: -22px;
  }
  
  .imgModalArrow.right {
    right: -22px;
  }
  
  .imgModalArrow svg {
    width: 20px;
    height: 20px;
  }
  
  .imgModalThumb {
    width: 48px;
    height: 48px;
  }
  
  #imgModalThumbs {
    gap: 6px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  #imgModal {
    padding: 5px;
  }
  
  #imgModalContent {
    padding: 8px;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 8px;
  }
  
  #imgModalImg {
    max-width: 95vw;
    max-height: 60vh;
    border-radius: 6px;
  }
  
  #imgModalClose {
    top: 8px;
    right: 12px;
    font-size: 24px;
  }
  
  .imgModalArrow {
    width: 40px;
    height: 40px;
  }
  
  .imgModalArrow.left {
    left: -20px;
  }
  
  .imgModalArrow.right {
    right: -20px;
  }
  
  .imgModalArrow svg {
    width: 18px;
    height: 18px;
  }
  
  .imgModalThumb {
    width: 40px;
    height: 40px;
  }
  
  #imgModalThumbs {
    gap: 4px;
    margin-bottom: 8px;
  }
}

@media (max-width: 360px) {
  #imgModal {
    padding: 2px;
  }
  
  #imgModalContent {
    padding: 6px;
  }
  
  #imgModalImg {
    max-width: 98vw;
    max-height: 55vh;
  }
  
  #imgModalClose {
    top: 6px;
    right: 8px;
    font-size: 20px;
  }
  
  .imgModalArrow {
    width: 36px;
    height: 36px;
  }
  
  .imgModalArrow.left {
    left: -18px;
  }
  
  .imgModalArrow.right {
    right: -18px;
  }
  
  .imgModalArrow svg {
    width: 16px;
    height: 16px;
  }
  
  .imgModalThumb {
    width: 36px;
    height: 36px;
  }
  
  #imgModalThumbs {
    gap: 3px;
    margin-bottom: 6px;
  }
}

/* Горизонтальная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
  #imgModalContent {
    max-height: 95vh;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  
  #imgModalThumbs {
    flex-direction: column;
    margin-bottom: 0;
    margin-right: 8px;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .imgModalThumb {
    width: 40px;
    height: 40px;
  }
  
  #imgModalImg {
    max-width: 70vw;
    max-height: 80vh;
  }
  
  .imgModalArrow {
    width: 36px;
    height: 36px;
  }
  
  .imgModalArrow.left {
    left: -18px;
  }
  
  .imgModalArrow.right {
    right: -18px;
  }
}

/* Синяя цветовая гамма для страницы мальчиков */
.product-boy-page .gallery-zoom-icon svg circle,
.product-boy-page .gallery-zoom-icon svg line {
    stroke: #183663 !important;
}

.product-boy-page .size-btn,
.product-boy-page .color-btn {
    border: 2px solid #183663;
    color: #183663;
}

.product-boy-page .size-btn:hover,
.product-boy-page .color-btn:hover {
    background: #183663;
    color: white;
}

.product-boy-page .size-btn.selected,
.product-boy-page .color-btn.selected {
    background: #183663;
    color: white;
}

.product-boy-page .cart-button {
    background: #183663;
    color: white;
}

.product-boy-page .cart-button:hover {
    background: #0f2a4a;
}

.product-boy-page .cart-button:disabled {
    background: #ccc;
    color: #666;
}

.product-boy-page .tab-btn.active {
    background: #183663;
    color: white;
}

.product-boy-page .tab-btn:hover {
    background: #183663;
    color: white;
}

/* Розовая цветовая гамма для страницы девочек */
.product-girl-page .gallery-zoom-icon svg circle,
.product-girl-page .gallery-zoom-icon svg line {
    stroke: #E97491 !important;
}

.product-girl-page .size-btn,
.product-girl-page .color-btn {
    border: 2px solid #E97491 !important;
    color: #E97491 !important;
    background: #fff !important;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.product-girl-page .size-btn.selected,
.product-girl-page .color-btn.selected,
.product-girl-page .size-btn:active,
.product-girl-page .color-btn:active,
.product-girl-page .size-btn:hover,
.product-girl-page .color-btn:hover {
    background: #E97491 !important;
    color: #fff !important;
    border-color: #E97491 !important;
}

.product-girl-page .cart-button {
    background: #E97491;
    color: white;
}

.product-girl-page .cart-button:hover {
    background: #d65a7a;
}

.product-girl-page .cart-button:disabled {
    background: #ccc;
    color: #666;
}

.product-girl-page .tab-btn.active {
    background: #E97491;
    color: white;
}

.product-girl-page .tab-btn:hover {
    background: #E97491;
    color: white;
}

/* Применяем синие стили к странице product-boy.html */
body:has(.product-container) .gallery-zoom-icon svg circle,
body:has(.product-container) .gallery-zoom-icon svg line {
    stroke: #183663 !important;
}

body:has(.product-container) .size-btn,
body:has(.product-container) .color-btn {
    border: 2px solid #183663;
    color: #183663;
}

body:has(.product-container) .size-btn:hover,
body:has(.product-container) .color-btn:hover {
    background: #183663;
    color: white;
}

body:has(.product-container) .size-btn.selected,
body:has(.product-container) .color-btn.selected {
    background: #183663;
    color: white;
}

/* Удаляем конфликтующий селектор для cart-button */

body:has(.product-container) .tab-btn.active {
    background: #183663;
    color: white;
}

body:has(.product-container) .tab-btn:hover {
    background: #183663;
    color: white;
}

/* --- Розовая тема для девочек --- */
.product-girl-page .product-price {
    color: #E97491;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 18px;
}
.product-girl-page .cart-button,
.product-girl-page .add-to-cart-btn {
    background: #E97491;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: background 0.2s;
}
.product-girl-page .cart-button:hover,
.product-girl-page .add-to-cart-btn:hover {
    background: #d65a7a;
}
.product-girl-page .cart-button:disabled,
.product-girl-page .add-to-cart-btn:disabled {
    background: #ccc;
    color: #fff;
}
.product-girl-page .size-btn,
.product-girl-page .color-btn {
    border: 2px solid #E97491;
    color: #E97491;
    background: #fff;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.product-girl-page .size-btn.selected,
.product-girl-page .color-btn.selected {
    background: #E97491;
    color: #fff;
}
.product-girl-page .size-btn:hover,
.product-girl-page .color-btn:hover {
    background: #E97491;
    color: #fff;
}
.product-girl-page .show-more-btn {
    background: #E97491;
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 18px;
    border-radius: 8px;
    margin-top: 12px;
    margin-bottom: 0;
    transition: background 0.2s;
}
.product-girl-page .show-more-btn:hover {
    background: #d65a7a;
}
.product-girl-page .product-description-block h2,
.product-girl-page .product-description-block h3 {
    color: #E97491;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
}
.product-girl-page .product-description-block h2 {
    font-size: 1.4rem;
}
.product-girl-page .product-description-block h3 {
    font-size: 1.1rem;
}
.product-girl-page .product-composition-text span {
    color: #E97491 !important;
    font-weight: 600;
}

.faq-feedback-form .faq-input, .faq-feedback-form .faq-textarea {
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1em;
  transition: border 0.2s;
}
.faq-feedback-form .faq-input:focus, .faq-feedback-form .faq-textarea:focus {
  border-color: #183663;
  outline: none;
}
.faq-feedback-form .field-error .faq-input,
.faq-feedback-form .field-error .faq-textarea {
  border-color: #E97491;
  background: #fff0f5;
}
.faq-feedback-form .field-error label {
  color: #E97491;
}
.faq-feedback-form .errorlist {
  color: #E97491;
  font-size: 0.98em;
  margin: 4px 0 0 0;
  list-style: none;
  padding: 0;
}



/* --- Минималистичные чекбоксы для фильтров --- */
.filter-content label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
    padding: 4px 0;
    border-radius: 5px;
    font-size: 16px;
    position: relative;
    transition: background 0.18s, color 0.18s;
    user-select: none;
}

.filter-content input[type="checkbox"] {
    accent-color: #e74c8b;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.filter-content input[type="checkbox"]:focus {
    outline: 2px solid #e74c8b44;
}

.filter-content input[type="checkbox"] + span {
    transition: color 0.18s, background 0.18s;
    padding: 2px 6px;
    border-radius: 5px;
}

.filter-content input[type="checkbox"]:checked + span {
    color: #e74c8b;
    font-weight: 600;
    background: #f8e6ef;
}

/* --- Цвета в одну колонку --- */
.color-options {
    /* Возвращаем к обычному списку */
    display: block;
    max-height: 160px;
    overflow-y: auto;
    overflow-x: hidden;
}

.color-options label {
    width: auto;
    white-space: normal;
    align-items: initial;
}

/* --- Эстетичное боковое меню --- */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 16px rgba(0,0,0,0.10);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 0;
  border-radius: 0 18px 18px 0;
}
.side-menu.open {
  transform: translateX(0);
}
.close-menu-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #3A3C7D;
  z-index: 2;
}
.side-menu-tabs {
  display: flex;
  margin: 0 0 18px 0;
  padding: 18px 50px 0 18px;
  background: #fff;
  border-radius: 0 18px 0 0;
  gap: 0;
}
.side-menu-tab {
  flex: 1;
  background: #f5f6fa;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: #3A3C7D;
  padding: 10px 0;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-right: 2px;
}
.side-menu-tab:last-child { margin-right: 0; }
.side-menu-tab.active {
  background: #e9eaf3;
  color: #E97491;
  box-shadow: 0 2px 8px rgba(233,116,145,0.06);
}
.side-menu-content {
  padding: 0 0 24px 0;
}
.side-menu-list {
  list-style: none;
  margin: 0;
  padding: 0 18px 0 28px !important;
  display: none;
}
.side-menu-list.active,
.side-menu-list-filters.active {
  display: block;
}
.side-menu-list li {
  margin: 0 0 8px 0;
}
.side-menu-list a {
  display: block;
  color: #3A3C7D;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.side-menu-list a:hover {
  background: #f8f9fa;
  color: #E97491;
}
@media (max-width: 600px) {
  .side-menu {
    max-width: 98vw;
    border-radius: 0 12px 12px 0;
  }
  .side-menu-tabs {
    padding: 12px 45px 0 8px;
  }
  .side-menu-tab {
    font-size: 15px;
    padding: 8px 0;
  }
  .side-menu-list a {
    font-size: 15px;
    padding: 8px 0 8px 0;
  }
}
/* --- Конец эстетичного бокового меню --- */

@media (max-width: 768px) {
  .about-section, .mission-section, .values-section, .final-composition-section, .final-story-section {
    padding: 24px 0;
  }
  .content-wrapper, .composition-wrapper, .final-story-wrapper {
    flex-direction: column !important;
    padding: 0 8px !important;
    max-width: 100% !important;
  }
  .welcome-text, .about-description, .threads-text, .mission-text, .values-text {
    font-size: 18px !important;
    text-align: center;
    padding: 0 4px;
  }
  .about-logo img, .final-story-section .final-logo img {
    max-width: 120px;
    margin: 16px auto;
    display: block;
  }
  .photo-wrapper, .main-photo {
    max-width: 90vw !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 16px auto !important;
    display: block;
  }
  .photo-bg {
    display: none !important;
  }
  .decorative-line {
    max-width: 80vw;
    width: 100%;
    margin: 12px auto;
    display: block;
  }
  .composition-photo-1, .composition-photo-2, .composition-photo-3, .composition-photo-4 {
    position: static !important;
    max-width: 90vw !important;
    margin: 0 auto 12px auto !important;
  }
  .composition-text, .composition-text-1, .composition-text-2 {
    position: static !important;
    max-width: 100% !important;
    margin: 0 0 12px 0 !important;
    text-align: center !important;
    font-size: 16px !important;
    padding: 0 4px;
  }
  .story-item {
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 24px !important;
    text-align: center;
  }
  .story-item h3, .story-item p {
    font-size: 18px !important;
    margin: 8px 0 !important;
  }
}
@media (max-width: 480px) {
  .about-section, .mission-section, .values-section, .final-composition-section, .final-story-section {
    padding: 12px 0;
  }
  .welcome-text, .about-description, .threads-text, .mission-text, .values-text {
    font-size: 15px !important;
    padding: 0 2px;
  }
  .about-logo img, .final-story-section .final-logo img {
    max-width: 80px;
    margin: 8px auto;
  }
  .photo-wrapper, .main-photo {
    max-width: 98vw !important;
    margin-bottom: 8px !important;
  }
  .decorative-line {
    max-width: 98vw;
    margin: 6px auto;
  }
  .story-item h3, .story-item p {
    font-size: 15px !important;
  }
}

@media (max-width: 600px) {
  .header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    padding: 0 8px;
    min-height: 60px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 8px rgba(58,60,125,0.04);
  }
  .mobile-menu-btn {
    display: block !important;
    background: none;
    border: none;
    margin: 0;
    padding: 0 8px 0 0;
    font-size: 28px;
    z-index: 2;
  }
  .logo {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
    min-width: 0 !important;
  }
  .logo img {
    max-width: 90px !important;
    max-height: 65px !important;
    margin: 0 auto !important;
    display: block !important;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.05);
  }
  .nav--left, .nav--right {
    display: none !important;
  }
  .cart-link, .mobile-cart-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    background: none;
    border: none;
    font-size: 28px;
    margin: 0 0 0 8px;
    padding: 0;
    position: static;
  }
  .mobile-cart-btn {
    margin-left: 8px;
  }

  .about-section, .mission-section, .values-section, .final-composition-section, .final-story-section {
    padding: 10px 0 !important;
    width: 100vw !important;
    min-width: 0 !important;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(58,60,125,0.04);
  }
  .content-wrapper, .composition-wrapper, .final-story-wrapper {
    padding: 0 3vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    background: #fff;
    border-radius: 18px;
  }
  .welcome-text, .about-description, .threads-text, .mission-text, .values-text {
    font-size: 16px !important;
    text-align: center !important;
    padding: 0 2vw !important;
    margin: 14px 0 10px 0 !important;
    line-height: 1.5 !important;
    color: #3A3C7D;
    background: #f8f8fa;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(233,116,145,0.04);
  }
  .about-logo img, .final-story-section .final-logo img {
    max-width: 70px !important;
    margin: 10px auto !important;
    display: block !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(58,60,125,0.07);
    background: #fff;
  }
  .photo-wrapper, .main-photo {
    max-width: 94vw !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 14px auto !important;
    display: block !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 16px rgba(58,60,125,0.08);
    background: #fff;
  }
  .photo-bg, .decorative-line,
  img[alt*="сосисок"], img[alt*="line"], img[alt*="линия"], img[alt*="dots"], img[alt*="Декор"], img[alt*="decor"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
  }
  .composition-photo-1, .composition-photo-2, .composition-photo-3, .composition-photo-4 {
    position: static !important;
    max-width: 94vw !important;
    margin: 0 auto 8px auto !important;
  }
  .composition-text, .composition-text-1, .composition-text-2 {
    position: static !important;
    max-width: 100% !important;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    font-size: 15px !important;
    padding: 0 2vw !important;
    color: #3A3C7D;
    background: #f8f8fa;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(233,116,145,0.04);
  }
  .story-item {
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(58,60,125,0.04);
    padding: 10px 0;
  }
  .story-item h3, .story-item p {
    font-size: 15px !important;
    margin: 6px 0 !important;
    color: #3A3C7D;
  }
  .main-photo, .story-item img {
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(233,116,145,0.07);
    background: #fff;
  }
  .about-section, .mission-section, .values-section, .final-composition-section, .final-story-section {
    box-shadow: 0 2px 12px rgba(58,60,125,0.04);
  }
}

@media (max-width: 900px) {
  .decorative-line,
  img[alt*="сосисок"],
  img[alt*="line"],
  img[alt*="линия"],
  img[alt*="dots"],
  img[alt*="Декор"],
  img[alt*="decor"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
  }
}
