/* ============================================================
   FAQ SEKCIA — Najčastejšie kladené otázky
   ============================================================ */

.custom-faq-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 96px 128px;
    gap: 64px;
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
}

/* Ľavý stĺpec */
.custom-faq-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    min-width: 320px;
    max-width: 550px;
    flex: 1;
}

.custom-faq-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: #14141F;
    margin: 0;
}

.custom-faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #3D3D5C;
    margin: 0;
}

.custom-faq-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 8px;
    height: 34px;
    min-height: 30px;
    border: 1px solid #CD0E1D;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    color: #14141F;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.custom-faq-btn:hover {
    background: #CD0E1D;
    color: #FFFFFF;
}

/* Pravý stĺpec */
.custom-faq-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 320px;
    flex: 2;
}

/* Accordion item */
.custom-faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.custom-faq-item__header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 8px 8px 16px;
    gap: 10px;
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #3D3D5C;
    cursor: pointer;
    transition: background 0.15s ease;
}

.custom-faq-item__header:hover {
    background: #F8F8FB;
}

.custom-faq-item__question {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    flex: 1;
}

.custom-faq-item__toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.custom-faq-item__toggle:hover {
    background: #F1F1F6;
}

/* Rotate icon when open */
.custom-faq-item.is-open .custom-faq-item__toggle {
    transform: rotate(45deg);
    background: #F1F1F6;
}

/* Body — skrytý štandardne */
.custom-faq-item__body {
    display: none;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    background: #F8F8FB;
}

.custom-faq-item.is-open .custom-faq-item__body {
    display: flex;
}

.custom-faq-item__body p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #3D3D5C;
    margin: 0;
}

/* ── Responzívnosť ──────────────────────────────────────── */
@media (max-width: 1280px) {
    .custom-faq-section {
        padding: 64px 32px;
    }

    .custom-faq-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .custom-faq-section {
        padding: 48px 16px;
        gap: 32px;
        flex-direction: column;
    }

    .custom-faq-left {
        max-width: 100%;
    }

    .custom-faq-title {
        font-size: 24px;
        line-height: 32px;
    }
}