.produktfinder-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.produktfinder-progress, #selection-history, #back-link {
    display: flex;
    align-items: center;
}

#selection-history {
    font-size: 15px;
    color: #808a99;
}
/* Allgemeine Definitionen angepasst an dein Shop-Design */
:root {
    --primary-color: #1c3661; /* Dunkelblau angepasst an Shop-Design */
    --secondary-color: #f1b51e; /* Gelb Akzentfarbe */
    --text-color: #333;
    --background-color: #fff;
    --border-radius: 12px;
    --shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.produktfinder-headline h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Roboto', 'Arial', sans-serif;
    margin-bottom: 25px;
}

.produktfinder-container {
    margin: 0 auto;
    padding: 30px;
}

.produktfinder-progress {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.produktfinder-navigation {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 25px;
    gap: 8px;
    width: 100%;
    text-align: center;
    line-height: 1;
}

#back-link {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

#back-link[disabled] {
    color: #808a99;
    pointer-events: none;
    cursor: default;
}

.produktfinder-step h3 {
    font-size: 26px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-info {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.option-card {
    width: 240px;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
    border: 3px solid transparent;
    background: var(--background-color);
}

.option-card:hover,
.option-card.selected {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(42,73,127,0.2);
}

.option-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.option-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 12px 8px 6px;
}

.option-card p {
    font-size: 14px;
    margin: 0 8px 12px;
    color: #606060;
}

.produktfinder-controls {
    text-align: center;
    margin-top: 25px;
}

button {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: bold;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background-color 0.2s, transform 0.2s;
}

button:disabled {
    background-color: #d1d6dc;
    cursor: not-allowed;
}

button:hover:not(:disabled) {
    background-color: #dca71e;
    transform: translateY(-3px);
}

.selection-history {
    font-size: 15px;
    color: #808a99;
}

.selection-history span {
    color: var(--primary-color);
    font-weight: bold;
}

.selection-history span:not(:last-child)::after {
    content: ' > ';
    color: #ccc;
    margin-right: 3px;
}

#product-result {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e1e6ed;
}

#product-result h3 {
    color: var(--primary-color);
}

.product-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: background-color 0.2s, transform 0.2s;
}

.product-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.nav-separator {
    color: #808a99;
    margin: 0 5px;
}