/* ===== Брендбук Петровчанка ===== */

 @font-face {
        font-family: 'Alumni Sans';
        src: url('fonts/Alumni Sans/AlumniSans-VariableFont_wght.ttf') format('truetype');
        font-weight: 100 900;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'Alumni Sans';
        src: url('fonts/Alumni Sans/AlumniSans-Italic-VariableFont_wght.ttf') format('truetype');
        font-weight: 100 900;
        font-style: italic;
        font-display: swap;
    }
    
    /* Подключение PF Scandal Pro */
    @font-face {
        font-family: 'PF Scandal Pro';
        src: url('fonts/PF Scandal Pro Font Family/PF Scandal Pro Regular.otf') format('opentype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'PF Scandal Pro';
        src: url('fonts/PF Scandal Pro Font Family/PF Scandal Pro Bold.otf') format('opentype');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'PF Scandal Pro';
        src: url('fonts/PF Scandal Pro Font Family/PF Scandal Pro Black.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
        font-display: swap;
    }
    
    /* Подключение Gotham Pro */
    @font-face {
        font-family: 'Gotham Pro';
        src: url('fonts/Gotham Pro/gothampro.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'Gotham Pro';
        src: url('fonts/Gotham Pro/gothampro_bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'Gotham Pro';
        src: url('fonts/Gotham Pro/gothampro_light.ttf') format('truetype');
        font-weight: 300;
        font-style: normal;
        font-display: swap;
    }

:root {
    /* Цветовая палитра из брендбука */
    --primary: #D6D1A8;    /* оливково-бежевый - натуральность, спокойствие */
    --primary-dark: #C2BD97;
    --primary-light: #E8E5D8;
    --accent: #C77A5B;     /* терракотовый - земля, тепло */
    --accent-dark: #B06A4C;
    --accent-light: #E8C4B5;
    --neutral: #474747;    /* графитовый - баланс, современность */
    --neutral-light: #6B6B6B;
    --light: #F8F6F1;      /* молочный фон - чистота, мягкость */
    --light-alt: #F1EEE6;
    
    /* Дополнительные цвета */
    --shadow: 0 4px 20px rgba(71, 71, 71, 0.08);
    --shadow-hover: 0 8px 30px rgba(199, 122, 91, 0.15);
    --border: 1px solid rgba(214, 209, 168, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --transition-slow: all 0.6s ease;
}

/* ===== Базовые стили ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral);
    background-color: var(--light);
    overflow-x: hidden;
    position: relative;
}

/* Фоновый паттерн */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern-colos.png');
    background-repeat: repeat;
    background-size: 400px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -2;
    mix-blend-mode: multiply;
}

/* Графический элемент - лист */
.decorative-leaf {
    position: fixed;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background-image: url('images/decorative-leaf.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* ===== Типографика из брендбука ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Alumni Sans', cursive;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.tagline {
    font-family: 'PF Scandal Pro', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--neutral-light);
    opacity: 0.9;
}

/* Для заголовков с жирным начертанием */
.section-title {
    font-family: 'Alumni Sans', cursive;
    font-weight: 400;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    display: block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--neutral-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Gotham Pro', sans-serif; /* Изменил на Gotham Pro */
}

.section-title.extra-bold {
    font-family: 'PF Scandal Pro', serif;
    font-weight: 900; /* Используем Black */
}

.philosophy-subtitle {
    font-family: 'Gotham Pro', sans-serif; /* Изменил на Gotham Pro */
    font-weight: 500;
    color: var(--neutral);
    text-align: center;
    margin: 1rem 0 2rem;
    font-size: 1.3rem;
    position: relative;
    padding: 0 20px;
    line-height: 1.4;
}

.philosophy-subtitle:before,
.philosophy-subtitle:after {
    content: "";
    margin: 0;
}

/* ===== Шапка ===== */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.brand-text .tagline {
    font-family: 'PF Scandal Pro', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent); /* Терракотовый цвет */
    text-align: center;
    line-height: 1.3;
    transform: rotate(-2deg);
    margin-top: 0.5rem;
}

/* Навигация */
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

/* ===== Основной контент ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main.container {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/* Декоративная линия */
.decorative-line {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        var(--accent), 
        var(--primary), 
        transparent
    );
    margin: 2rem auto 3rem;
    max-width: 800px;
}

/* ===== Фильтры ===== */
.filters-section {
    text-align: center;
    margin-bottom: 3rem;
}

.filters-section,
.reviews-section,
.about-section {
    text-align: center;
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: var(--border);
    box-shadow: var(--shadow);
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--neutral);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Gotham Pro', sans-serif;
    font-size: 0.95rem;
}

.filter-btn i {
    font-size: 0.9rem;
    color: var(--accent);
}

.filter-btn:hover {
    background: rgba(214, 209, 168, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--neutral);
    box-shadow: 0 4px 12px rgba(214, 209, 168, 0.3);
}

.filter-btn.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ===== Карточки товаров ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: var(--border);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ===== Карточки товаров ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Увеличил минимальную ширину */
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: var(--border);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(199, 122, 91, 0.4);
}

.product-image {
    position: relative;
    height: 350px; 
    background: linear-gradient(135deg, var(--light) 0%, #f0ede4 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0; /* Чтобы изображение не сжималось */
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-image img {
    max-width: 85%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-slow);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.05); /* Чуть увеличиваем масштаб при наведении */
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.origin-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(199, 122, 91, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    opacity: 0.7;
}

/* Информация о товаре */
.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--neutral);
    flex-grow: 1;
    margin-right: 0.5rem;
}

