/* ============================================================
   Han SSS Widget — CSS v1.0
   hantema.com | Han Geliştirici
   ============================================================ */

.han-sss-wrapper *,
.han-sss-wrapper *::before,
.han-sss-wrapper *::after { box-sizing: border-box; }

/* ── Header ── */
.han-sss-header {
    margin-bottom: 48px;
}
.han-sss-section-title {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    color: #0D2137;
    margin: 0 0 12px 0;
    padding: 0;
    line-height: 1.2;
}
.han-sss-section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 580px;
    line-height: 1.65;
}

/* ── Liste ── */
.han-sss-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Item ── */
.han-sss-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.han-sss-item.active {
    background: #ffffff;
    border-color: #1a8fff;
    box-shadow: 0 0 0 3px rgba(26, 143, 255, 0.12);
}

/* ── Soru Butonu ── */
.han-sss-question-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.han-sss-question-wrap:focus-visible {
    outline: 2px solid #1a8fff;
    outline-offset: -2px;
    border-radius: 11px;
}

.han-sss-question {
    font-size: 16px;
    font-weight: 700;
    color: #0D2137;
    line-height: 1.4;
    flex: 1;
    transition: color 0.2s;
}

/* ── İkon ── */
.han-sss-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: color 0.25s, transform 0.3s ease;
}
.han-sss-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    display: block;
    flex-shrink: 0;
}

/* Chevron döndür */
.han-sss-item.active .han-icon-chevron {
    transform: rotate(180deg);
    color: #1a8fff;
}
/* Arrow döndür */
.han-sss-item.active .han-icon-arrow {
    transform: rotate(90deg);
    color: #1a8fff;
}
/* Plus aktif renk */
.han-sss-item.active .han-icon-plus {
    color: #1a8fff;
}

/* ── Cevap ── */
.han-sss-answer {
    overflow: hidden;
}
.han-sss-answer-inner {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}
.han-sss-answer-inner p {
    margin: 0 0 8px 0;
}
.han-sss-answer-inner p:last-child {
    margin-bottom: 0;
}

/* ── Hover ── */
.han-sss-item:not(.active):hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

/* ============================================================
   MOBİL
   ============================================================ */
@media (max-width: 768px) {
    .han-sss-section-title { font-size: 24px; }
    .han-sss-section-subtitle { font-size: 14px; }
    .han-sss-header { margin-bottom: 28px; }
    .han-sss-question { font-size: 14px; }
    .han-sss-question-wrap { padding: 16px; }
    .han-sss-answer-inner { padding: 14px 16px; font-size: 14px; }
    .han-sss-icon svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
    .han-sss-list { gap: 8px; }
    .han-sss-item { border-radius: 10px; }
    .han-sss-question { font-size: 13px; }
}
