/* ════════════════════════════════════════
   TAHAP 3 — Panduan, Tiket, Pengaturan, Kategori
   ════════════════════════════════════════ */

/* ─── Search bar (kategori) ─── */
.search-wrap { position: relative; }
.search-wrap svg {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    color: var(--faint);
}
.search-wrap .input { padding-left: 40px; }
.no-result { display: none; }

/* ─── Guide: steps ─── */
.guide-section { margin-bottom: 8px; }
.steps { display: flex; flex-direction: column; gap: 10px; }
.step {
    display: flex;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 15px;
}
.step-num {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--aurora);
    background: var(--aurora-dim);
    border: 1px solid rgba(56, 225, 255, 0.25);
}
.step-title { font-size: 13.5px; font-weight: 700; }
.step-desc { font-size: 12.5px; color: var(--dim); line-height: 1.6; margin-top: 4px; }
.step-desc b { color: var(--text); }

/* ─── Tips box ─── */
.tips-box {
    background: rgba(255, 201, 77, 0.05);
    border: 1px solid rgba(255, 201, 77, 0.2);
    border-radius: var(--radius);
    padding: 16px 18px;
}
.tips-box ul { list-style: none; }
.tips-box li {
    position: relative;
    padding-left: 20px;
    font-size: 12.5px;
    color: var(--dim);
    line-height: 1.7;
}
.tips-box li::before {
    content: '💡';
    position: absolute;
    left: -3px;
    font-size: 11px;
}

/* ─── FAQ accordion ─── */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 9px;
    overflow: hidden;
}
.faq-item summary {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 17px;
    color: var(--aurora);
    transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 16px 14px;
    font-size: 12.5px;
    color: var(--dim);
    line-height: 1.65;
}

/* ─── Tickets ─── */
.ticket-card { margin-bottom: 10px; }
.ticket-msg {
    font-size: 12.5px;
    color: var(--dim);
    margin-top: 8px;
    font-style: italic;
    line-height: 1.6;
}
.ticket-reply {
    margin-top: 10px;
    padding: 11px 13px;
    background: var(--aurora-dim);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    color: var(--text);
    line-height: 1.6;
    border-left: 2px solid var(--aurora);
}

/* ─── Akun page ─── */
.profile-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar.big {
    width: 58px; height: 58px;
    font-size: 23px;
    border-radius: 18px;
}
.profile-name { font-size: 16px; font-weight: 800; }

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.setting-row:last-child { border-bottom: none; }

.red-text { color: var(--red) !important; }

/* ─── Toggle switch ─── */
.switch { position: relative; display: inline-block; width: 44px; height: 25px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span {
    position: absolute;
    inset: 0;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.25s ease;
}
.switch span::before {
    content: '';
    position: absolute;
    width: 19px; height: 19px;
    left: 2px; top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--dim);
    transition: all 0.25s var(--ease);
}
.switch input:checked + span {
    background: var(--aurora-dim);
    border-color: rgba(56,225,255,0.35);
}
.switch input:checked + span::before {
    transform: translateY(-50%) translateX(19px);
    background: var(--aurora);
    box-shadow: 0 0 8px rgba(56, 225, 255, 0.5);
}

/* Product tile di kategori */
.product-card.neu-tile { height: 100%; }
