/* Исправления стилей для сайта Faretti */

/* Базовые исправления */
.always-visible,
.product-card,
.product-grid,
.about-content,
.about-text,
.about-image,
.timeline,
.timeline-item {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.product-grid {
    display: grid !important;
}

.about-content {
    display: flex !important;
}

/* Исправления для шапки */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #000;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Исправления для навигации */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 10px;
}

.nav-item.active a {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-item.active a:before {
    width: 80%;
    opacity: 1;
}

/* Исправления для мобильного меню */
@media screen and (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 30px 30px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .main-nav li {
        width: 100%;
        margin: 5px 0;
    }
    
    .main-nav a {
        padding: 12px 0;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--secondary-color);
        text-shadow: none;
    }
    
    .main-nav a:hover,
    .nav-item.active a {
        color: var(--primary-color);
    }
}

/* Дополнительные исправления для мобильного меню */
@media (max-width: 768px) {
    .main-nav.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-item a {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Убираем возможное наложение других элементов на меню */
    .main-nav.active {
        z-index: 999 !important;
    }
    
    /* Убеждаемся что ссылки в меню кликабельны */
    .main-nav.active a {
        position: relative !important;
        z-index: 1000 !important;
    }
}

/* Стили для затемнения фона при открытии мобильного меню */
body.menu-open:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Предотвращаем прокрутку при открытом меню */
body.menu-open {
    overflow: hidden;
}

/* Исправления для секций */
.hero-content,
.section-header,
.advantage-item,
.product-card,
.store-item,
.brand-story,
.production-wrapper,
.contact-cards,
.footer-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Исправления для эффектов наведения */
.nav-item:hover,
.store-item:hover,
.product-card:hover,
.advantage-item:hover {
    transform: translateY(-5px) !important;
    transition: transform 0.3s ease !important;
}

/* Исправления для подчеркивания ссылок */
.main-nav a:hover:before,
.nav-item.active a:before {
    width: 80%;
    opacity: 1;
}

/* УЛУЧШЕННЫЕ исправления для первого экрана (Hero Section) */
.hero {
  /*  min-height: 100vh;*/
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 120px 0 60px;
    overflow: hidden;
}

/* Добавляем темный оверлей для читаемости текста */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content img.hero-logo {
    max-width: 280px;
    margin: 0 auto 30px;
    display: block;
    animation: pulsate 3s infinite alternate;
}

.hero-content p {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .btn-primary {
    box-shadow: 0 5px 15px rgba(0, 178, 176, 0.3);
    animation: buttonPulse 2s infinite;
}

.hero-decorative {
    position: absolute;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-decorative-left {
    left: 5%;
    top: 30%;
    animation-delay: 0.5s;
}

.hero-decorative-right {
    right: 5%;
    bottom: 30%;
    animation-delay: 1s;
}

.hero-particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: 1;
}

.hero-particle-1 {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 10%;
    animation: floatParticle 8s ease-in-out infinite;
}

.hero-particle-2 {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 20%;
    animation: floatParticle 6s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-particle-3 {
    width: 20px;
    height: 20px;
    top: 40%;
    right: 15%;
    animation: floatParticle 10s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-particle-4 {
    width: 12px;
    height: 12px;
    bottom: 20%;
    right: 30%;
    animation: floatParticle 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Анимации для hero секции */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(15px);
    }
    50% {
        transform: translateY(0) translateX(30px);
    }
    75% {
        transform: translateY(15px) translateX(15px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 178, 176, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 25px rgba(0, 178, 176, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 178, 176, 0.3);
    }
}

/* Исправления для коммерческой службы (Contacts) */
.contacts {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    display: block !important;
}

.contacts:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-bg.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.contact-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 1s forwards;
    animation-fill-mode: both;
    opacity: 0;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.5s;
}

.contact-card:nth-child(4) {
    animation-delay: 0.7s;
}

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

.contact-card-icon {
    width: 0;
    height: 0;
    margin: 0;
    display: none;
    visibility: hidden;
}

.contact-card:hover .contact-card-icon {
    display: none;
    visibility: hidden;
}

.contact-card-icon .material-symbols-outlined {
    opacity: 0;
    display: none;
    visibility: hidden;
}

.contact-card:hover .contact-card-icon .material-symbols-outlined {
    opacity: 0;
    display: none;
    visibility: hidden;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 20px;
}

.contact-card p {
    margin-bottom: 10px;
    color: #666;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-card a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-card a:hover:after {
    width: 100%;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Исправления для футера */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    display: block !important;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/footer-bg-pattern.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo h2 {
   /* color: #fff;*/
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-nav-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-nav-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-nav a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover:after {
    width: 100%;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: #999;
    margin: 0;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.footer-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.footer-back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .hero-content img.hero-logo {
        max-width: 220px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        margin-bottom: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Дополнительные улучшения для поддержки различных браузеров */
@-moz-document url-prefix() {
    .hero, .contacts, .footer {
        display: block !important;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .hero, .contacts, .footer {
            display: block !important;
        }
    }
} 

/* Общие улучшения - исправления для всех блоков */
section, footer {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Белый фон для всей страницы, кроме футера */
body {
    background-color: #fff;
}

/* Изменение сетки для линейки Classico - 4 карточки в строку */
.product-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media screen and (max-width: 1200px) {
    .product-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .product-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .product-catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* Центрирование карточек в линейках CLASSICO и UNO */
.product-catalog-details {
    text-align: center;
}

/* Скрытие заголовка мини-порций CLASSICO */
#classico-catalog .section-header:has(h3.uppercase-title:contains("Мини-порции CLASSICO")) {
    display: none;
}

/* Принудительное отображение для всех блоков */
.all-visible section,
.all-visible footer,
.all-visible .hero,
.all-visible .contacts,
.all-visible .footer {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.product-grid, 
.footer-content, 
.contact-cards {
    display: grid !important;
}

/* Стили для карточек продуктов */
.product-card {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.product-image-frame {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





/* Изображения для продуктов Uno */
#uno .product-card:nth-child(1) .product-image-frame {
 /*   background-image: url('images/uno-1.jpg');*/
}

#uno .product-card:nth-child(2) .product-image-frame {
  /* background-image: url('images/uno-2.jpg');*/
}



.product-card .product-info {
    padding: 20px;
    text-align: center;
}

.product-card .product-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: var(--secondary-color);
}

.product-card .product-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Эффекты для карточек товаров */
.product-card:hover .product-image-frame:before {
    opacity: 1;
}

.product-image-frame:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0.7;*/
    transition: opacity 0.3s ease;
}

/* Обновленный стиль для блока "История бренда" */
.about {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to right, #f9f9f9 0%, #f1f2f3 100%);
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about .section-header {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.about .section-header h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about .section-header h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 400;
   /* text-transform: uppercase;*/
    letter-spacing: 1px;
}

/* Новая структура блока бренда */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.brand-story-content {
    padding-right: 30px;
}

.brand-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.brand-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-story-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.brand-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.brand-story-image:hover img {
    transform: scale(1.05);
}

.brand-story-cta {
    margin-top: 30px;
}

.brand-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.brand-link:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 178, 176, 0.2);
}

/* Декоративные элементы */
.brand-decoration {
    position: absolute;
    z-index: 1;
}

.decoration-left {
    left: 5%;
    top: 20%;
    opacity: 0.6;
    transform: rotate(-10deg);
    animation: float 6s ease-in-out infinite;
}

.decoration-right {
    right: 5%;
    bottom: 20%;
    opacity: 0.6;
    transform: rotate(10deg);
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.decoration-left img, .decoration-right img {
    max-width: 80px;
    opacity: 0.7;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-10deg);
    }
}

/* Адаптивность */
@media screen and (max-width: 992px) {
    .brand-story {
        grid-template-columns: 1fr;
    }
    
    .brand-story-content {
        padding-right: 0;
        order: 2;
    }
    
    .brand-story-image {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about .section-header h2 {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .brand-story-content p {
        font-size: 15px;
    }
    
    .brand-decoration {
        display: none;
    }
}

/* Остальные стили */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-size: 24px;
}

/* Стили для блока "О производстве" */
.production {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.production-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.production-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.production-text {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.production-button-container {
    text-align: center;
    margin-top: 10px;
}

.production-button-container .btn {
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .production {
        padding: 60px 0;
    }
    
    .production-text {
        font-size: 1.1rem;
    }
}

/* Стили для блока "История бренда" */
.about-header {
    margin-bottom: 50px;
    text-align: center;
}

.title-separator {
    width: 80px;
    height: 4px;
    background-color: #c19977;
    margin: 20px auto 0;
}

/* Стили для блока "Наши торговые партнеры" */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-top: 40px;
    max-width: 1100px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.partner-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-icon {
    display: none;
    visibility: hidden;
    margin: 0;
}

.partner-name {
    font-size: 16px;
    color: #333;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }
    
    .partner-name {
        font-size: 14px;
    }
}

/* Принудительное применение шрифта TT Livret для акцентных элементов */
.accent-text, 
blockquote, 
.quote, 
em, 
.subtitle, 
.section-subtitle,
.italic-text {
    font-family: 'TT Livret', serif !important;
    font-style: italic !important;
}