/* Product-page design tokens from product.html. Keep local to this block for easy future edits. */
.wp-block-ananeoo-product-faq-sec.product-faq-sec {
    --bg: oklch(98.5% 0.005 220);
    --surface: oklch(100% 0 0);
    --surface-2: oklch(96.7% 0.008 220);
    --teal-soft: oklch(95.5% 0.022 210);
    --ink: oklch(26% 0.032 232);
    --muted: #003660;
    --border: oklch(90% 0.012 220);
    --teal: oklch(32% 0.045 228);
    --teal-deep: oklch(27% 0.04 230);
    --teal-2: oklch(46% 0.055 224);
    --accent: oklch(74% 0.095 80);
    --accent-hi: oklch(80% 0.085 82);
    --accent-ink: oklch(26% 0.045 75);
    --blue: oklch(54% 0.13 244);
    --blue-soft: oklch(94% 0.03 240);
    --green: oklch(54% 0.12 165);
    --green-soft: oklch(94% 0.04 165);
    --green-ink: oklch(40% 0.09 165);
    --on-teal: oklch(100% 0 0);
    --on-teal-mut: oklch(89% 0.018 220);
    --border-teal: oklch(72% 0.03 220 / 0.26);
    --t-label: 0.82rem;
    --t-lead: clamp(1.15rem, 1.05rem + 0.4vw, 1.34rem);
    --t-h4: clamp(1.2rem, 1.06rem + 0.5vw, 1.42rem);
    --t-h3: clamp(1.42rem, 1.2rem + 1vw, 1.9rem);
    --t-h2: clamp(1.85rem, 1.4rem + 2vw, 2.9rem);
    --t-h1: clamp(2.3rem, 1.6rem + 3.4vw, 3.85rem);
    font-family: var(--font-body);
    font-size: clamp(17px, 1rem + 0.25vw, 19.5px);
    line-height: 1.65;
    background: var(--surface-2);
    padding-top: 50px;
    padding-bottom: 50px;
}

.product-faq-sec .faq {
    margin-top: 40px;
    max-width: none;
}

.product-faq-sec .eyebrow {
    color: var(--faq-eyebrow-color, inherit);
    font-size: var(--faq-eyebrow-font-size, var(--t-label)) !important;
    text-transform: var(--faq-eyebrow-text-transform, uppercase);
}

.product-faq-sec .head :is(h1, h2, h3, h4, h5, h6, p, div, span) {
    color: var(--faq-heading-color, inherit);
    font-size: var(--faq-heading-font-size, var(--t-h2)) !important;
    text-transform: var(--faq-heading-text-transform, none);
}

#product-faq-sec-3-title {
    color: #003360 !important;
}

.product-faq-sec .faq-item {
    border-bottom: 1px solid var(--border);
}

.product-faq-sec .faq-item:first-child {
    border-top: 1px solid var(--border);
}

.product-faq-sec .faq-q {
    width: 100%;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--faq-question-color, #003360);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
    padding: 20px 4px;
    font: inherit;
    font-size: var(--faq-question-font-size, inherit) !important;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.product-faq-sec .faq-q .faq-ic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--teal);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.product-faq-sec .faq-q[aria-expanded="true"] .faq-ic {
    transform: rotate(45deg);
    background: var(--accent-gradient);
    color: var(--accent-ink);
}

.product-faq-sec .faq-a {
    display: none;
    padding: 0 4px 26px;
    color: var(--faq-answer-color, var(--muted));
    font-size: var(--faq-answer-font-size, 1.14rem) !important;
}

.product-faq-sec .faq-a p {
    display: block;
    padding: 0;
    color: inherit;
    font-size: inherit !important;
}

.product-faq-sec .faq-a :where(span, b, strong, em, i, a) {
    color: inherit;
    font-size: inherit !important;
}

.product-faq-sec .faq-a p + p {
    margin-top: 12px;
}

.product-faq-sec .faq-q[aria-expanded="true"] + .faq-a {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .product-faq-sec .faq-ic {
        transition: none;
    }
}

