/* Кнопки с инлайн стилями */
.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 0.7;
}

.notification-close [data-icon] {
    width: 20px;
    height: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-close-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.notification-close-btn h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-primary);
}

.notification-close-btn button {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.notification-close-btn button:hover {
    opacity: 0.7;
}

/* Фильтры панель скрытие */
.filters-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filters-toggle-btn:hover {
    background: var(--primary-dark);
}

.filters-toggle-btn [data-icon] {
    width: 20px;
    height: 20px;
}

/* Скрытые элементы */
.filters-close-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-close-btn.hidden {
    display: none !important;
}

.filters-toggle-btn.hidden {
    display: none !important;
}

/* Продукт - активная подписка */
.product-active-subscription {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-active-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-active-badge span:last-child {
    margin-left: 0.25rem;
}

.product-action-buttons {
    display: flex;
    gap: 0.5rem;
}

.product-action-buttons .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

/* Кнопка отключена */
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}