.compact-cookie-icon {
    font-size: 14px;
    margin-right: 12px;
    width: 16px;
    text-align: center;
    color: #ff611f;
}

/* === КАСТОМНЫЙ КАТАЛОГ === */
#custom-catalog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

/* Заголовок и фильтры */
.catalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.catalog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Карточка товара */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Анимация появления */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Задержка анимации для каждой карточки */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card__image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card__body {
    padding: 25px;
}

.product-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.product-card__description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-card__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-card__old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 1rem;
}

.product-card__btn {
    display: block;
    width: 100%;
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-card__btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Индикатор загрузки */
.loading-spinner {
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
    color: #666;
    grid-column: 1 / -1;
}

/* Кнопка "Показать еще" */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #1a1a1a;
    color: white;
}

.load-more-btn.hidden {
    display: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    #custom-catalog {
        padding: 30px 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .catalog-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}