/* FAQ Section */
.product-faq-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #666;
    font-size: 16px;
}

/* FAQ Accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-answer {
    line-height: 1.6;
    color: #555;
}

.faq-answer p {
    margin-bottom: 10px;
}

/* FAQ Link */
.product-faq-link-wrapper {
    padding: 5px 0;
}

.product-faq-link-wrapper a {
    display: inline-flex;
    align-items: center;
    color: #1e73be;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-faq-link-wrapper a:hover {
    color: #155a8a;
    text-decoration: underline;
}

/* FAQ Modal */
.faq-modal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.faq-modal-content {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.faq-close:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }
    
    .faq-header h2 {
        font-size: 24px;
    }
}