@media (max-width: 640px) {
    .product-faq-sec .head :is(h1, h2, h3, h4, h5, h6) {
        overflow-wrap: anywhere;
        text-align: center;
    }

    .product-faq-sec .eyebrow {
        display: flex;
        align-items: center;
        text-align: center;
    }

    .product-faq-sec .faq-q {
        min-height: 68px;
        padding-block: 16px;
    }
}

@media (max-width: 900px) {
    .product-faq-sec .eyebrow {
        font-size: var(--faq-eyebrow-tablet-font-size, var(--faq-eyebrow-font-size, var(--t-label))) !important;
    }

    .product-faq-sec .head :is(h1, h2, h3, h4, h5, h6, p, div, span) {
        font-size: var(--faq-heading-tablet-font-size, var(--faq-heading-font-size, var(--t-h2))) !important;
    }

    .product-faq-sec .faq-q {
        font-size: var(--faq-question-tablet-font-size, var(--faq-question-font-size, inherit)) !important;
    }

    .product-faq-sec .faq-a {
        font-size: var(--faq-answer-tablet-font-size, var(--faq-answer-font-size, 1.14rem)) !important;
    }
}

@media (max-width: 600px) {
    .product-faq-sec .eyebrow {
        display: flex;
        align-items: center;
        text-align: center;
        font-size: var(--faq-eyebrow-mobile-font-size, var(--faq-eyebrow-tablet-font-size, var(--faq-eyebrow-font-size, var(--t-label)))) !important;
    }

    .product-faq-sec .head :is(h1, h2, h3, h4, h5, h6, p, div, span) {
        font-size: var(--faq-heading-mobile-font-size, var(--faq-heading-tablet-font-size, var(--faq-heading-font-size, var(--t-h2)))) !important;
    }

    .product-faq-sec .faq-q {
        font-size: var(--faq-question-mobile-font-size, var(--faq-question-tablet-font-size, var(--faq-question-font-size, inherit))) !important;
    }

    .product-faq-sec .faq-a {
        font-size: var(--faq-answer-mobile-font-size, var(--faq-answer-tablet-font-size, var(--faq-answer-font-size, 1.14rem))) !important;
    }
}

.product-faq-sec.product-faq-sec--preview-tablet .faq-q {
    font-size: var(--faq-question-tablet-font-size, var(--faq-question-font-size, inherit)) !important;
}

.product-faq-sec.product-faq-sec--preview-tablet .eyebrow {
    font-size: var(--faq-eyebrow-tablet-font-size, var(--faq-eyebrow-font-size, var(--t-label))) !important;
}

.product-faq-sec.product-faq-sec--preview-tablet .head :is(h1, h2, h3, h4, h5, h6, p, div, span) {
    font-size: var(--faq-heading-tablet-font-size, var(--faq-heading-font-size, var(--t-h2))) !important;
}

.product-faq-sec.product-faq-sec--preview-tablet .faq-a {
    font-size: var(--faq-answer-tablet-font-size, var(--faq-answer-font-size, 1.14rem)) !important;
}

.product-faq-sec.product-faq-sec--preview-mobile .faq-q {
    font-size: var(--faq-question-mobile-font-size, var(--faq-question-tablet-font-size, var(--faq-question-font-size, inherit))) !important;
}

.product-faq-sec.product-faq-sec--preview-mobile .eyebrow {
    font-size: var(--faq-eyebrow-mobile-font-size, var(--faq-eyebrow-tablet-font-size, var(--faq-eyebrow-font-size, var(--t-label)))) !important;
}

.product-faq-sec.product-faq-sec--preview-mobile .head :is(h1, h2, h3, h4, h5, h6, p, div, span) {
    font-size: var(--faq-heading-mobile-font-size, var(--faq-heading-tablet-font-size, var(--faq-heading-font-size, var(--t-h2)))) !important;
}

.product-faq-sec.product-faq-sec--preview-mobile .faq-a {
    font-size: var(--faq-answer-mobile-font-size, var(--faq-answer-tablet-font-size, var(--faq-answer-font-size, 1.14rem))) !important;
}
