.product-faqs-section {
    background-color: #ffffff;
    padding: 50px 40px;
    margin-top: 50px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    color: #1C1C1C;
}

.product-faqs-section h2 {
    color: #1C1C1C;
    font-size: 28px;
    margin-bottom: 35px;
    border-left: 6px solid #BAAA5D;
    padding-left: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-accordion .faq-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e3d8b2;
    background-color: #fdf8ec;
    transition: all 0.3s ease;
}

.faq-question {
    background-color: #fdf8ec;
    color: #1C1C1C;
    padding: 18px 22px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fdf8ec; /* Mismo color, sin cambio */
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question:after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px 22px;
    background-color: #ffffff;
    color: #1C1C1C;
    font-size: 16px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
    border-top: 1px solid #f0e6c6;
}

.faq-item.open .faq-answer {
    display: block;
}

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