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

.product-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148,163,184,0.2);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    color: #e5e7eb;
    box-shadow: 0 0 18px rgba(56,189,248,0.15);
    transition: all 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(56,189,248,0.35);
}

.product-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-version {
    background: rgba(59,130,246,0.2);
    color: #93c5fd;
}

.badge-update {
    background: rgba(34,197,94,0.2);
    color: #86efac;
}

/* FOOTER */
.product-footer {
    text-align: right;
    font-size: 0.9rem;
    color: #38bdf8;
}

.product-footer .product-link {
    font-weight: 500;
}
.history-btn-outline {
    padding: 8px 18px;
    border: 1px solid rgba(56,189,248,0.4);
    color: #38bdf8;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.history-btn-outline:hover {
    background: rgba(56,189,248,0.15);
    border-color: rgba(56,189,248,0.7);
    box-shadow: 0 0 14px rgba(56,189,248,0.6);
}

.overview-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.overview-icon {
    font-size: 2.4rem;
    background: rgba(56,189,248,0.15);
    color: #38bdf8;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 0 14px rgba(56,189,248,0.25);
}

.overview-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #e2e8f0;
}

.overview-subtitle {
    margin: 0;
    color: #94a3b8;
}

.no-products {
    text-align: center;
    padding: 60px 0;
    border-radius: 16px;
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(148,163,184,0.2);
    box-shadow: 0 0 18px rgba(56,189,248,0.15);
}

.no-products-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #64748b;
}

.no-products-text {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Meta-Bereich */
.product-meta {
    margin-top: 12px;
    margin-bottom: 20px;
}

/* Footer-Button */
.product-footer {
    margin-top: auto;
    padding-top: 10px;
}

