/* Product FAQ Frontend Styles */
.product-faq-section {
    margin: 40px 0;
    padding: 20px 0;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #333;
}

.faq-question-text {
    flex: 1;
    padding-right: 15px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-toggle {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 20px;
    background: #2a2a2a;
    overflow: hidden;
    display: none;
}

.faq-item.faq-open .faq-answer {
    display: block;
}

.faq-answer-content {
    padding: 0 0 20px 0;
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-answer-content p {
    margin: 0 0 15px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer-content {
        padding-bottom: 15px;
        font-size: 14px;
    }
}
