/**
 * FAQ Schema Frontend CSS
 * This is for the customer-facing FAQ section on product pages
 */

.iscents-faq-wrapper {
    margin: 20px 0;
}

.iscents-faq-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #24262e;
}

.iscents-faq-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.iscents-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.iscents-faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: #24262e;
    margin-bottom: 8px;
}

.iscents-faq-answer {
    color: #555;
    line-height: 1.6;
}

.iscents-faq-answer strong {
    font-weight: 600;
}

/* Optional: Accordion Style */
.iscents-faq-accordion .iscents-faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.iscents-faq-accordion .iscents-faq-question {
    background: #f9f9f9;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.iscents-faq-accordion .iscents-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.iscents-faq-accordion .iscents-faq-question.active::after {
    content: '-';
}

.iscents-faq-accordion .iscents-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.iscents-faq-accordion .iscents-faq-answer.show {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .iscents-faq-title {
        font-size: 1.2rem;
    }
    
    .iscents-faq-question {
        font-size: 1rem;
    }
}