* {
    box-sizing: border-box;
}

.faq-page {
    background: white;
}

.faq-page-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: 16px;
    padding: 10px 14px;
    border: 1px solid #ead3bd;
    border-radius: 9px;
    color: #9a5b25;
    background: #fffaf6;
    font-size: 13px;
}

.faq-page-count strong {
    color: #c46e43;
}

.faq-page-search {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: min(680px, 100%);
    min-height: 58px;
    margin-top: 32px;
    padding: 6px;
    border: 1px solid #ded1c7;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(70, 48, 34, 0.06);
}

.faq-page-search-icon {
    padding-left: 12px;
    color: #c46e43;
    font-size: 24px;
    line-height: 1;
}

.faq-page-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #2f2925;
    background: transparent;
    font: inherit;
    font-size: 15px;
}

.faq-page-search input::placeholder {
    color: #948a83;
}

.faq-page-search button {
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 9px;
    color: #ffffff;
    background: #c46e43;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.faq-page-search button:hover {
    background: #a96527;
    transform: translateY(-1px);
}

/* ---------------------------------------------------------------- */
/* Content                                                          */
/* ---------------------------------------------------------------- */

.faq-page-content {
    padding: 26px 24px 72px;
    background: white;
}

.faq-page-content-inner {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
    width: min(1440px, 100%);
    margin: 0 auto;
}

.faq-page-sidebar {
    min-width: 0;
}

.faq-page-category-list {
    display: grid;
    gap: 8px;
}

.faq-page-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #e6ddd6;
    border-radius: 10px;
    color: #3c342f;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(70, 48, 34, 0.03);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.faq-page-category:hover {
    transform: translateX(2px);
    border-color: #d9b89d;
}

.faq-page-category strong {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    color: #9d642f;
    background: #f5eadf;
    font-size: 11px;
}

.faq-page-category.is-active {
    border-color: #d9b88c;
    color: #b1692e;
    background: #fff9f2;
}

.faq-page-contact-card {
    margin-top: 18px;
    padding: 22px 18px;
    border: 1px solid #e6ddd6;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(70, 48, 34, 0.04);
}

.faq-page-contact-card h2 {
    margin: 0;
    color: #2d2723;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
}

.faq-page-contact-card p {
    margin: 12px 0 0;
    color: #746b65;
    font-size: 14px;
    line-height: 1.65;
}

.faq-page-contact-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 14px;
    border: 1px solid #d9b27d;
    border-radius: 9px;
    color: #b1692e;
    background: #fffaf5;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.faq-page-contact-card a:hover {
    background: #fff4e8;
    transform: translateY(-1px);
}

/* ---------------------------------------------------------------- */
/* Results                                                          */
/* ---------------------------------------------------------------- */

.faq-page-results {
    min-width: 0;
}

.faq-page-results-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.faq-page-results-heading h2 {
    margin: 0;
    color: #2a2521;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.15;
}

.faq-page-results-heading p {
    margin: 0;
    color: #8a8079;
    font-size: 13px;
    font-weight: 700;
}

.faq-page-list {
    display: grid;
    gap: 8px;
}

.faq-page-item {
    overflow: hidden;
    border: 1px solid #e5ddd7;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(70, 48, 34, 0.035);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-page-item[hidden] {
    display: none;
}

.faq-page-item:hover {
    border-color: #d9c9bd;
}

.faq-page-item.is-open {
    border-color: #d5a26f;
    box-shadow: 0 8px 24px rgba(112, 65, 41, 0.07);
}

.faq-page-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 58px;
    padding: 11px 18px;
    border: 0;
    color: #302923;
    background: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.faq-page-question[aria-expanded="true"] {
    min-height: 64px;
    padding: 15px 18px;
}

.faq-page-question:hover,
.faq-page-item.is-open .faq-page-question {
    color: #a85e26;
    background: #fffaf6;
}

.faq-page-question-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #d9b27d;
    border-radius: 8px;
    color: #c46e43;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.faq-page-answer {
    border-top: 1px solid #eee6df;
}

.faq-page-answer[hidden] {
    display: none;
}

.faq-page-answer-inner {
    padding: 18px 20px 22px;
    color: #635b55;
    background: #fffdfb;
    font-size: 15px;
    line-height: 1.75;
}

.faq-page-no-results {
    margin-top: 18px;
    padding: 24px;
    border: 1px dashed #d9cbc0;
    border-radius: 12px;
    color: #71675f;
    background: #fbf8f5;
    font-size: 14px;
    text-align: center;
}

.faq-page-no-results[hidden] {
    display: none;
}

.faq-page-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 40px 24px;
    text-align: center;
}

.faq-page-empty h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.faq-page-results {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.faq-page-content-inner {
    align-items: start;
}

.faq-page-sidebar {
    align-self: start;
}

.faq-page-list {
    display: grid;
    align-content: start;
    grid-auto-rows: max-content;
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 8px;
    padding-right: 8px;
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
}

.faq-page-item {
    min-height: 0;
}

.faq-page-list::-webkit-scrollbar {
    width: 8px;
}

.faq-page-list::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #eee7e1;
}

.faq-page-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cbbdb2;
}
.faq-page-main-column {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.faq-page-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #eadfd6;
    border-radius: 12px;
    background: #f8f4ef;
    box-shadow: 0 5px 18px rgba(70, 48, 34, 0.035);
}

