/* account.css - Mon compte (myaccount)
   Base (tokens, header/footer, .btn, .cathead) depuis theme.css. Chargée
   uniquement sur la page compte, donc .fblock/.ff sont inclus ici. */

/* Fil d'Ariane */
.crumbs { background: var(--blanc); border-bottom: 1px solid var(--ligne); font-size: 13px; }
.crumbs .wrap { display: flex; gap: 8px; align-items: center; padding: 12px 32px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--noir); }
.crumbs b { color: var(--noir); }
.crumbs .sep { color: #c4c4c4; }

/* Cathead (variante compte : ligne avec bloc utilisateur) */
.account-cathead .wrap { padding: 22px 32px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.account-cathead h1 { font-size: clamp(22px, 2.8vw, 34px); margin: 0; }
.account-cathead .sub { color: var(--muted); font-size: 14px; margin-top: 4px; max-width: none; }
.cathead-user { display: flex; align-items: center; gap: 14px; }
.avatar-lg { width: 52px; height: 52px; border-radius: 50%; background: var(--g700); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; letter-spacing: -.02em; }
.cathead-user-info .name { font-size: 15px; font-weight: 800; }
.cathead-user-info .since { font-size: 12.5px; color: var(--muted); }

/* Layout */
.account { padding: 32px 0 80px; }
.ac-grid { display: grid; grid-template-columns: 284px 1fr; gap: 28px; align-items: start; }

/* Sidebar */
.ac-sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 0; }
.ac-profile { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--r); padding: 20px; text-align: center; box-shadow: var(--sh-sm); margin-bottom: 14px; }
.ac-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--g700); color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; letter-spacing: -.02em; }
.ac-profile .pname { font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.ac-profile .pmail { font-size: 12.5px; color: var(--muted); }

.ac-nav { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.ac-nav-item { display: flex; align-items: center; gap: 12px; padding: 13px 18px; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; border-left: 3px solid transparent; border-bottom: 1px solid var(--g50); transition: .14s; background: none; border-right: none; border-top: none; width: 100%; text-align: left; font-family: var(--f); }
.ac-nav-item:last-child { border-bottom: none; }
.ac-nav-item svg { width: 17px; height: 17px; flex: 0 0 auto; }
.ac-nav-item:hover { color: var(--noir); background: var(--g50); }
.ac-nav-item.active { color: var(--noir); background: var(--g50); border-left-color: var(--or); }
.ac-nav-item .badge { margin-left: auto; background: var(--or); color: var(--noir); font-size: 10px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50px; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.ac-nav-deconnect { display: flex; align-items: center; gap: 12px; padding: 13px 18px; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; border-top: 1px solid var(--ligne); width: 100%; text-align: left; background: none; border-left: none; border-right: none; border-bottom: none; transition: .14s; margin-top: 10px; }
.ac-nav-deconnect svg { width: 17px; height: 17px; }
.ac-nav-deconnect:hover { color: var(--noir); }

/* Sections */
.ac-section { display: none; }
.ac-section.active { display: block; }

/* Blocs formulaire */
.fblock { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--r); margin-bottom: 16px; box-shadow: var(--sh-sm); }
.fblock-head { display: flex; align-items: center; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--ligne); background: var(--blanc); }
.fblock-head .ft { font-size: 15px; font-weight: 800; }
.fblock-body { padding: 20px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.frow.full { grid-template-columns: 1fr; }
.frow:last-child { margin-bottom: 0; }
.ff { display: flex; flex-direction: column; gap: 5px; }
.ff label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.ff input, .ff select, .ff textarea { border: 1.5px solid var(--ligne); border-radius: var(--rs); padding: 10px 13px; font-family: var(--f); font-size: 14px; color: var(--noir); outline: none; background: var(--fond); transition: .15s; width: 100%; }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--g700); background: var(--blanc); }
.ff input::placeholder { color: #bbb; }
.ff .hint { font-size: 12px; color: var(--muted); margin-top: 3px; }
.ff textarea { resize: vertical; }

/* Préférences */
.prefs { display: flex; flex-direction: column; gap: 14px; }
.pref-row { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 14px; font-weight: 600; }
.pref-row input { width: 18px; height: 18px; accent-color: var(--g700); cursor: pointer; flex: 0 0 auto; }

/* CTA save */
.save-bar { display: flex; align-items: center; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.save-msg { font-size: 13px; color: var(--muted); }

/* Documents */
.doc-note { display: flex; align-items: flex-start; gap: 11px; background: var(--g50); border: 1px solid var(--ligne); border-radius: var(--rs); padding: 13px 14px; margin-bottom: 16px; }
.doc-note svg { width: 16px; height: 16px; stroke: var(--muted); flex: 0 0 auto; margin-top: 2px; }
.doc-note .txt { font-size: 13px; color: var(--muted); line-height: 1.55; }
.doc-note .txt strong { font-weight: 700; color: var(--noir); display: block; margin-bottom: 2px; }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dc { border: 1px solid var(--ligne); border-radius: var(--r); overflow: hidden; background: var(--blanc); box-shadow: var(--sh-sm); }
.dc-top { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--g50); border-bottom: 1px solid var(--ligne); }
.dc-ico { width: 30px; height: 30px; border-radius: 7px; background: var(--g700); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dc-ico svg { width: 14px; height: 14px; }
.dc-ico.muted { background: var(--muted); }
.dc-name { font-size: 13.5px; font-weight: 700; flex: 1; }
.dreq { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 50px; background: var(--g50); color: var(--g600); border: 1px solid var(--ligne); white-space: nowrap; }
.dc-sub { font-size: 12px; color: var(--muted); padding: 8px 14px 0; line-height: 1.45; }
.dz { margin: 10px 12px 12px; border: 2px dashed var(--ligne); border-radius: var(--rs); padding: 18px 12px; text-align: center; cursor: pointer; transition: .16s; position: relative; background: var(--fond); }
.dz:hover, .dz.dragover { border-color: var(--g700); background: var(--g50); }
.dz.ok { border-style: solid; border-color: var(--success-mid); background: var(--success-soft); }
.dz input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dz > svg { width: 22px; height: 22px; color: var(--ligne); margin: 0 auto 6px; display: block; }
.dz.ok > svg { color: var(--success-mid); }
.dz .dzl { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.dz.ok .dzl { color: var(--success); }
.dz .dzh { font-size: 11px; color: #bbb; margin-top: 2px; }
.doc-stored { display: flex; align-items: center; gap: 12px; margin: 10px 12px 12px; background: var(--g50); border: 1px solid var(--ligne); border-radius: var(--rs); padding: 12px 14px; }
.ds-ico { width: 34px; height: 34px; border-radius: 7px; background: var(--g700); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.ds-ico svg { width: 15px; height: 15px; }
.ds-info { flex: 1; min-width: 0; }
.ds-name { font-size: 13px; font-weight: 700; color: var(--noir); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ds-date { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.ds-replace { border: 1px solid var(--ligne); background: var(--blanc); border-radius: 50px; padding: 5px 12px; font-family: var(--f); font-size: 11.5px; font-weight: 700; color: var(--muted); cursor: pointer; transition: .15s; white-space: nowrap; }
.ds-replace:hover { background: var(--g700); color: #fff; border-color: var(--g700); }
.dc.is-busy { opacity: .55; pointer-events: none; }

/* Commandes */
.orders-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.orders-count { font-size: 13.5px; color: var(--muted); }
.orders-count b { color: var(--noir); }
.order-card { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--r); margin-bottom: 14px; box-shadow: var(--sh-sm); overflow: hidden; transition: .16s; }
.order-card:hover { box-shadow: var(--sh-md); }
.order-head { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--g50); flex-wrap: wrap; }
.order-num { font-size: 14px; font-weight: 800; }
.order-date { font-size: 13px; color: var(--muted); }
.order-status { margin-left: auto; font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.status-attente { background: var(--g50); color: var(--g700); border: 1px solid var(--ligne); }
.status-traitement { background: var(--or); color: var(--noir); }
.status-expediee { background: var(--g700); color: #fff; }
.status-livree { background: var(--noir); color: #fff; }
.order-body { display: flex; align-items: center; gap: 20px; padding: 14px 20px; }
.order-items-preview { display: flex; gap: 8px; flex: 1; min-width: 0; }
.oip { display: flex; flex-direction: column; min-width: 0; }
.oip .br { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.oip .nm { font-size: 13px; font-weight: 700; line-height: 1.3; }
.order-total { font-size: 16px; font-weight: 800; white-space: nowrap; }
.order-foot { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; background: var(--g50); border-top: 1px solid var(--ligne); gap: 12px; flex-wrap: wrap; }
.order-foot .delivery { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.order-foot .delivery svg { width: 14px; height: 14px; }
.order-see { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--noir); }
.order-see svg { width: 14px; height: 14px; transition: transform .18s; }
.order-card:hover .order-see svg { transform: translateX(3px); }
/* Pagination des commandes */
.orders-pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 22px; }
.orders-pagination a { min-width: 38px; padding: 8px 12px; text-align: center; border: 1px solid var(--ligne); border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--noir); transition: .15s; }
.orders-pagination a:hover { border-color: var(--noir); }
.orders-pagination a.current { background: var(--noir); color: #fff; border-color: var(--noir); }

/* Adresses */
.addr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.addr-card { border: 1.5px solid var(--ligne); border-radius: var(--r); padding: 18px 20px; background: var(--blanc); position: relative; transition: .14s; }
.addr-card.selected { border-color: var(--g700); background: var(--g50); }
.addr-card .addr-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.addr-card .addr-name { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.addr-card .addr-detail { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Sécurité */
.secu-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--g50); }
.secu-row:last-child { border-bottom: none; }
.secu-info { flex: 1; }
.secu-info .sl { font-size: 14px; font-weight: 700; }
.secu-info .ss { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.secu-badge { font-size: 12px; font-weight: 700; background: var(--g50); color: var(--g700); padding: 4px 11px; border-radius: 50px; border: 1px solid var(--ligne); white-space: nowrap; }

/* Retours & SAV */
.retour-note { display: flex; align-items: flex-start; gap: 11px; background: var(--g50); border: 1px solid var(--ligne); border-radius: var(--rs); padding: 13px 14px; margin-bottom: 18px; }
.retour-note svg { width: 16px; height: 16px; stroke: var(--muted); flex: 0 0 auto; margin-top: 2px; }
.retour-note .txt { font-size: 13px; color: var(--muted); line-height: 1.55; }
.retour-note .txt strong { font-weight: 700; color: var(--noir); display: block; margin-bottom: 2px; }
.retour-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.retour-step { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--r); padding: 16px; text-align: center; box-shadow: var(--sh-sm); }
.retour-step .rs-num { width: 30px; height: 30px; border-radius: 50%; background: var(--g700); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.retour-step .rs-title { font-size: 13px; font-weight: 800; margin-bottom: 3px; }
.retour-step .rs-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.order-pick { display: flex; flex-direction: column; gap: 10px; }
.order-pick-item { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--ligne); border-radius: var(--rs); padding: 14px 16px; cursor: pointer; transition: .14s; background: var(--blanc); }
.order-pick-item:hover { border-color: var(--g700); }
.order-pick-item.sel { border-color: var(--g700); background: var(--g50); }
.order-pick-item.is-disabled { opacity: .5; cursor: not-allowed; }
.order-pick-item input[type=radio] { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ligne); flex: 0 0 auto; cursor: pointer; transition: .12s; position: relative; background: var(--blanc); }
.order-pick-item input:checked { border-color: var(--noir); }
.order-pick-item input:checked::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--noir); }
.order-pick-item .opi-info { flex: 1; min-width: 0; }
.order-pick-item .opi-num { font-size: 13.5px; font-weight: 800; }
.order-pick-item .opi-detail { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.order-pick-item .opi-status { font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }
.opi-eligible { background: var(--g50); color: var(--g700); border: 1px solid var(--ligne); }
.opi-ineligible { background: var(--g50); color: #bbb; border: 1px solid var(--ligne); }
.retour-form { display: none; margin-top: 16px; }
.retour-form.visible { display: block; }

/* Connexion / inscription / mot de passe oublié (déconnecté) */
.account-login { max-width: 460px; margin: 0 auto; }
.auth { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.auth.single { max-width: 460px; grid-template-columns: 1fr; }
@media (max-width: 760px) { .auth { grid-template-columns: 1fr; max-width: 460px; } }
.auth .al-card { height: 100%; }
.auth .al-card + .al-card { margin-top: 0; }
.al-card { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--r); padding: 26px; box-shadow: var(--sh-sm); }
.al-card + .al-card { margin-top: 16px; }
.al-head { font-size: 17px; font-weight: 800; margin-bottom: 18px; }
.al-register .al-head { font-size: 15px; }
.al-intro { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.al-form { display: flex; flex-direction: column; }
.al-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.al-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.al-form input[type=text], .al-form input[type=email], .al-form input[type=password] { width: 100%; box-sizing: border-box; border: 1.5px solid var(--ligne); border-radius: var(--rs); padding: 11px 13px; font-family: var(--f); font-size: 14px; color: var(--noir); background: var(--fond); outline: none; transition: border-color .15s, background .15s; }
.al-form input:focus { border-color: var(--g700); background: var(--blanc); }
.al-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.al-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 600; cursor: pointer; }
.al-check input { width: 16px; height: 16px; accent-color: var(--g700); }
.al-link { font-size: 13px; font-weight: 700; color: var(--noir); }
.al-link:hover { color: var(--g700); text-decoration: underline; }
.al-submit { width: 100%; background: var(--or); color: var(--noir); border: none; border-radius: 50px; padding: 13px 24px; font-family: var(--f); font-weight: 800; font-size: 15px; cursor: pointer; transition: background .15s; }
.al-submit:hover { background: var(--or-h); }
.al-back { display: block; margin-top: 16px; text-align: center; color: var(--muted); }
/* Retire la bordure que WooCommerce ajoute autour de form.login / form.register */
.auth form.al-form { border: 0; padding: 0; margin: 0; background: none; box-shadow: none; }
/* Mention RGPD : petite et discrète */
.al-card .woocommerce-privacy-policy-text { margin: 0 0 14px; }
.al-card .woocommerce-privacy-policy-text p { font-size: 11px; line-height: 1.5; color: var(--muted); margin: 0; }

/* Confirmation « lien de réinitialisation envoyé » */
.al-confirm { text-align: center; padding: 30px 26px; }
.al-confirm-ico { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; background: var(--success-soft, #eafaf0); color: var(--success, #1a7a3d); display: flex; align-items: center; justify-content: center; }
.al-confirm-ico svg { width: 27px; height: 27px; }
.al-confirm .al-head { margin-bottom: 12px; }
.al-confirm .al-intro { margin-bottom: 22px; }
.al-confirm .al-submit { display: block; text-align: center; text-decoration: none; }

/* Régler une commande (order-pay) */
.pay-order { max-width: 620px; margin: 0 auto; }
.op-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 14px; }
.op-table th, .op-table td { padding: 11px 8px; border-bottom: 1px solid var(--ligne); text-align: left; vertical-align: top; }
.op-table thead th { font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); font-weight: 700; }
.op-table .qty, .op-table .tot { text-align: right; white-space: nowrap; }
.op-table tfoot th { text-align: right; font-weight: 700; }
.op-table tfoot tr:last-child th, .op-table tfoot tr:last-child .tot { font-size: 15px; font-weight: 800; }
.op-payment .payment_methods { list-style: none; margin: 0 0 16px; padding: 0; }
.op-payment .payment_methods li { padding: 7px 0; font-size: 14px; }
.op-payment .payment_box { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 6px 0 2px; }
.op-payment .al-submit { margin-top: 8px; }

/* Détail commande (view-order) */
.vo-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.vo-back svg { width: 16px; height: 16px; }
.vo-back:hover { color: var(--noir); }
.vo-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.vo-items { display: flex; flex-direction: column; }
.vo-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--g50); }
.vo-item:first-child { padding-top: 0; }
.vo-item:last-child { padding-bottom: 0; border-bottom: none; }
.vo-th { width: 60px; height: 60px; border-radius: var(--rs); background: var(--g50); display: flex; align-items: center; justify-content: center; overflow: hidden; flex: 0 0 auto; }
.vo-th img { width: 100%; height: 100%; object-fit: cover; }
.vo-th svg { width: 22px; height: 22px; }
.vo-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.vo-br { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.vo-nm { font-size: 14px; font-weight: 700; color: var(--noir); line-height: 1.3; }
a.vo-nm:hover { color: var(--g700); text-decoration: underline; }
.vo-qty { font-size: 12px; color: var(--muted); margin-top: 2px; }
.vo-price { font-size: 14px; font-weight: 800; white-space: nowrap; }
.vo-docs { display: flex; flex-direction: column; gap: 8px; }
.vo-doc { display: flex; align-items: center; gap: 10px; border: 1px solid var(--ligne); border-radius: var(--rs); padding: 11px 13px; font-size: 13.5px; font-weight: 700; }
.vo-doc > svg { width: 16px; height: 16px; color: var(--g700); flex: 0 0 auto; }
.vo-doc span { flex: 1; }
.vo-ok { width: 20px; height: 20px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.vo-ok svg { width: 11px; height: 11px; }
.vo-addr { font-size: 13.5px; color: var(--noir); line-height: 1.6; }
.vo-addr-line { font-size: 13px; color: var(--muted); margin-top: 4px; }
.vo-aside .fblock { position: sticky; top: calc(var(--header-h) + 16px); }
.vo-tots { display: flex; flex-direction: column; gap: 9px; }
.vo-tot { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); }
.vo-tot .v { color: var(--noir); font-weight: 700; }
.vo-tot.is-total { font-size: 16px; font-weight: 800; color: var(--noir); padding-top: 11px; border-top: 2px solid var(--noir); margin-top: 4px; }
.vo-pay { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--ligne); font-size: 12.5px; font-weight: 700; color: var(--muted); }
.vo-pay svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 960px) {
  .ac-grid, .vo-grid { grid-template-columns: 1fr; }
  .ac-sidebar { position: static; }
  .vo-aside .fblock { position: static; }
  .doc-grid, .addr-cards, .retour-steps { grid-template-columns: 1fr; }
  /* Navigation du compte : barre d'onglets horizontale défilante (au lieu d'une
     pile de 6 items qui repousse le contenu très bas sur mobile/tablette). */
  .ac-nav { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ac-nav-item, .ac-nav-deconnect { width: auto; white-space: nowrap; border-left: none; border-right: 1px solid var(--g50); border-bottom: 3px solid transparent; border-top: none; margin-top: 0; }
  .ac-nav-item.active { border-left-color: transparent; border-bottom-color: var(--or); }
}
@media (max-width: 560px) {
  .crumbs .wrap { padding: 12px 20px; }
  .account-cathead .wrap { padding: 18px 20px 22px; }
  .frow { grid-template-columns: 1fr; }
}
