/**
 * Product FAQ Section Styles
 * Styles for the FAQ section on single product pages
 */

.product-faq-section.wp-block-rank-math-faq-block {
    margin: 40px 0;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-faq-section.wp-block-rank-math-faq-block h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #111;
    text-align: center;
}

.product-faq-section.wp-block-rank-math-faq-block h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #dc9814;
    margin: 15px auto 0;
}

.product-faq-section .rank-math-faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #fcfcfc;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-faq-section .rank-math-faq-item:hover {
    border-color: #dc9814;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-faq-section .rank-math-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.product-faq-section .rank-math-question:hover {
    color: #dc9814;
}

.product-faq-section .rank-math-answer {
    color: #666;
    line-height: 1.6;
}

.product-faq-section .rank-math-answer p {
    margin-bottom: 10px;
}

.product-faq-section .rank-math-answer p:last-child {
    margin-bottom: 0;
}

/* WooCommerce specific override */
.woocommerce .product .product-faq-section.wp-block-rank-math-faq-block {
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-faq-section.wp-block-rank-math-faq-block {
        padding-left: 20px;
        padding-right: 20px;
    }
}
