/* =============================================
   MFA Product Page — External Stylesheet
   Extracted from mfa-product-page.php
   ============================================= */

/* ══════════════════════════════════════════════════
   BLOCK 1 — Related Products / Carousel
   ══════════════════════════════════════════════════ */

/* ── Carousel container ── */
.single-product .related.products,
.single-product section.related.products {
    grid-column: 1 / -1 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    max-width: none !important;
    padding: 24px 24px 48px !important;
    border-top: none !important;
    background: #f8fafc !important;
    clear: both !important;
    box-sizing: border-box !important;
    text-align: center !important;
}
/* ── Related products — align content with product grid (1140px centered) ── */
.woocommerce.single-product .related.products,
.woocommerce.single-product section.related.products {
    text-align: left !important;
    padding-left: max(24px, calc((100vw - 1140px) / 2 - 6px)) !important;
    padding-right: max(24px, calc((100vw - 1140px) / 2 - 6px)) !important;
}
/* ── Title — exact DESCRIPTION tab style ── */
.woocommerce.single-product .related.products > h2,
.woocommerce.single-product section.related.products > h2 {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1F6C69 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin: 0 !important;
    padding: 14px 0 !important;
    text-align: left !important;
    display: inline-block !important;
    border-bottom: 3px solid #1F6C69 !important;
    position: relative !important;
    line-height: 1.6 !important;
}
.woocommerce.single-product .related.products > h2::after,
.woocommerce.single-product section.related.products > h2::after {
    display: none !important;
}
/* ── Carousel track wrapper ── */
.mfa-carousel-wrap {
    position: relative;
    max-width: 1060px;
    margin: 32px auto 0;
    padding: 0 48px;
}
.single-product .related.products ul.products,
.single-product .related.products ul.products.columns-4,
.woocommerce .single-product .related.products ul.products,
.woocommerce .single-product .related.products ul.products.columns-4 {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 18px !important;
    list-style: none !important;
    padding: 8px 4px 16px !important;
    margin: 0 !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.single-product .related.products ul.products::-webkit-scrollbar {
    display: none !important;
}
/* ── Carousel card sizing ── */
.single-product .related.products ul.products li.product,
.single-product .related.products ul.products.columns-4 li.product,
.woocommerce ul.products.columns-4 li.product {
    flex: 0 0 300px !important;
    max-width: 300px !important;
    min-width: 260px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    scroll-snap-align: start !important;
}
.single-product .related.products ul.products li.product::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 0 !important; height: 3px !important;
    background: #1F6C69 !important;
    transition: width 0.35s ease !important;
    z-index: 1 !important;
}
.single-product .related.products ul.products li.product:hover::before {
    width: 100% !important;
}
.single-product .related.products ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18) !important;
}
.single-product .related.products ul.products li.product a img {
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    display: block !important;
}
.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 14px 16px 4px !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
}
.single-product .related.products ul.products li.product .price {
    padding: 0 16px 10px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1F6C69 !important;
}
.single-product .related.products ul.products li.product .button {
    width: calc(100% - 32px) !important;
    margin: auto 16px 16px !important;
    text-align: center !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 10px !important;
    background: #1F6C69 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    transition: background 0.3s ease !important;
    display: block !important;
}
.single-product .related.products ul.products li.product .button:hover {
    background: #F97316 !important;
}
/* ── Carousel navigation arrows ── */
.mfa-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s, border-color 0.2s;
    border-radius: 0;
    padding: 0;
}
.mfa-carousel-btn:hover {
    background: #1F6C69;
    border-color: #1F6C69;
    color: #fff;
}
.mfa-carousel-btn:hover svg { stroke: #fff; }
.mfa-carousel-btn--prev { left: 0; }
.mfa-carousel-btn--next { right: 0; }
/* ── Responsive ── */
@media (max-width: 768px) {
    .mfa-carousel-wrap { padding: 0 12px; }
    .mfa-carousel-btn { display: none; }
    .single-product .related.products ul.products li.product,
    .single-product .related.products ul.products.columns-4 li.product {
        flex: 0 0 260px !important;
        min-width: 220px !important;
    }
}


/* ══════════════════════════════════════════════════
   BLOCK 2 — Main Product Page CSS
   ══════════════════════════════════════════════════ */

/* ── Configured product overrides (was PHP conditional) ── */
.mfa-configured-product .woocommerce.single-product .woocommerce-tabs ul.tabs {
    border-bottom: none !important;
}
.mfa-configured-product .woocommerce.single-product .woocommerce-tabs ul.tabs li a {
    padding: 14px 0 !important;
}

.mfa-configured-product .single-product .cart .quantity {
    display: none !important;
}

.mfa-configured-product .woocommerce.single-product div.product {
    row-gap: 16px !important;
}
.mfa-configured-product .woocommerce.single-product .woocommerce-tabs {
    margin-top: 0 !important;
}
.mfa-configured-product .woocommerce.single-product .woocommerce-tabs .panel {
    padding: 24px 24px 16px !important;
}
/* Description texte — pleine largeur, aligné à gauche comme DESCRIPTION tab */
.mfa-configured-product .woocommerce.single-product .woocommerce-tabs {
    text-align: left !important;
}
.mfa-configured-product .woocommerce.single-product .mfa-prod-desc {
    max-width: 900px !important;
    margin: 0 !important;
    text-align: left !important;
}
.mfa-configured-product .woocommerce.single-product .mfa-prod-desc > p {
    text-align: left !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #475569 !important;
}

/* ── Hero product image ── */
.mfa-service-visual-wrap {
    width: 100% !important;
    margin: 0 !important;
}

.mfa-hero-image {
    width: 100%;
    overflow: hidden;
}

.mfa-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Bloc description + bullets + prix sous l'image (colonne gauche) ── */
.mfa-hero-below {
    padding: 24px 0 0;
}
.mfa-hero-below__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 16px;
}
.mfa-hero-below__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.mfa-hero-below__list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 8px;
}
.mfa-hero-below__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #1F6C69;
}
.mfa-hero-below__price {
    font-size: 28px;
    font-weight: 800;
    color: #1F6C69;
    padding: 16px 0 0;
    border-top: 1px solid #e2e8f0;
}
.mfa-hero-below__price del {
    color: #94a3b8;
    font-size: 18px;
    font-weight: 400;
}
.mfa-hero-below__price ins {
    text-decoration: none;
}