.faq-page-disclaimer-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid #d58b3c;
    border-radius: 50%;
    color: #c97727;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 800;
}

.faq-page-disclaimer h2 {
    margin: 0 0 5px;
    color: #302923;
    font-size: 14px;
    font-weight: 800;
}

.faq-page-disclaimer p {
    margin: 0;
    color: #665d57;
    font-size: 13px;
    line-height: 1.65;
}

.faq-page-help-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border: 1px solid #eadfd6;
    border-radius: 14px;
    background: #f8f4ef;
    box-shadow: 0 5px 18px rgba(70, 48, 34, 0.04);
}

.faq-page-help-card h2 {
    margin: 0;
    color: #2d2723;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.25;
}

.faq-page-help-intro {
    max-width: 650px;
    margin: 10px 0 18px;
    color: #746b65;
    font-size: 14px;
    line-height: 1.65;
}

.faq-page-help-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
}

.faq-page-help-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #cc7929;
    font-size: 21px;
}

.faq-page-help-row div {
    display: grid;
    gap: 2px;
}

.faq-page-help-row div > span {
    color: #746b65;
    font-size: 12px;
}

.faq-page-help-row a,
.faq-page-help-row strong {
    color: #302923;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
}

.faq-page-help-row a:hover {
    color: #b1692e;
}

.faq-page-help-headphones {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 1px solid #eadfd6;
    border-radius: 50%;
    background: #fffdfb;
    box-shadow: 0 5px 16px rgba(70, 48, 34, 0.05);
}

.faq-page-help-headphones img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-page-disclaimer {
    grid-column: 1 / -1;
    width: 100%;
}

.faq-page-help-card {
    width: 100%;
}

.faq-page-popular-topics,
.faq-page-help-card {
    min-width: 0;
}

.faq-page-content-inner {
    row-gap: 18px;
}

.faq-page-lower-grid {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    width: 100%;
}

.faq-page-popular-topics,
.faq-page-help-card {
    height: 100%;
}

.faq-page-popular-topics {
    padding: 22px;
    border: 1px solid #eadfd6;
    border-radius: 14px;
    background: #f8f4ef;
    box-shadow: 0 5px 18px rgba(70, 48, 34, 0.04);
}

.faq-page-popular-topics > h2 {
    margin: 0 0 18px;
    color: #2d2723;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.25;
}

.faq-page-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.faq-page-popular-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    min-height: 132px;
    padding: 18px 18px 16px;
    border: 1px solid #eee4dc;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
    align-items: start;
}

.faq-page-popular-icon {
    position: relative;
    width: 38px;
    height: 38px;
    color: #cb7729;
}

.faq-page-popular-content h3 {
    margin: 0;
    color: #302923;
    font-size: 14px;
    line-height: 1.35;
}

.faq-page-popular-content p {
    margin: 6px 0 0;
    color: #746b65;
    font-size: 12px;
    line-height: 1.55;
}

.faq-page-popular-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #c06e2e;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.faq-page-popular-content a:hover {
    color: #9f5520;
}

.faq-page-lower-grid .faq-page-help-card {
    height: 100%;
}

.faq-page-popular-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    color: #cb7729;
    background: transparent;
    box-shadow: none;
}

.faq-page-popular-icon img {
    display: block;
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.faq-page-popular-icon span {
    font-size: 42px;
    line-height: 1;
}

.faq-page-popular-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-page-popular-content a {
    margin-top: 12px;
}

.faq-page-answer-inner a {
    color: #c96e43;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
    transition: color .2s ease;
}

.faq-page-answer-inner a:hover {
    color: #a9542e;
}



@media (max-width: 1000px) {
    .faq-page-lower-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .faq-page-popular-grid {
        grid-template-columns: 1fr;
    }

    .faq-page-popular-topics {
        padding: 18px 16px;
    }
}

@media (max-width: 820px) {
    .faq-page-help-card {
        grid-template-columns: 1fr;
    }

    .faq-page-help-headphones {
        width: 90px;
        height: 90px;
        margin-top: 8px;
    }
}

@media (max-width: 620px) {
    .faq-page-disclaimer,
    .faq-page-help-card {
        padding: 18px 16px;
    }

    .faq-page-help-card h2 {
        font-size: 21px;
    }
}

/* ---------------------------------------------------------------- */
/* Responsive                                                       */
/* ---------------------------------------------------------------- */
@media (max-width: 820px) {
    .faq-page-results {
        height: auto !important;
        overflow: visible;
    }

    .faq-page-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 1100px) {
    .faq-page-content-inner {
        grid-template-columns: 250px minmax(0, 1fr);
    }
}

@media (max-width: 820px) {
    .faq-page-content {
        padding-right: 16px;
        padding-left: 16px;
    }

    .faq-page-content-inner {
        grid-template-columns: 1fr;
    }

    .faq-page-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-page-contact-card {
        margin-bottom: 8px;
    }
}

@media (max-width: 620px) {
    .faq-page-category-list {
        grid-template-columns: 1fr;
    }

    .faq-page-results-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .faq-page-question {
        min-height: 66px;
        padding: 16px;
        font-size: 16px;
    }

    .faq-page-answer-inner {
        padding: 16px;
        font-size: 14px;
    }
}
