.hdr {
    /* border: 1px dashed; */
    height: 40px;
    display: flex;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 10;
}

.hdr .nav-center {
    /* border: 1px dashed; */
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    width: 100%;
    max-width: 1440px;
}

/* .hdr .nav-center > div {
    padding: 0 10px;
} */

.hdr .nav-center > div a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 10px;
    text-decoration: none;
    color: inherit;
}

.hdr .nav-center > div span {
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.hdr .qty-notif {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid red;
    border-radius: 50%;
    padding: 3px;
    font-size: 12px;
    font-weight: bold;
    background: #fff;
    transform: scale(0);
    /* transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); */
}

/* .qty-notif.show {
  transform: scale(1);
} */

.qty-notif.show {
  animation: bounce 0.6s forwards;
}

.qty-notif.hide {
  animation: bounce-out 0.4s forwards;
}

@keyframes bounce {
  0%   { transform: scale(0); }
  50%  { transform: scale(1.2); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes bounce-out {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.2); } /* petit rebond avant de disparaître */
  100% { transform: scale(0); }
}

.hdr .hmb {
    position: relative;
    display: grid;
    align-content: center;
    padding: 0 15px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.hdr .hmb div {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.hdr .hmb div p {
    position: relative;
    display: block;
    width: 23px;
    height: 1px;
    border: 1px solid;
    /* background-color: #333; */
    transition: transform 0.3s;
}

.hdr .hdr-cart {
    padding: 0 15px;
}

.expander {
    /* width: 100%; */
    flex-grow: 1;
}

.bg_mnu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 5;
    pointer-events: none;
}

.menu {
    position: fixed;
    display: grid;
    grid-template-rows: auto 1fr;
    top: 0;
    left: 0;
    min-width: 250px;
    height: 100%;
    background:#fff;
    overflow: hidden;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(.7,.3,0,1);
}

.menu .title {
    position: sticky;
    top: 0;
    display: flex;
    /* min-height: 41px; */
    justify-content: space-between;
    align-items: center;
    /* padding: 0 15px; */
    border-bottom: 1px solid #ccc;
    background: #fff;
    /* font-weight: bold; */
}

/* .menu .title > div:first-child */

.menu .title > div:first-child a {
    position: relative;
    display: block;
    padding: 9px 15px;
    text-decoration: none;
    color: inherit;
    line-height: 1.2;
    /* font-weight: bold; */
}
/*
.menu .cross {
    position: relative;
    color: #333;
    padding: 9px 15px;
    cursor: pointer;
}

.menu .cross > div {
    position: relative;
    width: 22px;
    height: 22px;
    transform: translate(2px,2px) rotate(45deg);
}

.menu .cross div > div {
    position: absolute;
}

.menu .cross div > div:first-child {
    top: 10px;
    width: 25px;
    height: 1px;
    border: 1px solid;
}

.menu .cross div > div:last-child {
    left: 10px;
    width: 1px;
    height: 25px;
    border: 1px solid;
}
*/

.menu .menu-cross {
    padding: 0 15px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.menu .menu-cross > div {
    display: flex;
    font-size: 30px;
}

.menu .mnubdy {
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

.menu .mnu_cnt {
    display: grid;
    grid-template-columns: 1fr;
}

.menu .mnu_cnt a {
    /* border: 1px dashed; */
    text-decoration: none;
    color: unset;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 250px) {
    .menu {
        min-width: 100%;
    }
}