@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F2F2F2;
    font-family: Raleway, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
}

.header--annoucement-bar {
    background-color: #000000;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: bolder;
}

.header--nav {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header--nav--elements {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header--nav--logo {
    width: 150px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header--nav--logo img {
    width: 80%;
    object-fit: contain;
}

.header--nav--one-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex-wrap: wrap;
    width: 130px;
    text-align: center;
}

.header--nav--one-element img {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header--nav--one-element div {
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: black;
}

.header--nav--cart {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header--nav--cart img {
    width: 50%;
    object-fit: contain;
}

.page--main-header {
    width: 100%;
    object-fit: contain;
}

.catalogue--filter {
    width: 33%;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.catalogue--one-filter {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 15px;
}

.catalogue--one-filter img {
    width: 50px;
    object-fit: contain;
}

.catalogue--one-filter div {
    font-weight: bold;
    color: black;
    font-size: 0.8rem;
}

.catalogue--all-products {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.catalogue--one-product {
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

.div-factice {
    width: 250px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
}

.catalogue--one-product--image {
    background-color: white;
    width: 100%;
    object-fit: contain;
    border: 1px solid black;
}

.catalogue--one-product--name {
    font-weight: bold;
    color: black;
    font-size: 1rem;
    margin: 10px 0;
    text-align: center;
}

.catalogue--one-product--price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.catalogue--one-product--price div {
    text-align: center;
}

.catalogue--one-product--price div:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.catalogue--one-product--price div:nth-child(2) {
    font-size: 0.7rem;
}

.catalogue--one-product--all-variants {
    display: flex;
    justify-content: center;
    width: 100%;
}

.catalogue--one-product--one-variants {
    padding: 10px;
    color: white;
    background-color: #29b3ae;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
}

/*media queries max 1400px*/
@media screen and (max-width: 1400px) {
    .catalogue--one-product--one-variants {
        font-size: 0.8rem;
    }

}
@media screen and (max-width: 1200px) {
    .catalogue--one-product--one-variants {
        font-size: 1rem;
    }

}


footer {
    background-color: #5B5B62;
    margin-top: 30px;
}

.footer-content {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    color: white;
}

.footer-category {
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-category div {
    text-decoration: underline;
}

.footer-category ul li a {
    text-decoration: none;
    color: white;
}

.prochaines-collections--all-collections {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.prochaines-collections-one-collection--title {
    display: flex;
    margin-left: 2.5%;
    text-decoration: underline;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.prochaines-collections-one-collection--title div {
    font-weight: bold;
    margin-right: 10px;
}

.prochaines-collections-one-collection--title img {
    width: 13px;
    object-fit: contain;
}

.icon--rotate-90deg {
    animation: rotate90deg 0.5s forwards;
}

@keyframes rotate90deg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(90deg);
    }
}

.icon--rotate--90deg {
    animation: rotate-90deg 0.5s forwards;
}

@keyframes rotate-90deg {
    from {
        transform: rotate(90deg);
    }
    to {
        transform: rotate(00deg);
    }
}

.prochaines-collections-one-collection--list-products {
    display: flex;
    flex-wrap: wrap;
}

.prochaines-collections-one-collection--list-one-products {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-bottom: 25px;
}

.prochaines-collections-one-collection--list-one-products img {
    background-color: white;
    width: 100%;
    object-fit: contain;
    border: 1px solid black;
}

.prochaines-collections-one-collection--list-one-products div {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.2rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* SUR-MESURE */

.sur-mesure--content {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.sur-mesure--introduction {
    margin-top: 30px;
    margin-bottom: 50px;
}

.sur-mesure--presentation {
    display: flex;
    align-items: center;
}

.sur-mesure--presentation img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.sur-mesure--presentation div:nth-child(1) {
    width: 100%;
    padding-right: 50px;
}

.sur-mesure--presentation div:nth-child(2) {
    width: 100%;
    padding-left: 50px;
}

.sur-mesure--button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sur-mesure--button button {
    width: 150px;
    background-color: #29b3ae;
    color: white;
    border: none;
    height: 50px;
    border-radius: 20px;
    font-weight: bold;
}


/* MON COMPTE */

.compte--content {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.compte--title {
    display: flex;
    text-decoration: underline;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.compte--title div {
    font-weight: bold;
    margin-right: 10px;
}

#compte-address {
    display: flex;
    flex-direction: column;
}

.compte--address {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 30px;
}

.compte--address--header {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compte--address--title {
    text-decoration: underline;
}

.compte--address--add {
    width: 200px;
    background-color: #29b3ae;
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    cursor: pointer;
}

.compte--address--content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.compte--address--content--item {
    width: 28.33%;
    display: flex;
    flex-direction: column;
    margin-right: 2.5%;
    margin-left: 2.5%;
    margin-bottom: 20px;
}


.compte--title img {
    width: 13px;
    object-fit: contain;
}

.addAddressWindow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Couleur de fond semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Assurez-vous qu'elle est au-dessus des autres éléments */
}

.compte--address--form {
    display: flex;
    flex-direction: column;
}

.compte--address--form div {
    display: flex;
    justify-content: end;
}

.compte--address--form div img {
    width: 20px;
    cursor: pointer;
}

.compte--address--form select {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid black;
}

.compte--address--form input {
    padding: 10px;
    width: 250px;
    margin: 10px 5px;
    border-radius: 10px;
    border: 1px solid black;
}

.compte--address--form button {
    border-radius: 10px;
    border: none;
    background-color: #29b3ae;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.displayMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Couleur de fond semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Assurez-vous qu'elle est au-dessus des autres éléments */
}

.displayMessage--content {
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #FBAA99;
}

#deleteAddress {
    padding: 10px;
    background-color: #FBAA99;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#cancelDeleteAddress {
    padding: 10px;
    background-color: #B0F2B6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}


.bg-green-radius-10 {
    background-color: #B0F2B6;
    border-radius: 10px;
}

.bg-red-radius-10 {
    background-color: #FBAA99;
    border-radius: 10px;
}

:root {
    --notification-background: #B0F2B6;
    --notification-primary: #000;
    --background: #FAF9FF;
}


.notification {
    position: fixed;
    width: max-content;
    left: 0;
    right: 0;
    bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.375rem;
    background-color: var(
            --notification-background);
    color: var(--notification-primary);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(1.875rem);
    opacity: 0;
    visibility: hidden;
    animation: fade-in 5s linear;
    z-index: 45687;
    font-family: OpenSans, sans-serif;
}

.notification-error {
    background-color: #FBAA99;
    color: #000;
    width: 50%;
    margin: auto;
    text-align: center!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
}

.notification__icon {
    height: 1.625rem;
    width: 1.625rem;
    margin-right: 0.25rem;
}

.notification__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem 0.5rem;
}

.notification__progress {
    position: absolute;
    left: 0.25rem;
    bottom: 0.25rem;
    width: calc(100% - 0.5rem);
    height: 0.2rem;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(
            to right,
            var(--notification-background),
            var(--notification-primary)
    );
    border-radius: inherit;
    animation: progress 4.7s 0.3s linear;
}

.notification__progress--error {
    background: linear-gradient(
            to right,
            #FBAA99,
            var(--notification-primary)
    );
}

@keyframes fade-in {
    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    95% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}


@font-face {
    font-family: OpenSans;
    src: url('../files/font/open-sans.ttf');
}

.open-sans {
    font-family: OpenSans, sans-serif;
}

.customLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Couleur de fond semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Assurez-vous qu'elle est au-dessus des autres éléments */
}

.custom-loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}


.loader-1 {
    width: 48px;
    height: 48px;
    border: 5px solid hotpink;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: flex;
    box-sizing: border-box;
    animation: rotation-1 1s linear infinite;
}

@keyframes rotation-1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-2 {
    width: 32px;
    height: 90px;
    display: block;
    margin: 20px auto;
    position: relative;
    border-radius: 50% 50% 0 0;
    border-bottom: 10px solid #FF3D00;
    background-color: #FFF;
    background-image: radial-gradient(ellipse at center, #FFF 34%, #FF3D00 35%, #FF3D00 54%, #FFF 55%), linear-gradient(#FF3D00 10px, transparent 0);
    background-size: 28px 28px;
    background-position: center 20px, center 2px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    animation: animloaderBack-2 1s linear infinite alternate;
}

.loader-2::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0px 15px #FF3D00 inset;
    top: 67px;
}

.loader-2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 34px;
    height: 34px;
    top: 112%;
    background: radial-gradient(ellipse at center, #ffdf00 8%, rgba(249, 62, 0, 0.6) 24%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50% 50% 0;
    background-repeat: no-repeat;
    background-position: -44px -44px;
    background-size: 100px 100px;
    box-shadow: 4px 4px 12px 0px rgba(255, 61, 0, 0.5);
    box-sizing: border-box;
    animation: animloader-2 1s linear infinite alternate;
}

@keyframes animloaderBack-2 {
    0%, 30%, 70% {
        transform: translateY(0px);
    }
    20%, 40%, 100% {
        transform: translateY(-5px);
    }
}

@keyframes animloader-2 {
    0% {
        box-shadow: 4px 4px 12px 2px rgba(255, 61, 0, 0.75);
        width: 34px;
        height: 34px;
        background-position: -44px -44px;
        background-size: 100px 100px;
    }
    100% {
        box-shadow: 2px 2px 8px 0px rgba(255, 61, 0, 0.5);
        width: 30px;
        height: 28px;
        background-position: -36px -36px;
        background-size: 80px 80px;
    }
}


.loader-3 {
    width: 120px;
    height: 150px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-image: linear-gradient(#ddd 50%, #bbb 51%),
    linear-gradient(#ddd, #ddd), linear-gradient(#ddd, #ddd),
    radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%),
    radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%),
    radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%);
    background-position: 0 20px, 45px 0, 8px 6px, 55px 3px, 75px 3px, 95px 3px;
    background-size: 100% 4px, 1px 23px, 30px 8px, 15px 15px, 15px 15px, 15px 15px;
    position: relative;
    border-radius: 6%;
    animation: shake-3 3s ease-in-out infinite;
    transform-origin: 60px 180px;
}

.loader-3:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 100%;
    width: 7px;
    height: 5px;
    background: #aaa;
    border-radius: 0 0 4px 4px;
    box-shadow: 102px 0 #aaa;
}

.loader-3:after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    background-color: #bbdefb;
    background-image: linear-gradient(to right, #0004 0%, #0004 49%, #0000 50%, #0000 100%),
    linear-gradient(135deg, #64b5f6 50%, #607d8b 51%);
    background-size: 30px 100%, 90px 80px;
    border-radius: 50%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0;
    box-sizing: border-box;
    border: 10px solid #DDD;
    box-shadow: 0 0 0 4px #999 inset, 0 0 6px 6px #0004 inset;
    animation: spin-3 3s ease-in-out infinite;
}

@keyframes spin-3 {
    0% {
        transform: rotate(0deg)
    }
    50% {
        transform: rotate(360deg)
    }
    75% {
        transform: rotate(750deg)
    }
    100% {
        transform: rotate(1800deg)
    }
}

@keyframes shake-3 {
    65%, 80%, 88%, 96% {
        transform: rotate(0.5deg)
    }
    50%, 75%, 84%, 92% {
        transform: rotate(-0.5deg)
    }
    0%, 50%, 100% {
        transform: rotate(0)
    }
}


.loader-4 {
    height: 150px;
    width: 100px;
    border-radius: 55px 55px 10px 10px;
    position: relative;
    background: #FF3D00;

    background-image: linear-gradient(0deg,
    #f63a99 25%,
    #30dcf6 25%,
    #30dcf6 25%,
    #30dcf6 50%,
    #f2d200 50%,
    #f2d200 50%,
    #f2d200 75%,
    #70ca5c 75%);
    background-position: 0px 0px;
    background-size: auto 175px;
    background-repeat: repeat-y;
    animation: colorShift-4 6s linear infinite;

}

.loader-4:before {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 15px;
    width: 15px;
    height: 100px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);

}

.loader-4:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    box-shadow: 0 15px 2px rgba(0, 0, 0, 0.25) inset;
    width: 32px;
    height: 45px;
    background: #E09C5F;
    border-radius: 0 0 12px 12px;
}

@keyframes colorShift-4 {
    to {
        background-position: 0 175px
    }
}


.loader-5 {
    width: 160px;
    height: 185px;
    position: relative;
    background: #fff;
    border-radius: 100px 100px 0 0;
}

.loader-5:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 125px;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #000 48%, transparent 55%),
    radial-gradient(circle, #000 48%, transparent 55%),
    radial-gradient(circle, #fff 30%, transparent 45%),
    radial-gradient(circle, #000 48%, transparent 51%),
    linear-gradient(#000 20px, transparent 0),
    linear-gradient(#cfecf9 60px, transparent 0),
    radial-gradient(circle, #cfecf9 50%, transparent 51%),
    radial-gradient(circle, #cfecf9 50%, transparent 51%);
    background-repeat: no-repeat;
    background-size: 16px 16px, 16px 16px, 10px 10px, 42px 42px, 12px 3px,
    50px 25px, 70px 70px, 70px 70px;
    background-position: 25px 10px, 55px 10px, 36px 44px, 50% 30px, 50% 85px,
    50% 50px, 50% 22px, 50% 45px;
    animation: faceLift-5 3s linear infinite alternate;
}

.loader-5:before {
    content: "";
    position: absolute;
    width: 140%;
    height: 125px;
    left: -20%;
    top: 0;
    background-image: radial-gradient(circle, #fff 48%, transparent 50%),
    radial-gradient(circle, #fff 48%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 65px 65px;
    background-position: 0px 12px, 145px 12px;
    animation: earLift-5 3s linear infinite alternate;
}

@keyframes faceLift-5 {
    0% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-30%);
    }
}

@keyframes earLift-5 {
    0% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}


.loader-6 {
    position: relative;
    width: 120px;
    height: 14px;
    border-radius: 0 0 15px 15px;
    background-color: #3e494d;
    box-shadow: 0 -1px 4px #5d6063 inset;
    animation: panex-6 0.5s linear alternate infinite;
    transform-origin: 170px 0;
    z-index: 10;
    perspective: 300px;

}

.loader-6::before {
    content: '';
    position: absolute;
    left: calc(100% - 2px);
    top: 0;
    z-index: -2;
    height: 10px;
    width: 70px;
    border-radius: 0 4px 4px 0;
    background-repeat: no-repeat;
    background-image: linear-gradient(#6c4924, #4b2d21), linear-gradient(#4d5457 24px, transparent 0), linear-gradient(#9f9e9e 24px, transparent 0);
    background-size: 50px 10px, 4px 8px, 24px 4px;
    background-position: right center, 17px center, 0px center;
}

.loader-6::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -2;
    transform: translate(-50%, -20px) rotate3d(75, -2, 3, 78deg);
    width: 55px;
    height: 53px;
    background: #fff;
    background-image: radial-gradient(circle 3px, #fff6 90%, transparent 10%),
    radial-gradient(circle 12px, #ffc400 90%, transparent 10%),
    radial-gradient(circle 12px, #ffae00 100%, transparent 0);
    background-repeat: no-repeat;
    background-position: -4px -6px, -2px -2px, -1px -1px;
    box-shadow: -2px -3px #0002 inset, 0 0 4px #0003 inset;
    border-radius: 47% 36% 50% 50% / 49% 45% 42% 44%;
    animation: eggRst-6 1s ease-out infinite;
}

@keyframes eggRst-6 {
    0%, 100% {
        transform: translate(-50%, -20px) rotate3d(90, 0, 0, 90deg);
        opacity: 0;
    }
    10%, 90% {
        transform: translate(-50%, -30px) rotate3d(90, 0, 0, 90deg);
        opacity: 1;
    }
    25% {
        transform: translate(-50%, -40px) rotate3d(85, 17, 2, 70deg)
    }
    75% {
        transform: translate(-50%, -40px) rotate3d(75, -3, 2, 70deg)
    }
    50% {
        transform: translate(-55%, -50px) rotate3d(75, -8, 3, 50deg)
    }
}

@keyframes panex-6 {
    0% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(10deg)
    }
}


/*  ---------------------------------------  */

.compte--address--content {
    display: flex;
    flex-wrap: wrap;
}

.compte--address--content--item {
    width: 28.33%;
    margin: 10px 2.5%;
}

#account-orders-one-order {
    background-color: white;
    border-radius: 10px;
    width: 20%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Ordinateurs de bureau moyens */
@media screen and (max-width: 1200px) {
    .catalogue--one-product {
        width: 28.33%;
        height: auto;
    }

    .prochaines-collections-one-collection--list-one-products {
        width: 28.33%;
    }

    .catalogue--filter {
        width: 35%;
    }

    #account-orders-one-order {
        width: 28.33%;
    }

    .compte--address--content--item {
        width: 45%;
    }

}

/* Tablettes */
@media screen and (max-width: 930px) {
    .catalogue--one-product {
        width: 45%;
        height: auto;
    }

    .prochaines-collections-one-collection--list-one-products {
        width: 50%;
    }

    .catalogue--filter {
        width: 70%;
    }

    #account-orders-one-order {
        width: 45%;
    }

    .compte--address--content--item {
        width: 95%;
    }

}

.responsive-mobile {
    display: none;
}

/* Très petits écrans (téléphones) */
@media screen and (max-width: 767px) {
    .responsive-mobile {
        display: block;
    }

    .catalogue--one-product {
        width: 100%;
        height: auto;
    }

    .prochaines-collections-one-collection--list-one-products {
        width: 100%;
    }


    .catalogue--filter {
        width: 100%;
    }

    .header--nav {
        display: none;
    }

    .dev-header-responsive-mobile--content {
        display: flex;
        justify-content: space-between;
    }

    .header--nav--one-element img {
        width: 50px;
    }

    .header--nav--one-element div {
        font-size: 0.7rem;
    }


    .footer-content {
        flex-direction: column;
    }

    #account-orders-one-order {
        width: 95%;
    }

}


.flash-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    right: 50%;
    width: 30%;
    display: flex;
    justify-content: center;
    z-index: 1000;

}

.flash-alert-success {
    background-color: #B0F2B6;
    color: #000;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