.product-rating {
    color: #FFC107;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.product-description {
    color: var(--neutral-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    background: var(--light);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--neutral);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(214, 209, 168, 0.3);
}

.meta-item i {
    color: var(--accent);
    font-size: 0.8rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: var(--border);
}

/* Кнопка покупки */
.wb-button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Gotham Pro', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.wb-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.6s;
}

.wb-button:hover::before {
    left: 100%;
}

.wb-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 122, 91, 0.3);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

/* ===== Состояние "нет товаров" ===== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary);
    margin: 2rem 0;
}

.empty-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neutral);
}

.empty-state p {
    color: var(--neutral-light);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: var(--neutral);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.action-btn:hover {
    background: transparent;
    color: var(--neutral);
}

/* ===== Призыв к действию ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(214, 209, 168, 0.1) 0%, rgba(199, 122, 91, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border: var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--neutral);
}

.cta-content p {
    color: var(--neutral-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

/* ===== Футер ===== */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0 2rem;
    border-top: var(--border);
    color: var(--neutral);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.footer-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--neutral);
    font-family: 'Alumni Sans', cursive;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--neutral);
    font-family: 'Gotham Pro', sans-serif;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex: 2;
    justify-content: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 180px;

}

.footer-column h4 {
    font-family: 'Alumni Sans', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--neutral);
    border-bottom: 2px solid rgba(199, 122, 91, 0.3);
    padding-bottom: 0.5rem;
}

.footer-column a {
    text-decoration: none;
    color: var(--neutral);
    font-family: 'Gotham Pro', sans-serif;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
}

.footer-column a:hover {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(71, 71, 71, 0.2);
}

.legal-info {
    text-align: center;
    color: var(--neutral);
    opacity: 0.9;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.legal-info p {
    margin: 0.8rem 0;
}

.legal-info strong {
    color: var(--neutral);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Кнопки действий ===== */
.telegram-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
    border: 2px solid white;
    z-index: 100;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
}

.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--neutral);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* ===== Вспомогательные классы ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Стили для отзывов */
.desktop-review, .mobile-review {
    transition: all 0.3s ease;
}

/* По умолчанию показываем desktop отзывы (на случай, если JS отключен) */

.desktop-review{
    display: block;
}

/* Класс для скрытия отзывов */
.review-item.hidden {
    display: none;
}

/* Плавное появление/исчезновение */
.review-item {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Адаптивность ===== */
@media (max-width: 1024px) {
    /* Для планшетов */
    header {
        padding: 1rem 0;
        position: relative;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    header {
        position: relative;
        padding: 0.8rem 0;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .brand-logo {
        height: 50px;
    }

    .tagline {
        font-size: 1rem;
        margin-top: 0.3rem;
        line-height: 1.2;
    }

    .main-nav {
        margin-top: 0.5rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }

    .section-title {
        font-size: 2rem;
        display: block;
        width: 100%;
    }
    
    .filters {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image {
        height: 350px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .category-link {
        position: relative;
        transition: all 0.3s ease;
    }

    .category-link:hover {
        color: var(--accent) !important;
        padding-left: 8px;
    }

    .category-link:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--accent);
        transition: width 0.3s ease;
    }

    .category-link:hover:after {
        width: 100%;
    }
    
    .wb-button {
        text-align: center;
        justify-content: center;
    }
    
    .telegram-button span.button-text {
        display: none;
    }
    
    .telegram-button {
        padding: 1rem;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }
    
    .filter-text {
        display: inline-block;
    }
    
    .wb-button .button-text {
        display: inline-block;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {

    .brand-logo {
        height: 40px;
    }
    
    .tagline {
        font-size: 0.9rem;
        display: none; /* Скрываем слоган на очень маленьких экранах */
    }
    
    .main-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.2rem 0.4rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .filter-btn i {
        margin: 0;
    }

    .filter-text {
        display: inline-block;
    }
    
    .wb-button .button-text {
        display: none;
    }
    
    .wb-button {
        padding: 0.8rem;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
    
    .brand-logo {
        height: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
        display: block;
        width: 100%;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }    
}

/* Анимации для интерактивности */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}