.product-faq-section {
    margin: 1.875rem auto;
    padding: 1.25rem;
    border-radius: 0.25rem;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    text-align: left;
    text-transform: uppercase;
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1.25rem 0 0.625rem 0;
    color: #333;
}

.faq-category-items {
    margin-bottom: 1.25rem;
}

.faq-item {
    margin-bottom: 0.625rem;
    background-color: #f5f5f5;
    padding: 0;
    border-radius: 0.5rem;
}

.faq-item::after {
    translate: 0 10%;
}

.faq-question {
    width: 100%;
    height: auto !important;
    margin: 0;
    padding: 1rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: 1px solid #d9d9d9 !important;
    border-radius: .5rem;
    text-align: left;
    color: #333;
    line-height: 1.3 !important;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    color: #333;
    background-color: #ddeefb;
}

.faq-question:focus {
    border: none;
}

.faq-answer {
    max-height: 0;
    margin: 0;
    padding: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-top: none;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    overflow: hidden;
    transition: all .3s;
}

.show-answer {
    max-height: 100vh;
    padding: 1rem;
}
