.seo-text {
    display: flex;
}

.text-content {
    flex: 2;
    padding-right: 10px;
}

.video-content {
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: center;
}

.seo-filters {
    /*background: #f8f9fa;*/
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.seo-filters h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.seo-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-filter-item {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 14px;
}

.seo-filter-item:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
}

.seo-filter-item.current {
    background: #007bff;
    color: white;
}

.products-info {
    background: #e9ecef;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.filter-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.filter-warning a {
    color: #856404;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-filters-list {
        gap: 5px;
    }

    .seo-filter-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}