.product-overview-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f7f8fc;
    padding: 1rem;
    border-radius: 0.75rem;
}

.product-card {
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-overview-table {
    width: 100%;
}

.product-overview-table .product-row-new .jans-table-cell {
    background-color: rgba(25, 118, 210, 0.18);
    box-shadow: inset 0 0 0 1px rgba(25, 118, 210, 0.25);
    transition: background-color 0.3s ease;
}

.product-overview-table .product-row-missing-price .jans-table-cell {
    background-color: rgba(220, 53, 69, 0.08);
    color: #b71c1c;
}

.product-overview-table .product-row-missing-price.product-row-new .jans-table-cell {
    background-color: rgba(220, 53, 69, 0.12);
    box-shadow: inset 0 0 0 1px rgba(25, 118, 210, 0.35);
}

.product-col-barcode,
.product-col-description {
    display: none;
}

@media (min-width: 768px) {
    .product-col-barcode {
        display: block;
    }
}

@media (min-width: 1024px) {
    .product-col-description {
        display: block;
    }
}
