/* Produkte Page Styles */
.product-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: var(--bg-light);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-section);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card.featured {
    border: 2px solid var(--accent-color);
}

.product-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-live {
    background-color: #28a745;
    color: white;
}

.status-beta {
    background-color: #ffc107;
    color: #333;
}

.status-development {
    background-color: #6c757d;
    color: white;
}

.status-concept {
    background-color: #17a2b8;
    color: white;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 15px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Product description styles */
.product-description {
    margin-top: 0.75rem;
}

.product-price {
    font-size: 0.875rem;
    color: var(--second-color);
}

.product-btn {
    margin-top: 1rem;
}

/* Stats section */
.stats-section {
    background-color: var(--second-color);
    color: var(--white);
}

.stats-section h2 {
    color: var(--white);
}

.stats-section p {
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
}

/* No results */
.no-products {
    text-align: center;
    padding: 3rem;
}

.no-products-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* ================================
   Produkte-CRM Page Specific Styles
   ================================ */

/* Hero Section */
.crm-hero {
    background: linear-gradient(135deg, #005a73 0%, #0077a0 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.crm-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.crm-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Statistics */
.crm-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    color: white;
}

/* Filter Section */
.filter-section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.filter-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #005a73;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #005a73;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: #005a73;
    color: white;
}

.search-box {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box:focus {
    outline: none;
    border-color: #005a73;
}

/* CRM Grid */
.crm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.empty-state p {
    color: #666;
    font-size: 1.1rem;
}

/* Note: Product card styles are defined in components.css */

/* Responsive Design */
@media (max-width: 768px) {
    .crm-grid {
        grid-template-columns: 1fr;
    }
    
    .crm-hero h1 {
        font-size: 2rem;
    }
    
    .crm-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-container {
        flex-direction: column;
        width: 100%;
    }
    
    .search-box {
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .crm-hero {
        padding: 3rem 0;
    }
    
    .crm-hero h1 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}