/* WooCommerce-Standardpreis nur auf Seiten mit Konfigurator ausblenden */
.single-product:has(#wwfk-config) .summary .price {
    display: none !important;
}

/* Style fuer den Livepreis im Konfigurator */
.wwfk-live-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Card-Style nur fuer Karten-Elemente (nicht fuer Groessenbuttons) */
.wwfk-card,
.wwfk-pack-option,
.ww-laminate-option,
.wwfk-prodtime-card {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 22px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.15s ease;
}

.wwfk-active {
    border-color: #1e6bff !important;
    background: #f5f9ff !important;
    box-shadow: 0 0 0 1px rgba(30,107,255,0.20) !important;
}

/* Step Navigation (Pillen, keine Cards) */
.wwfk-step-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.wwfk-step-item {
    padding: 8px 16px;
    border-radius: 20px;
    background: #f0f3f7;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.wwfk-step-item--active {
    background: #1e6bff;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(30,107,255,0.25);
}

.wwfk-step-item:hover {
    background: #dbe7ff;
}

/* Fliesengroessen separat (nicht Card-Style) - optional falls genutzt */
.wwfk-size-option {
    width: 60px;
    height: 60px;
    border: 2px solid #d5d9e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s ease;
}

.wwfk-size-active {
    border-color: #1e6bff;
    box-shadow: 0 0 0 1px rgba(30,107,255,0.20);
}

/* Summary Box */
.wwfk-summary-box {
    border-radius: 12px;
    background: #f8f8f9;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#wwfk-summary-main {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

#wwfk-summary-main div:first-child {
    font-weight: 500;
}

#wwfk-summary-main div:last-child {
    color: #666;
}

#wwfk-summary-price {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    align-self: flex-end;
}
