/* Giro Soin — feuille de style unique */

:root {
    --mint: #02c39a;
    --mint-dark: #01977a;
    --mint-soft: rgba(2, 195, 154, .12);
    --deep: #0a2f2c;
    --deep-2: #10473f;
    --sand: #d8b98a;
    --sand-soft: rgba(216, 185, 138, .18);
    --bg: #f3f7f6;
    --card: #ffffff;
    --ink: #0f211f;
    --muted: #6d7f7c;
    --line: #e2eae8;
    --warn: #c9791f;
    --warn-soft: rgba(201, 121, 31, .13);
    --info: #2b6cb0;
    --info-soft: rgba(43, 108, 176, .12);
    --danger: #cf4b4b;
    --danger-soft: rgba(207, 75, 75, .12);
    --ok-soft: rgba(2, 195, 154, .14);
    --radius-lg: 22px;
    --radius: 16px;
    --radius-sm: 11px;
    --shadow: 0 8px 24px rgba(10, 47, 44, .07);
    --shadow-soft: 0 2px 10px rgba(10, 47, 44, .05);
    --nav-h: 62px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

[hidden] { display: none !important; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
}

body.modal-open { overflow: hidden; }

h1, h2, h3, h4 { margin: 0 0 .4rem; line-height: 1.22; letter-spacing: -.01em; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.15rem; }
h3 { font-size: 1rem; }
p { margin: 0 0 .6rem; }
a { color: var(--deep); text-decoration: none; }
img { max-width: 100%; display: block; }

.muted { color: var(--muted); }
.small { font-size: .82rem; }
.tiny { font-size: .74rem; }
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.mono { font-variant-numeric: tabular-nums; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.stack > * + * { margin-top: .7rem; }
.mt-1 { margin-top: .6rem; }
.mt-2 { margin-top: 1.1rem; }
.mb-1 { margin-bottom: .6rem; }

/* ---------------- Coquille application ---------------- */

.app-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(120deg, var(--deep) 0%, var(--deep-2) 100%);
    color: #fff;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 14px 12px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.app-header .brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #fff;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--mint);
    color: var(--deep);
    flex: 0 0 36px;
}

.brand-txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-txt strong { font-size: 1rem; letter-spacing: -.01em; }
.brand-txt small { color: rgba(255, 255, 255, .62); font-size: .74rem; }

.header-actions { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.icon-btn:hover { background: rgba(255, 255, 255, .16); }

.menu { position: relative; }
.menu > summary { list-style: none; }
.menu > summary::-webkit-details-marker { display: none; }
.menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 232px;
    background: var(--card);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(10, 47, 44, .22);
    padding: .4rem;
    z-index: 60;
}
.menu-panel a, .menu-panel button {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    padding: .7rem .8rem;
    border: 0;
    background: none;
    border-radius: var(--radius-sm);
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
}
.menu-panel a:hover, .menu-panel button:hover { background: var(--bg); }
.menu-sep { height: 1px; background: var(--line); margin: .3rem .4rem; }

.app-main {
    padding: 16px 14px calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 26px);
    max-width: 1080px;
    margin: 0 auto;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 6px 4px calc(env(safe-area-inset-bottom, 0px) + 6px);
}

.nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 2px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 600;
    border-radius: 12px;
}

.nav-item .nav-ico { position: relative; display: grid; place-items: center; }
.nav-item.is-active { color: var(--deep); }
.nav-item.is-active .nav-ico {
    background: var(--mint-soft);
    border-radius: 12px;
    padding: 3px 10px;
}
.nav-item.is-active .nav-label { color: var(--mint-dark); }

.nav-badge {
    position: absolute;
    top: -3px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--danger);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

/* ---------------- Cartes et panneaux ---------------- */

.panel {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 234, 232, .8);
}

.panel + .panel { margin-top: 14px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .8rem; }
.panel-head h2 { margin: 0; }

