/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff !important;
    font-family: 'Poppins', sans-serif;
}

.flex-containerr {
    min-height: calc(100vh - 100px);
}

/* ===== SUPPRESSION DES ELLIPSES ET DU FOND COLORÉ ===== */
.background, .ellipse, #rectangle {
    display: none !important;
}

/* ===== NAVBAR ORDINATEUR ===== */
.NavBarOrdi {
    background: #ffffff;
    box-shadow: none;
    border: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.LogoCasseDuGSM {
    width: 110px;
    height: 110px;
    margin-top: 10px;
    margin-right: 226px;
}

.DivBoutton {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: auto;
    min-height: 54px;
}
.DivBoutton:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.DivBoutton .d-flex {
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.BouttonsMenu {
    color: #4D4D4D !important;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
    letter-spacing: 1.6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 35px;
    transition: all 0.3s ease;
    margin: 0;
    position: relative;
}
.BouttonsMenu:hover {
    transform: scale(1.05);
    color: #42C38F !important;
    background: rgba(255, 255, 255, 0.3);
}
.BouttonsMenu::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #74EF7B, #42C38F);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.BouttonsMenu:hover::after {
    width: 70%;
}

.Decoration {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

/* ===== NOUVELLES ICÔNES PANIER ET COMPTE ===== */
.DeuxIcones {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.icon-item i {
    font-size: 1.3rem;
    color: #4a5568;
    transition: all 0.2s;
}

.icon-item span {
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.2rem;
}

.icon-item:hover i {
    color: #10b981;
    transform: scale(1.05);
}

.icon-item:hover span {
    color: #10b981;
}

/* Compteur panier */
.panier-container {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #10b981;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== NAVBAR MOBILE ===== */
.NavBarTel {
    display: none;
    background: #ffffff;
    padding: 0.5rem 0;
}

#menu-bar {
    width: 35px;
    height: 30px;
    margin: 30px 0 20px 30px;
    cursor: pointer;
    background: transparent;
}
.bar {
    height: 5px;
    width: 100%;
    background: #4D4D4D;
    display: block;
    border-radius: 5px;
    transition: 0.3s ease;
}
#bar1 { transform: translateY(-4px); }
#bar3 { transform: translateY(4px); }

.nav {
    transition: 0.3s ease;
    display: none;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.nav.open {
    display: block;
    z-index: 2;
}
.nav ul {
    padding: 0 22px;
}
.nav li {
    list-style: none;
    padding: 12px 0;
}
.nav li a {
    color: #4D4D4D;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 40px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    display: inline-block;
}
.nav li a:hover {
    color: #42C38F;
    border-color: #42C38F;
    box-shadow: 0 0 8px rgba(66, 195, 143, 0.5);
}

.menu-bg, #menu-bg {
    background: transparent;
}
.menu-bg {
    z-index: 1;
    width: 0;
    height: 0;
    margin: 30px 0 20px 20px;
    background: rgba(189, 237, 255, 0.8);
    border-radius: 50%;
    transition: 0.3s ease;
}
.change-bg {
    width: 520px;
    height: 460px;
    transform: translate(-60%,-30%);
}
.menu-overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ===== FOOTER ===== */
footer {
    margin-top: auto;
    background-color: #282c34;
}
.footerUn, .footerDeux {
    padding-top: 10px;
    padding-bottom: 10px;
}
.TitreFooter, .TitreFooterM {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: #cccccc;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.TexteAdresse, .TexteAdresseM {
    color: white;
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
}
.adresse-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.adresse-link:hover .TexteAdresse,
.adresse-link:hover .TexteAdresseM {
    color: #42C38F;
}
.LogoPosition { width: 21px; height: auto; margin-right: 10px; }
.LogoAppel { width: 28px; height: auto; margin-right: 10px; }
.LogoMail { width: 28px; height: auto; margin-right: 10px; }

.lineUn, .lineDeux {
    width: 2px;
    height: 40px;
    background: #C2C2C2;
}
.lineUn { float: left; position: relative; right: 43%; }
.lineDeux { float: right; position: relative; left: 43%; }

.LogoFooter { width: 100px; height: 100px; }
.TextNav { color: #42C38F; font-size: 15px; font-family: 'Poppins', sans-serif; }
.elementsNav { margin-left: 35%; }
.elementsNav a {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.elementsNav a:hover { color: #42C38F; }
.elementsNav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #42C38F;
    transition: width 0.3s ease;
}
.elementsNav a:hover::after { width: 100%; }

.PrendreRdv {
    background: linear-gradient(90deg, #74EF7B 0%, #42C38F 100%);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    width: auto;
    min-width: 160px;
    margin: 5px 0;
}
.PrendreRdv:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.BlockMapp {
    background: #2e323c;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(66, 195, 143, 0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.BlockMapp:hover {
    box-shadow: 0 6px 20px rgba(66, 195, 143, 0.7);
    transform: translateY(-2px);
}
.Map {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    opacity: 0.95;
}

.Copyright {
    font-size: 11px;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding-left: 2%;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.CopyrightRed { font-size: 11px; color: #42C38F; }

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1380px) {
    .PrenomUser { display: none; }
}
@media screen and (max-width: 1250px) {
    .LogoCasseDuGSM { width: 95px; height: 95px; margin-right: 180px; }
    .BlockMonCompte { margin-left: 5px; }
    .Map { width: 90%; }
}
@media screen and (max-width: 1110px) {
    .LogoCasseDuGSM { width: 89px; height: 89px; margin-right: 150px; }
}
@media screen and (max-width: 940px) {
    .LogoCasseDuGSM { width: 80px; height: 80px; margin-right: 100px; }
}
@media screen and (max-width: 950px) {
    .lineUn { right: 24%; }
    .lineDeux { left: 24%; }
}
@media screen and (max-width: 800px) {
    .BouttonsMenu { font-size: 14px; }
}
@media screen and (max-width: 730px) {
    .NavBarOrdi { display: none !important; }
    .NavBarTel { display: block !important; }
}
@media screen and (max-width: 671px) {
    .DeuxIcones { margin-left: 0; }
}
@media screen and (max-width: 600px) {
    body { background-color: #ffffff !important; }
    .background, .ellipse, #rectangle { display: none; }
    .TexteBienvenue { margin-top: 40px; }
    .DeuxIcones {
        display: flex !important;
        justify-content: center !important;
        margin-top: 25px !important;
        gap: 1rem !important;
    }
    .LogoCasseDuGSM {
        width: 65px;
        height: 65px;
        display: block !important;
        margin: auto !important;
        margin-top: 8px !important;
    }
    .icon-item i {
        font-size: 1.1rem !important;
    }
    .icon-item span {
        font-size: 0.6rem !important;
    }
    .cart-count-badge {
        top: -6px;
        right: -8px;
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
}
@media screen and (max-width: 575px) {
    .BlockMapp, .lineDeux, .lineUn, .LogoPosition, .LogoAppel, .LogoMail { display: none; }
}
@media screen and (max-width: 550px) {
    .cart-count-badge { right: 11%; top: 38px; }
}
@media screen and (max-width: 500px) {
    .DeuxIcones { display: flex !important; justify-content: center !important; margin-top: 25px !important; gap: 1rem !important; }
    .LogoCasseDuGSM { width: 65px; height: 65px; display: block !important; margin: auto !important; margin-top: 8px !important; }
    .icon-item i { font-size: 1rem !important; }
    .icon-item span { font-size: 0.55rem !important; }
    .cart-count-badge { right: 14%; top: 38px; }
}
@media screen and (max-width: 480px) {
    .TitreFooter, .TitreFooterM { font-size: 10px; }
    .TexteAdresse, .TexteAdresseM { font-size: 8px; }
    .TextNav { font-size: 12px; }
    .text-white { font-size: 11px; }
    .PrendreRdv { width: 136px; height: 22px; font-size: 12px; }
    .Copyright { font-size: 10px; }
}
/* ===== AUTRES STYLES ===== */
.bg-light {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.50) !important;
    box-shadow: 0px 4px 4px 0px rgba(200, 200, 200, 0.15), 0px 4px 4px 0px rgba(255, 255, 255, 0.50) inset;
    height: 100px;
}
.BlockMonCompte {
    width: 271px;
    height: 557px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 4px 0px rgba(200, 200, 200, 0.15), 0px 4px 4px 0px rgba(255, 255, 255, 0.50) inset;
    margin-left: 54px;
    margin-top: 53px;
}