/**
 * Layout Integration for Hello Elementor Child
 */

/* Anchor styling */
#wc-product-faqs-anchor {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

/* Accordion Styling */
.wc-product-faqs-column {
    background: #fdfdfd;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-sizing: border-box;
}

.wc-product-faqs-column h2 {
    font-size: 1.4em !important;
    margin: 0 0 15px 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #eee !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif !important;
}

.wc-faq-item {
    border: 1px solid #ddd;
    border-radius: 0px; 
    margin-bottom: 8px;
    background: #fff;
}

.wc-faq-question {
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wc-faq-question::-webkit-details-marker { display: none; }

.wc-faq-question span { flex: 1; font-family: 'Inter', sans-serif !important; }

.wc-faq-question::after { 
    content: '+'; 
    font-size: 1.5em; 
    line-height: 1;
    color: #000;
}

.wc-faq-item[open] .wc-faq-question::after { content: '−'; }

.wc-faq-answer {
    padding: 12px;
    border-top: 1px solid #eee;
    font-size: 0.95em;
    line-height: 1.6;
    color: #444;
    font-family: 'Inter', sans-serif !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .wc-product-faqs-column {
        margin-top: 40px;
    }
}
