/* Választható opciók accordion */
.valaszthato-opciok-lista {
    display: flex;
        font-family: "Poppins", Sans-serif;
    flex-direction: column;
}

.valaszthato-opciok-item {
    border-bottom: 1px solid #e5e5e5;
}

.valaszthato-opciok-item:last-child {
    border-bottom: none;
}

.valaszthato-opciok-header {
    width: 100%;
    background: none;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 16px 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: none;
    transform: none;
}

/* Téma hover/focus/active felülírása */
.valaszthato-opciok-header:hover,
.valaszthato-opciok-header:focus,
.valaszthato-opciok-header:focus-visible,
.valaszthato-opciok-header:active,
.valaszthato-opciok-header:visited {
    background: none;
    background-color: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
    transform: none;
    opacity: 1;
}

.valaszthato-opciok-header:hover .valaszthato-opciok-cim,
.valaszthato-opciok-header:focus .valaszthato-opciok-cim {
    opacity: 0.85;
}

.valaszthato-opciok-cim {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 600;
    flex: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.valaszthato-opciok-szam {
    font-weight: 700;
    color: #11b981;
    font-variant-numeric: tabular-nums;
    flex: 0 0 auto;
}

.valaszthato-opciok-ikon {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    position: relative;
}

.valaszthato-opciok-ikon::before,
.valaszthato-opciok-ikon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.valaszthato-opciok-ikon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.valaszthato-opciok-ikon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.valaszthato-opciok-item.is-open .valaszthato-opciok-ikon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.valaszthato-opciok-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.valaszthato-opciok-item.is-open .valaszthato-opciok-panel {
    max-height: 2000px;
    padding-bottom: 16px;
}

.valaszthato-opciok-tartalom {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.valaszthato-opciok-tartalom > *:first-child {
    margin-top: 0;
}

.valaszthato-opciok-tartalom > *:last-child {
    margin-bottom: 0;
}

.valaszthato-opciok-empty {
    padding: 20px;
    text-align: center;
    color: #666;
}
