/* ===== УЛУЧШЕННАЯ РЕКЛАМНАЯ ПОЛОСА ===== */
.advertisement-bar {
    color: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    width: 100%;
    background: #000000;
}

.advertisement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    font-family: inherit;
}

.advertisement-text-left,
.advertisement-text-center, 
.advertisement-text-right {
    flex: 1;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: inherit;
}

.advertisement-text-left {
    text-align: left;
}

.advertisement-text-right {
    text-align: right;
}

.advertisement-text-center {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.ad-font-system {
    font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

.ad-font-dancing-script {
    font-family: 'Dancing Script', cursive !important;
}

.ad-font-great-vibes {
    font-family: 'Great Vibes', cursive !important;
}

.ad-font-parisienne {
    font-family: 'Parisienne', cursive !important;
}

.ad-font-sacramento {
    font-family: 'Sacramento', cursive !important;
}

.ad-font-lobster {
    font-family: 'Lobster', cursive !important;
}

.ad-font-cursive {
    font-family: cursive !important;
}

.ad-font-fantasy {
    font-family: fantasy !important;
}

/* ===== ОСНОВНОЙ ХЕДЕР ===== */
.premium-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
}

/* КРУГЛЫЙ ЛОГОТИП */
.header-logo {
    flex-shrink: 0;
    margin-right: 5px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a81cc8, #46047B);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(168, 28, 200, 0.3);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(168, 28, 200, 0.4);
}

.logo-letter {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== КНОПКА ACTION MENU ===== */
.action-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border: none;
    padding: 12px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    white-space: nowrap;
    margin-right: auto;
}

.action-menu-toggle:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-bar {
    width: 18px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-text {
    font-size: 1.3rem;
}

/* Поиск - ЦЕНТРИРУЕМ */
.header-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.search-form-premium {
    display: flex;
    background: white;
    border: 2px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    align-items: stretch;
    position: relative;
}

.search-form-premium:focus-within {
    border-color: #a81cc8;
    box-shadow: 0 4px 15px rgba(168, 28, 200, 0.2);
}

.search-input-premium {
    flex: 1;
    padding: 12px 18px 12px 45px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    background: transparent;
    margin: 0;
    border-radius: 0;
    line-height: 1.5;
    width: 100%;
}

/* Стильная иконка лупы через CSS */
/* ИКОНКА ЛУПЫ - замените этот блок */
.search-form-premium::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 15px;
    border: 3px solid #999;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.search-form-premium::after {
    content: '';
    position: absolute;
    left: 31px;
    top: calc(50% + 7px); /* Чуть выше (компромиссный вариант) */
    width: 2px;
    height: 9px;
    background: #999;
    transform: rotate(-48deg);
    transform-origin: top left;
    pointer-events: none;
    z-index: 1;
}

.search-form-premium:focus-within::before {
    border-color: #a81cc8;
}

.search-form-premium:focus-within::after {
    background: #a81cc8;
}

/* Скрываем кнопку */
.search-btn-premium {
    display: none;
}

/* Правая часть хедера */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Кнопка входа */
.auth-btn {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #000000;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.auth-btn:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

/* Корзина */
.cart-btn-premium {
    position: relative;
    background: rgba(139, 69, 19, 0.1);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.cart-btn-premium:hover {
    background: rgba(139, 69, 19, 0.2);
    color: #8B4513;
    transform: translateY(-2px);
}

.cart-count-premium {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #46047B;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* ===== НАВИГАЦИОННАЯ ПОЛОСА ===== */
.navigation-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 2rem;
}

.nav-container-premium {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 12px 0;
}

.nav-link-premium {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 20px;
    position: relative;
}

.nav-link-premium:hover {
    color: #000000;
    background: rgba(139, 69, 19, 0.1);
}

.nav-link-premium.active {
    color: #a81cc8;
    background: rgba(168, 28, 200, 0.1);
}

/* ===== ПОЛОСА С НАЗВАНИЕМ САЙТА ===== */
.brand-bar {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 2rem;
    text-align: center;
}

.brand-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brand-title {
    color: #a81cc8;
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 0 0px 0;
    text-shadow: 0 2px 4px rgba(168, 28, 200, 0.2);
    letter-spacing: 1px;
}

.brand-tagline {
    color: #666;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* ===== ACTION MENU (МЕГАМЕНЮ) ===== */
.action-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.action-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ACTION MENU CONTAINER - УВЕЛИЧИВАЕМ НА ДЕСКТОПЕ */
.action-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px; /* Уменьшаем по умолчанию */
    height: 100vh;
    background: white;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    /* ДЕЛАЕМ КОНТЕЙНЕР ШИРЕ НА ДЕСКТОПЕ */
}

@media (min-width: 1001px) {
    .action-menu-container {
        width: 800px !important; /* УВЕЛИЧИВАЕМ ШИРИНУ НА ДЕСКТОПЕ */
        max-width: 800px !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    
    .action-menu-content {
        padding: 30px 40px;
    }
}

.action-menu-container.active {
    transform: translateX(0);
}

.action-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e1e8ed;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.action-menu-title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.close-action-menu {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-action-menu:hover {
    background: rgba(255, 255, 255, 0.2);
}

.action-menu-content {
    display: block;
    min-height: calc(100vh - 80px);
    padding: 30px;
}

/* Основной контент - теперь занимает всю ширину */
.action-menu-main {
    width: 100%;
    padding: 0;
}






/* ===== АДАПТИВНОСТЬ ===== */

/* Большие экраны (выше 1000px) - ВСЕ элементы видны в хедере */
@media (min-width: 1001px) {
    /* Центрируем поисковую строку */
    .header-search {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: 400px;
        width: 100%;
    }
    
    /* Бургер-меню на больших экранах - только категории */
    .mobile-only-content {
        display: none !important;
    }
    
    /* Улучшаем отображение баннеров на десктопе */
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    /* На больших экранах ВСЕ элементы хедера видны */
    .auth-btn, .logout-form {
        display: flex !important;
    }
    
    .navigation-bar, .brand-bar {
        display: block !important;
    }
}

/* Маленькие экраны (1000px и меньше) - элементы скрываются в бургер */
@media (max-width: 1000px) {
    .premium-header {
        padding: 0;
    }
    
    .header-main {
        padding: 8px 1rem;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .header-logo {
        flex-shrink: 0;
        margin-right: 0;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-letter {
        font-size: 1.6rem;
    }
    
    .action-menu-toggle {
        padding: 8px 12px;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
        margin-right: 0;
    }
    
    /* Скрываем текст кнопки на планшетах */
    .action-menu-toggle .menu-text {
        display: none;
    }
    
    .header-search {
        flex: 1;
        min-width: 120px;
        max-width: none;
        margin: 0;
        position: static;
        transform: none;
    }
    
    .search-form-premium {
        min-width: 120px;
        max-width: none;
    }
    
    .search-input-premium {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .search-btn-premium {
        padding: 8px 12px;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    /* На маленьких экранах скрываем кнопки аккаунта в хедере */
    .auth-btn, .logout-form {
        display: none !important;
    }
    
    .cart-btn-premium {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    /* Скрываем навигационную полосу и бренд-полосу на маленьких экранах */
    /* .navigation-bar, */
    .brand-bar {
        display: none !important;
    }
    
    /* Медиа-запрос для ≤768px */
@media (max-width: 768px) {
    .header-main {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 6px 0.8rem !important;
        height: 60px !important;
        gap: 8px !important;
    }
    
    /* Лого слева */
    .header-logo {
        order: 1 !important;
        flex-shrink: 0 !important;
        margin-right: 0 !important;
    }
    
    .logo-circle {
        width: 36px !important;
        height: 36px !important;
    }
    
    .logo-letter {
        font-size: 1.4rem !important;
    }
    
    /* Поиск по центру - занимает всё доступное пространство */
    .header-search {
        order: 2 !important;
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 10px !important;
        min-width: 0 !important;
    }
    
    .search-form-premium {
        width: 100% !important;
        max-width: none !important;
    }
    
    .search-input-premium {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
    
    /* Бургер-меню справа */
    .action-menu-toggle {
        order: 3 !important;
        display: flex !important;
        margin-right: 0 !important;
        margin-left: auto !important;
        padding: 6px 10px !important;
        flex-shrink: 0 !important;
    }
    
    /* Скрываем текст "Каталог" на очень маленьких экранах */
    @media (max-width: 480px) {
        .action-menu-toggle .menu-text {
            display: none !important;
        }
    }
    
    /* Скрываем кнопки входа/выхода и корзину в хедере (они в мобильном меню) */
    .header-actions {
        display: none !important;
    }
    
    /* Скрываем навигационную полосу и бренд-полосу */
    .navigation-bar,
    .brand-bar {
        display: none !important;
    }
    
    /* Action Menu адаптация */
    .action-menu-container {
        width: 100% !important;
        max-width: none !important;
    }
    
    .cart-btn-premium {
        width: 36px !important;
        height: 36px !important;
    }
}


    /* Action Menu адаптация */
    .action-menu-container {
        width: 100%;
        max-width: none;
    }
    
    .action-menu-content {
        grid-template-columns: 1fr;
    }
    
    .categories-column {
        display: block;
        border-right: none;
        border-bottom: 1px solid #e1e8ed;
    }
    
    .categories-title {
        padding: 0 20px;
    }
    
    .menu-navigation-section,
    .menu-account-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Показываем мобильный контент в Action Menu */
    .mobile-only-content {
        display: block !important;
    }
}

/* Мобильные телефоны (768px и меньше) */
@media (max-width: 768px) {
    .header-main {
        padding: 6px 0.8rem;
        gap: 8px;
    }
    
    .logo-circle {
        width: 36px;
        height: 36px;
    }
    
    .logo-letter {
        font-size: 1.4rem;
    }
    
    .action-menu-toggle {
        padding: 6px 10px;
    }
    
    .search-input-premium {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .search-btn-premium {
        padding: 6px 10px;
    }
    
    .cart-btn-premium {
        width: 36px;
        height: 36px;
    }
}

/* Очень маленькие экраны (480px и меньше) */
@media (max-width: 480px) {
    .header-main {
        padding: 4px 0.5rem;
        gap: 5px;
    }
    
    .logo-circle {
        width: 32px;
        height: 32px;
    }
    
    .logo-letter {
        font-size: 1.2rem;
    }
    
    .action-menu-toggle {
        padding: 5px 8px;
    }
    
    .menu-bar {
        width: 16px;
    }
    
    .search-input-premium {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
    
    .action-menu-header {
        padding: 15px 20px;
    }
    
    .action-menu-title {
        font-size: 1.3rem;
    }
    
    .menu-navigation-section,
    .menu-account-section {
        padding: 12px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu-link,
    .account-menu-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Градиентные анимации */
.gradient-animated {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}  

/* ===== ПРЕМИУМ ФУТЕР ===== */
.premium-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 50px;
    border-top: 3px solid #a81cc8;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 2rem 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: width 0.6s ease;
}

.footer-title:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.footer-links li {
    margin-bottom: 12px;
}

/* Лазерное подчеркивание для ВСЕХ ссылок футера */
.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: width 0.4s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Сделано в России */
.made-in-russia {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
}

.made-in-russia::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: laserSlide 3s ease-in-out infinite;
}

@keyframes laserSlide {
    0%, 100% {
        width: 0;
        left: 50%;
    }
    50% {
        width: 100%;
        left: 0;
    }
}

.russia-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.russia-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    opacity: 0.7;
}

/* Социальные сети - ТОЛЬКО КРУГИ С БУКВАМИ */
.social-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-title {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    text-decoration: none;
    color: #ecf0f1;
    transition: all 0.3s ease;
    position: relative;
}

.social-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 30px; /* Отступ от кружка */
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: width 0.4s ease;
}

.social-item:hover {
    color: white;
    transform: translateX(5px);
}

.social-item:hover::after {
    width: calc(100% - 30px);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-item:hover .social-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-name {
    font-size: 0.95rem;
}

/* Контактная информация */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #ecf0f1;
}

.contact-icon {
    margin-right: 10px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.payment-methods h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Нижняя часть футера */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.privacy-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.privacy-link:hover::after {
    width: 100%;
}

/* Адаптивность футера */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .russia-text {
        font-size: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 1.5rem 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .russia-text {
        font-size: 1.3rem;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-item {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 1rem 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .russia-text {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 15px 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* static/shop/css/header.css - добавьте в конец файла */

/* Улучшенные стили для коллекций в Action Menu */
.collections-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.collection-card-enhanced {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.collection-card-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.collection-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card-enhanced:hover .collection-image-wrapper img {
    transform: scale(1.05);
}

.no-collection-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
}

.collection-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.collection-count {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .collections-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .collection-image-wrapper {
        height: 140px;
    }
}

/* Стили для баннеров коллекций в Action Menu */
.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.action-menu-banner {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 180px; /* Чуть больше старых баннеров */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.action-menu-banner:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.action-menu-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.action-menu-banner:hover img {
    transform: scale(1.05);
}

.no-banner-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 15px 12px 12px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.action-menu-banner:hover .banner-overlay {
    transform: translateY(-5px);
}

.banner-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-collection-info {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-menu-banner {
        height: 160px;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.action-menu-banner {
    animation: fadeInUp 0.5s ease forwards;
}

.action-menu-banner:nth-child(1) { animation-delay: 0.1s; }
.action-menu-banner:nth-child(2) { animation-delay: 0.2s; }

/* ВРЕМЕННОЕ РЕШЕНИЕ: Скрыть старые баннеры */
.action-menu-banner:not([href*="/collection/"]) {
    display: none !important;
}

/* Убедитесь, что новые баннеры правильного размера */
.action-menu-banner {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
}

/* Принудительно убираем готические шрифты */
body * {
    font-family: 'Georgia', 'Times New Roman', serif !important;
}

/* Или более специфично */
.ad-font-fantasy,
.ad-font-cursive {
    font-family: 'Georgia', 'Times New Roman', serif !important;
}
/* Мобильная адаптация рекламной полосы */
@media (max-width: 768px) {
    .advertisement-bar.ad-font-dancing-script,
    .advertisement-bar.ad-font-great-vibes, 
    .advertisement-bar.ad-font-parisienne,
    .advertisement-bar.ad-font-sacramento,
    .advertisement-bar.ad-font-lobster {
        font-size: 12px !important;
        height: 30px !important;
        line-height: 30px !important;
    }
    
    .advertisement-content {
        transform: scale(0.9) !important;
        padding: 0 8px !important;
    }
}

@media (max-width: 480px) {
    .advertisement-bar {
        font-size: 10px !important;
        height: 25px !important;
        line-height: 25px !important;
    }
    
    .advertisement-content {
        transform: scale(0.8) !important;
        gap: 5px !important;
    }
    
    /* Скрываем боковые тексты на очень маленьких экранах если нужно */
    @media (max-width: 360px) {
        .advertisement-text-left,
        .advertisement-text-right {
            display: none !important;
        }
        
        .advertisement-text-center {
            width: 100% !important;
            text-align: center !important;
        }
    }
}

/* Стили для Action Menu категорий и коллекций */
.action-menu-categories,
.action-menu-collections {
    margin-bottom: 30px;
}

.categories-title,
.collections-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* Сетка категорий 2×2 для десктопа */
.categories-grid-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Стили для карточки категории */
.category-banner-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
    border: 1px solid #e0e0e0;
    position: relative;
    height: 180px;
}

/* .category-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #3498db;
} */

.category-banner-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.category-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-banner-card:hover .category-banner-image img {
    transform: scale(1.05);
}

.category-banner-image.no-image {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-placeholder {
    font-size: 48px;
    color: white;
}

.category-banner-content {
    padding: 12px;
    background: white;
}

.category-banner-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-banner-card:hover .category-banner-name {
    color: #9a04e4;
}

.category-product-count {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Сетка коллекций 2×2 */
.collections-grid-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.collection-banner-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    height: 180px;
}

.collection-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

.collection-banner-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.collection-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-banner-card:hover .collection-banner-image img {
    transform: scale(1.05);
}

.collection-banner-image.no-image {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-placeholder {
    font-size: 48px;
    color: white;
}

.collection-banner-content {
    padding: 12px;
    background: white;
}

.collection-banner-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.collection-banner-card:hover .collection-banner-name {
    color: #e74c3c;
}

.collection-product-count {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Блоки только для мобильных (скрыты на десктопе) */
.mobile-only-content {
    display: none;
}

/* Мобильная версия Action Menu */
@media (max-width: 1000px) {
    .action-menu-container {
        width: 95%;
        max-width: 500px;
    }
    
    .action-menu-content {
        padding: 15px;
    }
    
    /* Сетка категорий 2×2 для мобильных */
    .categories-grid-banners {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .category-banner-card {
        height: 160px;
    }
    
    .category-banner-image {
        height: 100px;
    }
    
    .category-banner-content {
        padding: 10px;
    }
    
    .category-banner-name {
        font-size: 14px;
    }
    
    /* Сетка коллекций 2×2 для мобильных */
    .collections-grid-banners {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .collection-banner-card {
        height: 160px;
    }
    
    .collection-banner-image {
        height: 100px;
    }
    
    .collection-banner-content {
        padding: 10px;
    }
    
    .collection-banner-name {
        font-size: 14px;
    }
    
    /* Показываем блоки навигации и аккаунта только на мобильных */
    .mobile-only-content {
        display: block;
        margin-bottom: 25px;
    }
    
    .menu-navigation-section h3,
    .menu-account-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #2c3e50;
    }
    
    .navigation-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu-link {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: white;
        border-radius: 10px;
        text-decoration: none;
        color: #2c3e50;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .nav-menu-link:hover {
        background: #f8f9fa;
        border-color: #3498db;
        transform: translateX(5px);
    }
    
    .link-icon {
        margin-right: 10px;
        font-size: 18px;
    }
    
    .link-text {
        font-weight: 500;
    }
    
    .account-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .account-menu-link {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: white;
        border-radius: 10px;
        text-decoration: none;
        color: #2c3e50;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
        font-size: 15px;
    }
    
    .account-menu-button {
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font-family: inherit;
        font-size: inherit;
        cursor: pointer;
        padding: 12px 15px;
    }
    
    .account-menu-link:hover {
        background: #f8f9fa;
        border-color: #e74c3c;
        transform: translateX(5px);
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .categories-grid-banners,
    .collections-grid-banners {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-banner-card,
    .collection-banner-card {
        height: 150px;
    }
    
    .category-banner-image,
    .collection-banner-image {
        height: 90px;
    }
    
    .category-banner-content,
    .collection-banner-content {
        padding: 8px;
    }
    
    .category-banner-name,
    .collection-banner-name {
        font-size: 13px;
    }
    
    .category-product-count,
    .collection-product-count {
        font-size: 11px;
    }
}

/* Адаптив для высоты Action Menu */
@media (max-height: 700px) {
    .action-menu-container {
        height: 85vh;
    }
    
    .action-menu-content {
        max-height: calc(85vh - 70px);
    }
}

/* Стили для категорий в Action Menu - ВЕРТИКАЛЬНОЕ ВМЕЩЕНИЕ */
.category-banner-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    position: relative;
    height: 180px; /* Общая высота карточки */
    text-align: center;
}

.category-banner-card:hover {
    transform: none;
    border: none !important;
}

/* КОНТЕЙНЕР ДЛЯ КАРТИНКИ - ВМЕЩАЕТ ПО ВЕРТИКАЛИ БЕЗ ОТСТУПОВ */
.category-image-container {
    flex: 1; /* Занимает все доступное пространство */
    display: flex;
    align-items: center;
    justify-content: center;
    background:transparent; /* Белый фон для оставшегося пространства */
    /* Убираем отступы сверху и снизу */
    padding-left: 15px;
    padding-right: 15px;
    min-height: 0; /* Важно для flex-элементов */
    overflow: hidden; /* На всякий случай */
}

/* КАРТИНКА - ВМЕЩАЕТСЯ ПО ВЕРТИКАЛИ БЕЗ ОТСТУПОВ */
.category-banner-img {
    max-height: 100%; /* Максимальная высота = высота контейнера */
    max-width: 100%; /* Максимальная ширина = ширина контейнера */
    width: auto; /* Автоматическая ширина для сохранения пропорций */
    height: auto; /* Автоматическая высота для сохранения пропорций */
    object-fit: contain; /* Вмещается целиком без обрезки */
    /* Убираем анимацию приближения */
    /* transition: transform 0.5s ease; */
    /* Гарантируем, что картинка не превышает контейнер */
    object-position: center;
}

/* Убираем эффект наведения для картинки */
.category-banner-card:hover .category-banner-img {
    /* transform: scale(1.08); */
}

/* ТЕКСТОВЫЙ БЛОК - БЕЗ ЗАЛИВКИ, ОБВОДОК */
.category-banner-content {
    flex-shrink: 0; /* Не сжимается */
    padding: 10px 8px;
    /* Убираем фон, если он был */
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50px; /* Минимальная высота */
    max-height: 60px; /* Максимальная высота */
    /* Убираем border-top */
    border-top: none;
}

/* НАЗВАНИЕ КАТЕГОРИИ - ПРОСТО ТЕКСТ БЕЗ ОФОРМЛЕНИЯ */
.category-banner-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50; /* Черный или темно-серый */
    margin: 0 0 4px 0;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    padding: 0 5px;
    /* Убираем обводку, заливку, если есть */
    background: none;
    border: none;
}

.category-banner-card:hover .category-banner-title {
    color: #8904b2;
}

.category-products-count {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
    text-align: center;
    /* Убираем обводку, заливку, если есть */
    background: none;
    border: none;
}

/* ДЛЯ КАРТОЧЕК БЕЗ ИЗОБРАЖЕНИЯ */
.no-category-image {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
}

.category-placeholder {
    font-size: 40px;
    color: #bdc3c7;
    opacity: 0.6;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 1000px) {
    .category-banner-card {
        height: 160px; /* Уменьшаем высоту на мобильных */
    }
    
    .category-image-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .category-banner-img {
        max-height: 90px; /* Меньшая максимальная высота */
    }
    
    .category-banner-content {
        padding: 8px 6px;
        min-height: 45px;
        max-height: 55px;
    }
    
    .category-banner-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .category-products-count {
        font-size: 10px;
    }
}

/* ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ */
@media (max-width: 480px) {
    .category-banner-card {
        height: 150px;
    }
    
    .category-image-container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .category-banner-img {
        max-height: 80px;
    }
    
    .category-banner-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

/* СЕТКА КАТЕГОРИЙ - НА ВСЮ ШИРИНУ */
.categories-grid-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* По умолчанию 2 колонки */
    gap: 15px;
    width: 100%;
}

@media (min-width: 1001px) {
    .categories-grid-banners {
        grid-template-columns: repeat(4, 1fr); /* 4 КОЛОНКИ НА ДЕСКТОПЕ */
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    /* УВЕЛИЧИВАЕМ САМИ КАРТОЧКИ КАТЕГОРИЙ */
    .category-banner-card {
        width: 100%;
        min-width: 0;
        height: 180px;
        min-height: 180px;
    }
    
    .category-image-container {
        height: 120px ;
        min-height: 120px ;
        max-height: 120px ;
    }
    
    .category-banner-content {
        height: 60px;
        min-height: 60px;
    }
}

/* ОЧЕНЬ БОЛЬШИЕ ЭКРАНЫ */
@media (min-width: 1400px) {
    .action-menu-container {
        width: 900px;
        max-width: 900px;
    }
    
    .categories-grid-banners {
        grid-template-columns: repeat(3, 1fr) !important; /* 5 колонок на очень больших экранах */
    }
}

/* В существующий CSS файл (например, shop/css/header.css) добавьте: */
.category-banner-image img {
    width: 100%;
    height: 150px;  /* Фиксированная высота для одинаковых карточек */
    object-fit: cover;  /* Обрезаем изображение пропорционально */
    border-radius: 8px 8px 0 0;
}

.category-banner-image.no-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.category-placeholder {
    font-size: 2.5rem;
    color: #6c757d;
}

/* В shop/css/header.css добавьте: */
.category-banner-image.mobile-image {
    overflow: hidden;
    position: relative;
}

.category-banner-image.mobile-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center 70%; /* Показываем нижнюю 70% изображения */
    transform: scale(1.1); /* Немного увеличиваем чтобы заполнить пространство */
}

/* Для основных изображений (не мобильных) */
.category-banner-image:not(.mobile-image) img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.action-menu-categories {
    margin-bottom: 30px;
}

.categories-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* ФИКСИРОВАННО 3 КОЛОНКИ */
.categories-grid-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ВАЖНО: repeat(3, 1fr) */
    gap: 25px;
}

.category-banner-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    background:transparent;
    
   
}

.category-image-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 15px;
    box-sizing: border-box;
}

.category-image-container img {
    max-height: 100%;
    object-fit: contain;
}

.category-text-container {
    height: 130px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
}

.category-banner-name {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 39px;
    width: 100%;
}

.category-product-count {
    font-size: 13px;
    color: #666;
}

/* МОБИЛЬНАЯ - 2 КОЛОНКИ */
@media (max-width: 1000px) {
    .categories-grid-banners {
        grid-template-columns: repeat(2, 1fr); /* 2 КОЛОНКИ */
        gap: 20px;
    }
    
    .category-banner-card {
        height: 360px;
    }
    
    .category-image-container {
        height: 220px;
        padding: 12px;
    }
    
    .category-image-container img {
        max-height: 196px;
    }
    
    .category-text-container {
        height: 140px;
        padding: 12px;
    }
    
    .category-banner-name {
        font-size: 14px;
        max-height: 36.4px;
    }
}

/* ТЕЛЕФОН - 1 КОЛОНКА */
@media (max-width: 768px) {
    .categories-grid-banners {
        grid-template-columns: 1fr; /* 1 КОЛОНКА */
        gap: 15px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .category-banner-card {
        height: 380px;
    }
    
    .category-image-container {
        height: 240px;
    }
    
    .category-image-container img {
        max-height: 210px;
    }
    
    .category-text-container {
        height: 140px;
    }
}
