/* ====== Shop Layout ====== */

.fv-shop {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Saisonüberschrift */
.fv-saison-headline {
    font-size: 1.8em;
    color: #1a252f;
    border-bottom: 3px solid #0073aa;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

/* ====== Gewässer-Karten ====== */

.fv-shop-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fv-shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.fv-shop-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #0073aa;
}

/* Dropdown */
.fv-shop-card select.fv-product-select {
    width: 50%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s ease;
}

.fv-shop-card select.fv-product-select:focus {
    border-color: #0073aa;
    outline: none;
}

/* Button */
.fv-shop-card .fv-add-to-cart {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s ease, transform 0.1s ease;
    width: 100%;
}

.fv-shop-card .fv-add-to-cart:hover:not(:disabled) {
    background: #005c87;
    transform: scale(1.02);
}

.fv-shop-card .fv-add-to-cart:disabled {
    background: #9eb6c5;
    cursor: not-allowed;
}

/* Abstand zwischen den zwei Karten */
.fv-shop-card + .fv-shop-card {
    margin-top: 30px;
}

/* ====== Responsive ====== */

@media (max-width: 600px) {
    .fv-saison-headline {
        font-size: 1.6em;
    }

    .fv-shop-card h3 {
        font-size: 1.25em;
    }
}
