.catalog-container {
    margin: 20px;
}

.product-groups select {
    margin-bottom: 20px;
    padding: 5px;
}

.product-list {
    display: flex;
    flex-direction: column;
}

.product-item {
    margin: 10px 0;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.products-table caption {
    caption-side: top;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
}

.products-table thead th {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.products-table tbody td {
    border: 1px solid #ddd;
    padding: 10px;
}

.products-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.products-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.products-table tbody tr:hover {
    background-color: #f1f1f1;
}

.products-table td {
    vertical-align: top;
    word-wrap: break-word;
}

.back-to-overview {
    display: inline-block;
    margin: 10px 0 20px;
    font-size: 16px;
    color: #0073aa;
    text-decoration: none;
}

.back-to-overview:hover {
    text-decoration: underline;
    color: #005177;
}

/* Zusatz-CSS für "schwebenden" Warenkorb-Button im Produktkatalog */
/* exakt wie fv-btn, nur fix positioniert */
/*
#fv-floating-cart.fv-btn{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;

    text-decoration: none; /* verhindert Link-Optik
    cursor: pointer;
} */

/* Floating Warenkorb – finale, robuste Positionierung */
#fv-floating-cart{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
}


