/* AI Product Description — Frontend FAQ Styles */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

.aipd-faq-section {
    margin: 40px 0;
    font-family: 'Hind Siliguri', sans-serif;
}

.aipd-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0edff;
}

.aipd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aipd-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    background: #fff;
}

.aipd-faq-item:hover {
    box-shadow: 0 2px 12px rgba(108,71,255,0.08);
}

.aipd-faq-item.open {
    border-color: #c4b5fd;
}

.aipd-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: background 0.2s;
}

.aipd-faq-item.open .aipd-faq-question {
    background: #f5f3ff;
}

.aipd-faq-question:hover {
    background: #f9f7ff;
}

.aipd-faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    flex: 1;
    padding-right: 12px;
}

.aipd-faq-item.open .aipd-faq-q-text {
    color: #6c47ff;
}

.aipd-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f0ff;
    color: #6c47ff;
    font-size: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s;
    line-height: 1;
}

.aipd-faq-item.open .aipd-faq-icon {
    transform: rotate(45deg);
    background: #6c47ff;
    color: #fff;
}

.aipd-faq-answer {
    padding: 0 20px;
    overflow: hidden;
}

.aipd-faq-answer p {
    padding: 4px 0 18px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
    .aipd-faq-title { font-size: 18px; }
    .aipd-faq-q-text { font-size: 14px; }
    .aipd-faq-question { padding: 14px 16px; }
}