/* ── Masquer description longue + prix en doublon dans le summary (colonne droite) ── */
.woocommerce.single-product .summary > .woocommerce-product-details__short-description,
.woocommerce.single-product .summary > .price {
    display: none !important;
}

.mfa-product-intro {
    margin: 0 0 16px !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #334155 !important;
}

.mfa-product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.mfa-product-pills span {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1F6C69;
    background: rgba(31, 108, 105, 0.08);
}

.mfa-product-included {
    margin: 0 0 24px;
    padding: 18px 18px 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.mfa-product-included__label {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1F6C69;
}

.mfa-product-included__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mfa-product-included__list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.55;
    color: #0f172a;
}

.mfa-product-included__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #F97316;
}

.mfa-secondary-cta {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.mfa-secondary-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0f172a;
    text-decoration: none;
    background: transparent;
    border: 1px solid #cbd5e1;
    transition: border-color .25s ease, color .25s ease, background-color .25s ease;
}

.mfa-secondary-cta__button:hover {
    color: #1F6C69;
    border-color: #1F6C69;
    background: rgba(31, 108, 105, 0.04);
}

.mfa-secondary-cta__text {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

/* ══════════════════════════════════════════════════════
   Product Description — Unified v6
   Design: teal #1F6C69, orange #F97316, dark #0f172a
   Sharp edges, uniform section pattern
   ══════════════════════════════════════════════════════ */

/* ── Base wrapper ── */
.mfa-prod-desc {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    padding: 0;
    margin: 0;
}

/* ── Paragraphs ── */
.mfa-prod-desc > p {
    font-size: 16px;
    line-height: 1.85;
    color: #475569;
    margin: 0 0 24px;
    max-width: 800px;
}
.mfa-prod-desc > p:first-child {
    font-size: 17px;
    color: #334155;
}

.mfa-prod-desc strong {
    font-weight: 700;
    color: #0f172a;
}

/* ── Separator between sections ── */
.mfa-separator {
    height: 1px;
    background: linear-gradient(to right, #1F6C69, #e2e8f0 40%);
    margin: 48px 0;
    border: none;
}

/* ══════════════════════════════════════════════════
   UNIFIED SECTION PATTERN — used by ALL sections
   ══════════════════════════════════════════════════ */
.mfa-section {
    margin: 0 0 8px;
    padding: 0;
}
/* Add spacing before sections that follow other content */
.mfa-separator + .mfa-section,
.mfa-section + .mfa-section,
p + .mfa-section {
    margin-top: 0;
}

/* Section title — exact DESCRIPTION tab style (left-aligned, underline = text width) */
.mfa-section__title {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1F6C69 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 14px 0 !important;
    border: none !important;
    border-bottom: 3px solid #1F6C69 !important;
    line-height: 1.6 !important;
    display: inline-block !important;
}
/* Wrapper — no gray line, left-aligned */
.mfa-section__title-wrap {
    text-align: left;
    margin-bottom: 32px;
    border-bottom: none;
}

/* Teal underline div — hidden, effect now on title itself */
.mfa-section__line {
    display: none;
}

/* Subtitle — hidden */
.mfa-section__sub {
    display: none;
}

/* ══════════════════════════════════════════════════
   UNIFIED CARD GRID — lightweight open layout
   ══════════════════════════════════════════════════ */
.mfa-prod-desc .mfa-card-grid,
.mfa-card-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 40px !important;
    margin: 0 !important;
    padding: 4px 0 0 !important;
}

/* Card — open, no border, no background — override global theme */
.mfa-prod-desc .mfa-card,
.mfa-card {
    background: transparent !important;
    border: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* No top line */
.mfa-prod-desc .mfa-card::before,
.mfa-card::before {
    display: none !important;
}

/* Subtle hover lift */
.mfa-prod-desc .mfa-card:hover,
.mfa-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    transition: transform .3s ease;
}
.mfa-card:hover .mfa-card__icon-wrap {
    background: rgba(31, 108, 105, 0.12);
    transition: background .3s ease;
}

/* ══════════════════════════════════════════════════
   TIMELINE — Comment ça marche (horizontal flow)
   ══════════════════════════════════════════════════ */
.mfa-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin: 0;
}

/* Connecting line behind circles */
.mfa-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.mfa-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

/* Number — plain text, no border, no background */
.mfa-timeline__circle {
    font-weight: 800;
    font-size: 32px;
    color: #F97316;
    line-height: 1;
    position: relative;
    z-index: 1;
    background: #f8fafc;
    padding: 4px 10px;
    margin-bottom: 12px;
    transition: color .3s ease;
}

.mfa-timeline__step:hover .mfa-timeline__circle {
    color: #1F6C69;
}

/* Icon below number */
.mfa-timeline__icon {
    margin-bottom: 14px;
    opacity: 0.65;
    transition: opacity .3s ease;
}
.mfa-timeline__step:hover .mfa-timeline__icon {
    opacity: 1;
}

.mfa-timeline__title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 6px;
}

.mfa-timeline__desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.6;
    max-width: 200px;
}

/* ── Timeline responsive ── */
@media (max-width: 1024px) {
    .mfa-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 0;
    }
    .mfa-timeline::before {
        display: none;
    }
    .mfa-timeline__step {
        padding: 0 16px;
    }
    /* Vertical connector between rows */
    .mfa-timeline__step:nth-child(-n+2)::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        width: 2px;
        height: 16px;
        background: #e2e8f0;
    }
}
@media (max-width: 480px) {
    .mfa-timeline {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .mfa-timeline__step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid #e2e8f0;
    }
    .mfa-timeline__step:last-child {
        border-bottom: none;
    }
    .mfa-timeline__circle {
        font-size: 26px;
        padding: 0;
        margin: 0;
        min-width: 32px;
        background: transparent;
    }
    .mfa-timeline__icon {
        display: none;
    }
    .mfa-timeline__step:nth-child(-n+2)::after {
        display: none;
    }
    .mfa-timeline__desc {
        max-width: none;
    }
}

/* Icon wrap — soft teal circle, compact */
.mfa-prod-desc .mfa-card__icon-wrap,
.mfa-card__icon-wrap {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(31, 108, 105, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 14px !important;
    transition: background .3s ease;
}
.mfa-prod-desc .mfa-card__icon-wrap svg,
.mfa-card__icon-wrap svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #1F6C69 !important;
    fill: none !important;
}

/* Legacy .mfa-card__icon fallback */
.mfa-card__icon {
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card title — compact */
.mfa-prod-desc .mfa-card__title,
.mfa-card__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 6px !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

/* Card description — compact */
.mfa-prod-desc .mfa-card__desc,
.mfa-card__desc {
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.65 !important;
    text-align: center !important;
    max-width: 260px;
    margin: 0 auto !important;
}

/* ══════════════════════════════════════════════════
   DOCUMENTS LIST — inside mfa-section
   ══════════════════════════════════════════════════ */
.mfa-docs-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
}
.mfa-docs-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}
.mfa-docs-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 8px; height: 8px;
    background: #1F6C69;
}

.mfa-check-list,
.mfa-warning-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    gap: 12px;
}

.mfa-check-list li,
.mfa-warning-list li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
}

.mfa-check-list li::before,
.mfa-warning-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
}

.mfa-check-list li::before {
    background: #1F6C69;
}

.mfa-warning-list li::before {
    background: #F97316;
}

.mfa-note-box {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 4px solid #1F6C69;
    background: rgba(31, 108, 105, 0.05);
    color: #334155;
    font-size: 14px;
    line-height: 1.75;
}

.mfa-note-box strong {
    color: #0f172a;
}

/* ── Headings (default fallback for un-transformed h2/h3) ── */
.mfa-prod-desc h2:not(.mfa-section__title) {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 40px 0 16px;
    padding: 0;
    border: none;
}
.mfa-prod-desc h3:not(.mfa-section__title) {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 12px;
}

/* ── Unordered lists (non-doc) ── */
.mfa-prod-desc ul:not(.mfa-docs-list) {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.mfa-prod-desc ul:not(.mfa-docs-list) li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
}
.mfa-prod-desc ul:not(.mfa-docs-list) li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 7px; height: 7px;
    background: #1F6C69;
}

/* ── Blockquotes ── */
.mfa-prod-desc blockquote {
    background: rgba(31, 108, 105, 0.04);
    border-left: 4px solid #1F6C69;
    padding: 24px 28px;
    margin: 24px 0;
    font-style: normal;
}

/* ── Italic disclaimers ── */
.mfa-prod-desc em {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px)
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Product grid: stack columns */
    .woocommerce.single-product div.product {
        display: flex !important;
        flex-direction: column !important;
        row-gap: 12px !important;
    }
    .woocommerce.single-product div.product .images,
    .woocommerce.single-product div.product .summary {
        width: 100% !important;
        float: none !important;
    }
    /* Hero image + below block */
    .mfa-service-visual-wrap {
        margin: 0 !important;
    }
    .mfa-hero-below {
        padding: 16px 0 0;
    }
    .mfa-hero-below__price {
        font-size: 24px;
    }
    /* Pills wrap */
    .mfa-product-pills span {
        font-size: 10px;
        padding: 6px 10px;
    }
    /* Trust bar items stack */
    .mfa-product-trust-wrap {
        flex-direction: column;
        gap: 12px;
    }
    /* Card grid */
    .mfa-card-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        max-width: 300px;
        margin: 0 auto !important;
    }
    .mfa-card__desc { max-width: none; }
    .mfa-section__title { font-size: 13px !important; }
    .mfa-section__title-wrap { margin-bottom: 24px; }
    .mfa-docs-list { grid-template-columns: 1fr; }
    /* Tabs — reduce padding */
    .woocommerce.single-product .woocommerce-tabs .panel {
        padding: 16px 12px !important;
    }
    /* Secondary CTA — full width */
    .mfa-secondary-cta__button {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile (480px)
   ══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    /* Breadcrumb — smaller font */
    .woocommerce-breadcrumb {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
    /* Product title */
    .woocommerce.single-product div.product .product_title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    /* Expertise badge */
    .woocommerce.single-product .summary > div:first-child {
        font-size: 10px !important;
    }
    /* Intro text */
    .mfa-product-intro {
        font-size: 14px !important;
    }
    /* Included box */
    .mfa-product-included {
        padding: 14px !important;
    }
    .mfa-product-included__list li {
        font-size: 13px;
    }
    /* Guarantee boxes — 2+1 or stack */
    .mfa-product-trust-guarantee {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    /* Hero below */
    .mfa-hero-below__desc {
        font-size: 13px;
    }
    .mfa-hero-below__list li {
        font-size: 13px;
    }
    .mfa-hero-below__price {
        font-size: 22px;
    }
    /* Tab panel */
    .woocommerce.single-product .woocommerce-tabs .panel {
        padding: 12px 8px !important;
    }
    /* Description text */
    .mfa-prod-desc > p {
        font-size: 14px !important;
    }
    .mfa-prod-desc > p:first-child {
        font-size: 15px;
    }
    /* Check/warning lists */
    .mfa-check-list li,
    .mfa-warning-list li {
        font-size: 14px;
    }
}
