/*
* Custom FAQ styles for WooCommerce Product Page
*/

.faq-title {
    margin-top: 0;
    margin-bottom: 20px;
}

.product-faq-accordion {
    margin-top: 0; 
}

.faq-question {
    cursor: pointer;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s;
    color: #333;
}

.faq-question:hover, 
.faq-question:focus {
    background: #f5f5f5;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-toggle-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s;
    color: #666;
    margin-right: 5px; 
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(45deg); 
    color: var(--primary-color, #ff6600); 
}

.faq-answer {
    display: none; /* این خط برای بسته بودن اولیه بسیار مهم است */
    padding: 15px 20px 15px 15px;
    margin-right: 15px; 
    border-right: 2px solid var(--primary-color, #ff6600); 
    background: #fcfcfc;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.faq-answer p:last-child {
    margin-bottom: 0; 
}