.page-title { margin-bottom: 12px; }
.page-title h1 { margin-bottom: .15rem; }
.page-title p { margin: 0; }

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.kpi {
    background: var(--card);
    border-radius: var(--radius);
    padding: 13px 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.kpi-value { font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; }
.kpi-label { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.kpi-foot { margin-top: .3rem; font-size: .75rem; display: flex; align-items: center; gap: .25rem; }
.kpi.is-hero {
    grid-column: 1 / -1;
    background: linear-gradient(130deg, var(--deep) 0%, var(--deep-2) 100%);
    border: 0;
    color: #fff;
}
.kpi.is-hero .kpi-label { color: rgba(255, 255, 255, .68); }
.kpi.is-hero .kpi-value { font-size: 1.9rem; }
.kpi.is-hero .muted { color: rgba(255, 255, 255, .72); }

.trend-up { color: var(--mint-dark); font-weight: 600; }
.trend-down { color: var(--danger); font-weight: 600; }
.kpi.is-hero .trend-up { color: #6ef0cf; }
.kpi.is-hero .trend-down { color: #ffb3b3; }

.two-cols { display: grid; grid-template-columns: 1fr; gap: 14px; }
.split { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* ---------------- Boutons ---------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .72rem 1.05rem;
    border-radius: 13px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    transition: transform .12s ease, background .16s ease, box-shadow .16s ease;
}
.btn:active { transform: scale(.975); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--mint); color: #04231c; box-shadow: 0 6px 16px rgba(2, 195, 154, .28); }
.btn-primary:hover { background: #04d3a7; }
.btn-dark { background: var(--deep); color: #fff; }
.btn-soft { background: var(--mint-soft); color: var(--deep); }
.btn-soft:hover { background: rgba(2, 195, 154, .2); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--bg); }
.btn-danger { background: var(--danger-soft); color: var(--danger); }
.btn-danger:hover { background: rgba(207, 75, 75, .2); }
.btn-outline-light { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn-sm { padding: .48rem .75rem; font-size: .82rem; border-radius: 11px; }
.btn-block { width: 100%; }
.btn-icon { padding: .5rem; border-radius: 11px; }

.btn-install {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .78rem 1.15rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--deep);
    font: inherit;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}
.btn-install .bi-icon { display: grid; place-items: center; color: var(--mint-dark); }

/* ---------------- Formulaires ---------------- */

.form { display: grid; gap: .8rem; }

.field { display: grid; gap: .32rem; }
.field > span { font-size: .8rem; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea, input[type="search"], input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="url"], select, textarea {
    width: 100%;
    padding: .72rem .85rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font: inherit;
    font-size: 16px;
    color: var(--ink);
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, select:focus, textarea:focus, input:focus {
    outline: 2px solid rgba(2, 195, 154, .35);
    outline-offset: 1px;
    border-color: var(--mint);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: .8rem; }
.check { display: flex; align-items: flex-start; gap: .55rem; font-size: .88rem; }
.check input { width: 20px; height: 20px; flex: 0 0 20px; accent-color: var(--mint); }
.form-feedback { margin: 0; padding: .6rem .8rem; border-radius: 11px; font-size: .86rem; }
.form-feedback.ok { background: var(--ok-soft); color: var(--mint-dark); }
.form-feedback.err { background: var(--danger-soft); color: var(--danger); }

.search-bar { display: flex; gap: .5rem; align-items: center; }
.search-bar input { flex: 1 1 auto; }
.search-bar .sb-ico { color: var(--muted); display: grid; place-items: center; }

.chips { display: flex; gap: .4rem; overflow-x: auto; padding: .15rem 0 .35rem; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
    flex: 0 0 auto;
    padding: .42rem .8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}
.chip.is-active { background: var(--deep); border-color: var(--deep); color: #fff; }

/* ---------------- Badges ---------------- */

.badge {
    display: inline-flex;
    align-items: center;
    padding: .22rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}
.badge-ok { background: var(--ok-soft); color: var(--mint-dark); }
.badge-warn { background: var(--warn-soft); color: var(--warn); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-muted { background: #eef2f1; color: var(--muted); }
.tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--mint-dark);
    background: var(--mint-soft);
    padding: .2rem .5rem;
    border-radius: 7px;
}

/* ---------------- Listes ---------------- */

.list { display: grid; gap: 10px; }
.list-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    box-shadow: var(--shadow-soft);
}
.list-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.list-card-title { font-weight: 700; font-size: .98rem; }
.list-card-sub { color: var(--muted); font-size: .82rem; }
.list-meta { display: flex; flex-wrap: wrap; gap: .5rem .95rem; margin-top: .55rem; font-size: .82rem; color: var(--muted); }
.list-meta b { color: var(--ink); font-weight: 700; }
.list-actions { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .75rem; }

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .88rem;
    background: var(--mint-soft);
    color: var(--deep);
    flex: 0 0 40px;
}
.avatar-lg { width: 52px; height: 52px; border-radius: 17px; font-size: 1.05rem; flex-basis: 52px; }

.empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--muted);
    background: var(--card);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    font-size: .9rem;
}

.skeleton {
    height: 78px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, #eef3f2 25%, #f7faf9 50%, #eef3f2 75%);
    background-size: 240% 100%;
    animation: shine 1.3s infinite linear;
}
@keyframes shine { from { background-position: 240% 0; } to { background-position: 0 0; } }

/* ---------------- Tableaux ---------------- */

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .86rem; }
th, td { padding: .68rem .7rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
th { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: #fafcfb; }
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------------- Graphiques ---------------- */

.chart-box { position: relative; width: 100%; }
.chart-box svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-legend { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .5rem; font-size: .78rem; color: var(--muted); }
.chart-legend span { display: inline-flex; align-items: center; gap: .35rem; }
.dot { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }

.donut-wrap { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.donut-legend { display: grid; gap: .35rem; font-size: .84rem; }
.donut-legend div { display: flex; align-items: center; gap: .45rem; }

.progress { height: 8px; border-radius: 999px; background: #eef3f2; overflow: hidden; }
.progress > span { display: block; height: 100%; border-radius: 999px; background: var(--mint); }

/* ---------------- Page publique ---------------- */

.public-top {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 14px 10px;
    background: rgba(243, 247, 246, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.public-top .brand { color: var(--ink); }
.public-top .brand-mark { background: var(--deep); color: var(--mint); }
.public-top .brand-txt small { color: var(--muted); }

.public-main { padding: 16px 14px calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 26px); max-width: 780px; margin: 0 auto; }
.public-intro h1 { margin-bottom: .3rem; }

.offer-hero {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.offer-hero img { width: 100%; height: 210px; object-fit: cover; }
.offer-hero-body { padding: 16px; }
.offer-desc { color: var(--muted); }
.offer-price { font-size: 1.6rem; font-weight: 700; color: var(--deep); margin: .4rem 0; }

.offer-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
.offer-card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.offer-card img { width: 100%; height: 168px; object-fit: cover; }
.offer-card-body { padding: 13px 14px 15px; }
.offer-card-body h2 { font-size: 1rem; margin: .35rem 0 .25rem; }
.offer-card-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .7rem; }
.offer-card-foot strong { font-size: 1.1rem; }

.contact-lines { display: grid; gap: .5rem; margin: .6rem 0; }
.contact-line { display: flex; align-items: center; gap: .55rem; padding: .7rem .85rem; background: var(--bg); border-radius: 12px; color: var(--ink); }

.public-foot { padding: 18px 14px calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 26px); max-width: 780px; margin: 0 auto; }
.public-foot p { margin: 0 0 .3rem; }
.public-foot .btn-install { margin-top: .6rem; }

/* ---------------- Écran de connexion ---------------- */

.auth-screen {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, var(--deep) 0%, #0d3a35 46%, #ffffff 46%);
    padding: calc(env(safe-area-inset-top, 0px) + 34px) 18px calc(env(safe-area-inset-bottom, 0px) + 30px);
}
.auth-brand { text-align: center; color: #fff; margin-bottom: 22px; }
.auth-brand .brand-mark { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 17px; background: var(--mint); color: var(--deep); }
.auth-brand h1 { font-size: 1.5rem; margin-bottom: .2rem; }
.auth-brand p { color: rgba(255, 255, 255, .72); font-size: .88rem; margin: 0; }
.auth-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    box-shadow: 0 20px 50px rgba(10, 47, 44, .22);
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}
.auth-foot { margin-top: auto; padding-top: 22px; text-align: center; color: var(--muted); font-size: .8rem; }
.auth-foot a { color: var(--deep); font-weight: 600; }

/* ---------------- Administration ---------------- */

.admin-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(120deg, #10201e 0%, #1d3f52 100%);
    color: #fff;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 14px 12px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.admin-header .brand-mark { background: var(--sand); color: #33240f; }
.admin-header .brand-txt small { color: rgba(255, 255, 255, .6); }
.admin-tag {
    display: inline-block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--sand);
}

.lock-screen {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: calc(env(safe-area-inset-top, 0px) + 26px) 18px calc(env(safe-area-inset-bottom, 0px) + 26px);
    background: linear-gradient(160deg, #10201e 0%, #1d3f52 100%);
}
.lock-card { background: var(--card); border-radius: var(--radius-lg); padding: 22px 18px; max-width: 440px; width: 100%; box-shadow: 0 20px 50px rgba(0, 0, 0, .3); }
.lock-card .brand-mark { background: var(--deep); color: var(--mint); margin-bottom: 12px; }

/* ---------------- Modale d'installation ---------------- */

.install-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: end center; }
.im-backdrop { position: absolute; inset: 0; background: rgba(8, 24, 22, .55); backdrop-filter: blur(3px); }
.im-box {
    position: relative;
    background: var(--card);
    width: 100%;
    max-width: 460px;
    border-radius: 22px 22px 0 0;
    padding: 20px 18px calc(env(safe-area-inset-bottom, 0px) + 18px);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, .28);
}
.im-box h3 { margin-bottom: .5rem; }
.im-row { display: flex; gap: .7rem; align-items: flex-start; padding: .7rem 0; border-top: 1px solid var(--line); }
.im-row p { margin: .15rem 0 0; font-size: .84rem; color: var(--muted); }
.im-logo { width: 40px; height: 40px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; color: var(--deep); flex: 0 0 40px; }

/* ---------------- Notifications ---------------- */

.toast-host { position: fixed; left: 12px; right: 12px; bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 14px); z-index: 95; display: grid; gap: .45rem; pointer-events: none; }
.toast {
    background: var(--deep);
    color: #fff;
    padding: .78rem .95rem;
    border-radius: 13px;
    font-size: .88rem;
    box-shadow: 0 12px 30px rgba(10, 47, 44, .28);
    animation: toast-in .22s ease;
}
.toast.is-error { background: #7d2626; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------------- Responsive ---------------- */

@media (min-width: 600px) {
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .field-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    body { font-size: 15.5px; }
    .app-main { padding: 22px 22px calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 30px); }
    .kpi-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .two-cols { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1.15fr .85fr; }
    .offer-grid { grid-template-columns: repeat(3, 1fr); }
    .offer-hero { display: grid; grid-template-columns: 1fr 1fr; }
    .offer-hero img { height: 100%; min-height: 260px; }
    .public-main { max-width: 1020px; }
    .public-foot { max-width: 1020px; }
    .im-box { border-radius: 22px; margin-bottom: 0; place-self: center; }
    .install-modal { place-items: center; }
    .bottom-nav { max-width: 620px; margin: 0 auto; border-radius: 20px 20px 0 0; left: 50%; transform: translateX(-50%); right: auto; width: 100%; }
    .toast-host { left: 50%; transform: translateX(-50%); width: 460px; }
}

@media (min-width: 1100px) {
    .app-main { max-width: 1180px; }
    .kpi.is-hero .kpi-value { font-size: 2.1rem; }
}

/* Compléments d'interface */

.menu-head { display: flex; flex-direction: column; padding: .55rem .8rem; }
.menu-head strong { font-size: .9rem; }
.menu-head span { word-break: break-all; }

.app-header .btn-install {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
    padding: .5rem .7rem;
    font-size: .8rem;
    box-shadow: none;
}
.app-header .btn-install .bi-icon { color: var(--mint); }

.admin-header .btn-install {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
    padding: .5rem .7rem;
    font-size: .8rem;
    box-shadow: none;
}
.admin-header .btn-install .bi-icon { color: var(--sand); }

.chart-empty { padding: 1.4rem .6rem; text-align: center; color: var(--muted); font-size: .86rem; }

@media (max-width: 430px) {
    .app-header .btn-install span:last-child,
    .admin-header .btn-install span:last-child { display: none; }
    .app-header .btn-install,
    .admin-header .btn-install { padding: .5rem; }
}

@media (min-width: 768px) {
    .chart-box svg { max-height: 320px; }
}

/* Rangees d'elements courts : autorisees a passer a la ligne sur petit ecran */
.list-card-head,
.panel-head,
.offer-card-foot,
.search-bar,
.contact-line { flex-wrap: wrap; }
