
        /* Стили для кнопки загрузки */
        .load-more-container {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
        }
        
        .load-more-btn {
            background: #3498DB;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(52,152,219,0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .load-more-btn:hover {
            background: #2980B9;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52,152,219,0.4);
        }
        
        .load-more-btn:disabled {
            background: #95A5A6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .load-more-btn i {
            transition: transform 0.3s ease;
        }
        
        .load-more-btn:hover i {
            transform: translateY(2px);
        }
        
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .no-more-products {
            text-align: center;
            color: #7F8C8D;
            padding: 20px;
            font-size: 1rem;
        }
        
        /* Анимация появления товаров */
        .product-card {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .brand-hero {
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 0;
            margin-top: 80px;
            color: white;
        }
        
        .brand-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
        }
        
        .brand-hero__content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .brand-hero__logo {
            max-height: 100px;
            margin-bottom: 20px;
            background: white;
            padding: 15px 30px;
            border-radius: 10px;
            display: inline-block;
        }
        
        .brand-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .brand-hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .products-count {
            background: #3498DB;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin: 40px 0;
        }
        
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(52,152,219,0.15);
        }
        
        .product-card__image {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #f8f9fa;
        }
        
        .product-card__image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
            padding: 15px;
        }
        
        .product-card:hover .product-card__image img {
            transform: scale(1.1);
        }
        
        .product-card__badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #3498DB;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
        }
        
        .product-card__content {
            padding: 20px;
        }
        
        .product-card__title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2C3E50;
            line-height: 1.4;
            height: 3em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-card__article {
            font-size: 0.9rem;
            color: #95A5A6;
            margin-bottom: 10px;
        }
        
        .product-card__description {
            font-size: 0.9rem;
            color: #7F8C8D;
            margin-bottom: 15px;
            line-height: 1.5;
            height: 4.5em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .search-section {
            background: linear-gradient(135deg, #2C3E50, #3498DB);
            padding: 60px 0;
            margin: 40px 0;
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .search-container h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .search-form {
            display: flex;
            gap: 15px;
            background: white;
            padding: 5px;
            border-radius: 50px;
        }
        
        .search-input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
        }
        
        .search-btn {
            background: #3498DB;
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: #2980B9;
        }
        
        .no-products {
            text-align: center;
            padding: 60px 20px;
            background: #f8f9fa;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .no-products i {
            font-size: 4rem;
            color: #95A5A6;
            margin-bottom: 20px;
        }
        
        .no-products h3 {
            color: #2C3E50;
            margin-bottom: 10px;
        }
        
        .no-products p {
            color: #7F8C8D;
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .search-form {
                flex-direction: column;
                border-radius: 20px;
                padding: 20px;
            }
            
            .search-btn {
                border-radius: 10px;
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }
