/* ════════════════════════════════════════════
   DestockGym — Page Produits (catalogue)
   assets/css/produits.css
════════════════════════════════════════════ */

.dg-prod {
    --dg-teal: #015C7A;
    --dg-teal-dark: #003F55;
    --dg-dark: #16191c;
    --dg-navy: #0a141e;
    --dg-text: #3d4449;
    --dg-border: #ebeaea;
    width: 100%;
}

/* ════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */

.dg-prod__topbar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px 0;
}

.dg-prod__breadcrumb {
    font-size: 13.5px;
    color: var(--dg-text);
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.dg-prod__breadcrumb a {
    color: var(--dg-text);
    text-decoration: none;
}

.dg-prod__breadcrumb a:hover { color: var(--dg-teal); }

.dg-prod__headrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.dg-prod__title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 58px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dg-dark);
    margin: 0;
}

.dg-prod__title span { color: var(--dg-teal); }

.dg-prod .dg-prod__sort {
    appearance: auto;
    width: auto;
    min-width: 170px;
    max-width: 200px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: #ffffff75;
    font-size: 14px;
    color: var(--dg-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    flex-shrink: 0;
}

.dg-prod__headrow .dg-prod__title { white-space: nowrap; }

/* Bouton Filtres (mobile uniquement) */
.dg-prod .dg-prod__filters-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.6), rgba(1, 92, 122, 0.08));
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 30px -16px rgba(1, 92, 122, 0.45);
    color: var(--dg-teal);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    margin-bottom: 20px;
    transition: box-shadow .25s ease, background .25s ease, color .2s ease;
}

.dg-prod .dg-prod__filters-btn:hover,
.dg-prod .dg-prod__filters-btn:focus {
    color: #fff;
    background: linear-gradient(180deg, rgba(1, 92, 122, 0.96), rgba(1, 92, 122, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 16px 36px -16px rgba(1, 92, 122, 0.6);
}

/* Pastilles catégories */
.dg-prod__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.dg-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #045c7a !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.947);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
                0 10px 26px -12px rgba(1, 92, 122, 0.55);
    transition: background .3s ease, color .25s ease, border-color .3s ease, transform .16s ease;
}

.dg-pill:hover {
    color: var(--dg-teal-dark) !important;
    background: rgba(255, 255, 255, 0.32);
    border-color: var(--dg-teal);
}

.dg-pill.is-active {
    color: var(--dg-teal-dark) !important;
    background: rgba(255, 255, 255, 0.65);
    border-color: var(--dg-teal);
}

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */

.dg-prod__layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 70px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px;
    align-items: start;
}

/* ════════════════════════════════════════════
   SIDEBAR FILTRES
════════════════════════════════════════════ */

.dg-prod__sidebar {
    position: sticky;
    top: 95px;
}

.dg-filters {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.dg-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.dg-filters__title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dg-dark);
    flex: 1;
    text-align: center;
}

.dg-filters__reset {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dg-text);
    text-decoration: underline;
}

.dg-prod .dg-filters__close {
    display: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    color: var(--dg-dark);
    cursor: pointer;
}

.dg-prod .dg-filters__close:hover,
.dg-prod .dg-filters__close:focus {
    background: none;
    color: var(--dg-teal);
}

/* Groupes accordéon */
.dg-fgroup {
    border-top: 1px solid var(--dg-border);
}

.dg-prod .dg-fgroup__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 6px;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dg-dark);
}

.dg-prod .dg-fgroup__head:hover,
.dg-prod .dg-fgroup__head:focus {
    background: none;
    color: var(--dg-teal);
}

.dg-fgroup__chev {
    transition: transform .25s ease;
    color: var(--dg-teal);
    flex-shrink: 0;
}

.dg-fgroup.is-open .dg-fgroup__chev { transform: rotate(180deg); }

.dg-fgroup__body {
    display: none;
    padding: 2px 6px 16px;
}

.dg-fgroup.is-open .dg-fgroup__body { display: block; }


/* Recherche marque */
.dg-prod .dg-fgroup__search {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    margin-bottom: 10px;
    border: 1px solid #d8d6d2;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
}

.dg-prod .dg-fgroup__search:focus {
    outline: none;
    border-color: var(--dg-teal);
}

/* Listes de filtres */
.dg-flist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dg-flist--scroll {
    max-height: 218px;
    overflow-y: scroll;
    padding-right: 10px;
    scrollbar-width: thin;                  /* Firefox */
    scrollbar-color: #c9c6c0 #efede8;
}

.dg-flist--scroll::-webkit-scrollbar { width: 8px; }
.dg-flist--scroll::-webkit-scrollbar-track {
    background: #efede8;
    border-radius: 8px;
}
.dg-flist--scroll::-webkit-scrollbar-thumb {
    background: #c9c6c0;
    border-radius: 8px;
}
.dg-flist--scroll::-webkit-scrollbar-thumb:hover { background: #b3b0aa; }

.dg-flist li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 0;
}

.dg-flist li.is-hidden { display: none; }

.dg-flist label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--dg-text);
    cursor: pointer;
    line-height: 1.3;
}

.dg-prod .dg-flist input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    border: 1px solid #d8d6d2;
    border-radius: 5px;
    background: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.dg-prod .dg-flist input[type="checkbox"]:hover {
    border-color: #c9c6c0;
}

.dg-prod .dg-flist input[type="checkbox"]:checked {
    background: linear-gradient(180deg, rgba(1, 92, 122, 0.92), rgba(1, 92, 122, 0.78));
    border-color: var(--dg-teal);
}

.dg-flist__count {
    font-size: 12.5px;
    color: #9aa0a4;
    flex-shrink: 0;
}

/* Prix */
.dg-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.dg-price input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d8d6d2;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
}

.dg-price input:focus {
    outline: none;
    border-color: var(--dg-teal);
}

.dg-price span { color: #9aa0a4; }

/* Boutons "btn-fifth" (glassmorphism teal) */
.dg-prod .dg-price__apply,
.dg-prod .dg-filters__reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(1, 92, 122, 0.92), rgba(1, 92, 122, 0.78));
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
                0 10px 26px -12px rgba(1, 92, 122, 0.55);
    transition: background .3s ease, color .25s ease, border-color .3s ease,
                box-shadow .3s ease, transform .16s ease;
}

.dg-prod .dg-price__apply:hover,
.dg-prod .dg-price__apply:focus,
.dg-prod .dg-filters__reset-btn:hover {
    color: var(--dg-teal-dark) !important;
    background: rgba(255, 255, 255, 0.32);
    border-color: var(--dg-teal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
                0 8px 22px -14px rgba(1, 92, 122, 0.4);
}

.dg-prod .dg-price__apply:active,
.dg-prod .dg-filters__reset-btn:active { transform: translateY(1px); }

.dg-prod .dg-filters__reset-btn {
    max-width: 180px;
    margin: 20px auto 0;
}

/* ════════════════════════════════════════════
   GRID PRODUITS
════════════════════════════════════════════ */

.dg-prod__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dg-prod__empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--dg-text);
    font-size: 16px;
}

/* ════════════════════════════════════════════
   PAGINATION — style btn-fifth
════════════════════════════════════════════ */

.dg-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* le <ul> généré par paginate_links porte aussi la classe .page-numbers :
   on ne style QUE les liens via .dg-pagination li > .page-numbers */
.dg-pagination ul.page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: none;
    border: none;
    box-shadow: none;
}

.dg-pagination li { margin: 0; padding: 0; }

.dg-pagination li .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dg-teal);
    background: linear-gradient(180deg, rgba(1, 92, 122, 0.12), rgba(1, 92, 122, 0));
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
                0 10px 26px -12px rgba(1, 92, 122, 0.55);
    transition: all .3s ease;
    text-decoration: none;
    cursor: pointer;
}

.dg-pagination li .page-numbers:hover,
.dg-pagination li .page-numbers.current {
    background: linear-gradient(180deg, rgba(1, 92, 122, 0.92), rgba(1, 92, 122, 0.78));
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.dg-pagination li .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
    color: var(--dg-teal);
    cursor: default;
}

.dg-pagination li .prev.page-numbers,
.dg-pagination li .next.page-numbers {
    font-size: 20px;
    line-height: 1;
}

/* ════════════════════════════════════════════
   SECTION MISSION
════════════════════════════════════════════ */

.dg-mission {
    background:
        radial-gradient(80vw 60vh at 85% 10%, rgba(1, 92, 122, 0.25) 0%, transparent 55%),
        linear-gradient(160deg, #0a141e 0%, #0d2330 100%);
    padding: 90px 0;
    margin-top: 30px;
}

.dg-mission__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.dg-mission__eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #4BA5B9;
    margin: 0 0 18px;
}

.dg-mission__title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px;
}

.dg-mission__title span { color: #4BA5B9; }

.dg-mission__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 50px;
}

.dg-mission__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dg-mission__card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 26px 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dg-mission__num {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.dg-mission__card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 12px;
}

.dg-mission__card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ════════════════════════════════════════════
   SECTION FAQ
════════════════════════════════════════════ */

.dg-prodfaq {
    padding: 90px 0;
}

.dg-prodfaq__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.dg-prodfaq__eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--dg-dark, #16191c);
    text-align: center;
    margin: 0 0 10px;
}

.dg-prodfaq__heading {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 38px;
    text-transform: uppercase;
    text-align: center;
    color: #16191c;
    margin: 0 0 50px;
}

.dg-prodfaq__cols {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.dg-prodfaq__title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #16191c;
    margin: 0 0 24px;
}

.dg-prodfaq__title span { color: #015C7A; }

.dg-prodfaq__left p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #3d4449;
    margin: 0 0 18px;
}

/* Items accordéon */
.dg-prodfaq__item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dg-prodfaq__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: #16191c;
    list-style: none;
}

.dg-prodfaq__summary::-webkit-details-marker { display: none; }

.dg-prodfaq__item[open] .dg-prodfaq__summary { color: #015C7A; }

.dg-prodfaq__icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.dg-prodfaq__icon::before,
.dg-prodfaq__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform .25s ease;
}

.dg-prodfaq__icon::before {
    top: 50%; left: 0;
    width: 100%; height: 2px;
    transform: translateY(-50%);
}

.dg-prodfaq__icon::after {
    left: 50%; top: 0;
    width: 2px; height: 100%;
    transform: translateX(-50%);
}

.dg-prodfaq__item[open] .dg-prodfaq__icon::after { transform: translateX(-50%) scaleY(0); }

.dg-prodfaq__answer {
    overflow: hidden;
    transition: height .3s ease;
}

.dg-prodfaq__answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4449;
}

/* ════════════════════════════════════════════
   SECTION CTA CONTACT
════════════════════════════════════════════ */

.dg-prodcta {
    background:
        radial-gradient(60vw 60vh at 15% 80%, rgba(1, 92, 122, 0.2) 0%, transparent 55%),
        radial-gradient(50vw 50vh at 90% 20%, rgba(75, 165, 185, 0.12) 0%, transparent 50%),
        #0a0f14;
    padding: 110px 0;
    text-align: center;
}

.dg-prodcta__eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #4BA5B9;
    margin: 0 0 18px;
}

.dg-prodcta__title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 18px;
}

.dg-prodcta__title span { color: #4BA5B9; }

.dg-prodcta__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 36px;
}

/* Bouton CTA — btn-fifth sur fond sombre */
.dg-prodcta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    min-height: 50px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, rgba(61, 61, 61, 0.3) 0%, rgba(20, 20, 20, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: background .3s ease, border-color .3s ease, transform .16s ease;
}

.dg-prodcta__btn:hover {
    background: linear-gradient(180deg, rgba(1, 92, 122, 0.92), rgba(1, 92, 122, 0.78));
    border-color: rgba(255, 255, 255, 0.55);
}

.dg-prodcta__btn:active { transform: translateY(1px); }

/* ════════════════════════════════════════════
   OVERLAY + DRAWER MOBILE
════════════════════════════════════════════ */

.dg-prod__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.5);
    z-index: 998;
}

body.dg-filters-open .dg-prod__overlay { display: block; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .dg-prod__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .dg-prod__layout { grid-template-columns: 220px 1fr; }
    .dg-mission__cards { grid-template-columns: repeat(2, 1fr); }
    .dg-prodfaq__cols { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {

    .dg-prod__topbar { padding: 24px 20px 0; }
    .dg-prod__layout { padding: 0 20px 50px; grid-template-columns: 1fr; }

    .dg-prod__title { font-size: 40px; }
    .dg-prod__headrow { flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
    .dg-prod__pills { display: none; }
    .dg-prod .dg-prod__filters-btn { display: inline-flex; }

    .dg-prod__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dg-card__btn { padding: 9px 18px; font-size: 12.5px; }
    .dg-card__price { font-size: 16px; }
    .dg-card__title { font-size: 14px; }

    /* Sidebar → drawer plein écran */
    .dg-prod__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(420px, 92vw);
        z-index: 999;
        transform: translateX(-105%);
        transition: transform .3s ease;
        overflow-y: auto;
    }

    body.dg-filters-open .dg-prod__sidebar { transform: translateX(0); }
    body.dg-filters-open { overflow: hidden; }

    .dg-filters {
        min-height: 100%;
        border-radius: 0;
    }

    .dg-prod .dg-filters__close { display: block; }

    .dg-mission { padding: 60px 0; }
    .dg-mission__inner { padding: 0 20px; }
    .dg-mission__title { font-size: 32px; }
    .dg-mission__cards { grid-template-columns: 1fr; }

    .dg-prodfaq { padding: 60px 0; }
    .dg-prodfaq__inner { padding: 0 20px; }
    .dg-prodfaq__title { font-size: 28px; }

    .dg-prodcta { padding: 70px 0; }
    .dg-prodcta__title { font-size: 38px; }

    .dg-pagination li .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ════════════════════════════════════════════
   FAQ liquid glass (design repris d'about — layout autonome)
════════════════════════════════════════════ */
.dg-faq2 {
    padding: 90px var(--dg-gutter);
}

.dg-faq2__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.dg-faq2__eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--dg-dark);
    text-align: center;
    margin: 0 0 10px;
}

.dg-faq2__heading {
    font-family: var(--dg-font-heading);
    font-weight: var(--dg-heavy);
    font-size: var(--dg-h2);
    text-transform: uppercase;
    text-align: center;
    color: var(--dg-dark);
    margin: 0 0 46px;
}

/* ── Item = pilule liquid glass ── */
.dg-faq2__item {
    position: relative;
    margin-bottom: 14px;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.30);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
    backdrop-filter: blur(14px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.55),
        inset 0 -1px 1px rgba(255, 255, 255, 0.15),
        0 10px 30px -16px rgba(1, 92, 122, 0.35);
    transition: background .35s ease, box-shadow .35s ease;
}

/* Reflet diagonal (la lumière qui traverse le verre) */
.dg-faq2__item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.40) 0%,
        rgba(255, 255, 255, 0.08) 32%,
        transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.dg-faq2__item[open] {
    background: rgba(255, 255, 255, 0.50);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.65),
        inset 0 -1px 1px rgba(255, 255, 255, 0.18),
        0 16px 40px -16px rgba(1, 92, 122, 0.45);
}

.dg-faq2__summary {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: var(--dg-semibold);
    color: var(--dg-dark);
    list-style: none;
}

.dg-faq2__summary::-webkit-details-marker { display: none; }

.dg-faq2__item[open] .dg-faq2__summary { color: var(--dg-teal); }

/* Chevron dans un cercle (pivote à l'ouverture) */
.dg-faq2__chev {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--dg-dark);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.dg-faq2__item[open] .dg-faq2__chev {
    transform: rotate(180deg);
    background: var(--dg-teal);
    border-color: var(--dg-teal);
    color: #fff;
}

.dg-faq2__answer {
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: height .3s ease;
}

.dg-faq2__answer-inner {
    padding: 0 26px 24px;
    font-family: var(--dg-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--dg-text);
}

@media (max-width: 767px) {
    .dg-faq2 { padding: 60px 20px; }
}
