body {
    margin: 0;
    background: #f6f8fb;
    font-family: Arial, Helvetica, sans-serif;
}

.ce-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
.ce-header .row {
    min-height: 115px;
}
.ce-logo {
    width: 95px;
    height: auto;
    object-fit: contain;
}
.ce-logo-slogan{
    color:#003f9e;
    font-size:14px;
    font-weight:800;
    font-style:italic;
    margin-top:6px;
    letter-spacing:0.3px;
}

.ce-title {
    margin: 0;
    color: #12aee8;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.ce-subtitle {
    letter-spacing: 5px;
    font-size: 13px;
    color: #111827;
    font-weight: 700;
}
.ce-search {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.ce-search input {
    border: none;
    box-shadow: none;
    padding: 14px 18px;
}

.ce-search button {
    border: none;
    background: #0069d9;
    color: #fff;
    padding: 0 22px;
    font-size: 22px;
}

.ce-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

.ce-cart i {
    font-size: 32px;
}

.ce-cart b {
    position: absolute;
    top: -12px;
    right: -14px;
    background: #0069d9;
    color: #fff;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 12px;
}

.ce-nav {
    background: linear-gradient(90deg, #004fd6, #007bff);
    z-index: 9999;
}

.ce-nav.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

#nav-placeholder {
    display: none;
}

.ce-nav-scroll {
    display: flex;
    align-items: center;
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 24px;
}

.ce-nav .container-fluid {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ce-nav-item {
    color: #fff;
    text-decoration: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    flex: 0 0 auto;
}

.ce-nav-item:hover {
    color: #dbeafe;
}
.produit-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s ease;
    background: #fff;
}

.produit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 64, 160, 0.12);
}

.produit-img-wrap {
    display: block;
    height: 190px;
    background: #f8fafc;
    padding: 12px;
}

.produit-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produit-famille {
    font-size: 12px;
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.produit-title {
    font-size: 15px;
    font-weight: 700;
    min-height: 42px;
}

.produit-title a {
    color: #111827;
    text-decoration: none;
}

.produit-title a:hover {
    color: #0d6efd;
}

.produit-prix {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 800;
}


.produit-stock {
  color: #000;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 700;
}	
.hero-home {
    background: linear-gradient(120deg, #eaf4ff, #ffffff);
}

.hero-home h1 {
  color: #003f9e;
  font-weight: 800;
  font-size: 40px;
  padding: 12px;
}
.hero-home p {
    color: #4b5563;
    font-size: 18px;
    max-width: 650px;
}

.home-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 64, 160, 0.08);
}

.home-card h4 {
    color: #0d6efd;
    font-weight: 800;
}
.boutique-head {
     display:flex;
    justify-content:space-between;
    align-items:end;
    gap:20px;
    flex-wrap:wrap
}

.boutique-head h2 {
    color: #003f9e;
    font-weight: 800;
}

.boutique-filtres {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 16px;
}
.tri-form{
    min-width:260px;
}

.tri-form select{
    border-radius:12px;
}
.tri-label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:700;
    color:#374151;
}

.detail-image-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.detail-image {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.detail-categorie {
    color: #0d6efd;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.detail-title {
    color: #111827;
    font-weight: 800;
    font-size: 34px;
    margin-bottom: 20px;
}

.detail-prix {
    color: #0d6efd;
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 15px;
}

.detail-stock {
    color: #374151;
    font-size: 16px;
}

.detail-qte {
    max-width: 160px;
}
.detail-description{
    margin-top:25px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:24px;
    line-height:1.7;
    color:#374151;
}

.detail-description h3{
    color:#003f9e;
    font-weight:800;
    margin-bottom:18px;
}

.panier-table{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
}

.panier-produit{
    display:flex;
    align-items:center;
    gap:15px;
}

.panier-image{
    width:90px;
    height:90px;
    object-fit:contain;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:8px;
    background:#fff;
}

.panier-nom{
    font-weight:700;
    color:#111827;
}

.panier-stock{
    color:#6b7280;
    font-size:13px;
    margin-top:4px;
}

.panier-qte{
    width:90px;
}

.panier-total-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:24px;
}

.panier-total-ligne{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:22px;
}
.panier-mobile{
    display:none;
}

.ce-mobile-menu-btn{
    display:none;
}
.commande-title{
    color:#003f9e;
    font-weight:800;
    margin-bottom:25px;
}

.commande-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:24px;
    height:100%;
}

.commande-box h4{
    color:#003f9e;
    font-weight:800;
}

.commande-produit{
    display:flex;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid #eef2f7;
}

.commande-image{
    width:75px;
    height:75px;
    object-fit:contain;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:6px;
    background:#fff;
}

.commande-nom{
    font-weight:700;
    color:#111827;
}

.commande-qte{
    color:#6b7280;
    font-size:13px;
    margin-top:4px;
}

.commande-prix{
    color:#0d6efd;
    font-weight:800;
    margin-top:5px;
}

.commande-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:17px;
}

.panier-qte-mobile{
    display:none;
}
.commande-success-box{
    max-width:720px;
    margin:0 auto;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,64,160,0.10);
}

.success-icon{
    width:76px;
    height:76px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:900;
    margin:0 auto 20px;
}

.commande-success-box h2{
    color:#003f9e;
    font-weight:900;
}

.success-details{
    margin-top:25px;
    text-align:left;
    border-top:1px solid #eef2f7;
}

.success-details div{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:14px 0;
    border-bottom:1px solid #eef2f7;
}

.success-details span{
    color:#6b7280;
}

.success-details strong{
    color:#111827;
    text-align:right;
}
.ce-footer{
    background:linear-gradient(135deg,#003f9e,#001f4d);
    color:#cbd5e1;
    margin-top:60px;
    padding-top:50px;
	border-top:4px solid #0d6efd;
}

.footer-logo img{
    height:60px;
    margin-bottom:18px;
}

.footer-text{
    line-height:1.8;
    color:#fff;
}

.footer-title{
    color:#fff;
    font-weight:800;
    margin-bottom:18px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#60a5fa;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-whatsapp a{
    display:inline-block;
    margin-top:8px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:10px;
    font-weight:700;
}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:20px 0;
    font-size:14px;
    color:#fff;
}

.page-info-box{
    max-width:1000px;
    margin:0 auto;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:35px;
    line-height:1.8;
}

.page-info-box h1{
    color:#003f9e;
    font-weight:900;
    margin-bottom:20px;
}

.page-info-box h3{
    color:#0d6efd;
    font-weight:800;
    margin-top:28px;
}
.footer-slogan{
    color:#fff;
    font-weight:800;
    font-style:italic;
    margin-top:12px;
}
.home-slider{
    position:relative;
    min-height:420px;
    overflow:hidden;
    background:#003f9e;
}

.slide{
    display:none;
    min-height:420px;
    align-items:center;
    background:linear-gradient(135deg,#003f9e,#0d6efd);
    color:#fff;
    padding:50px 8%;
}

.slide.active{
    display:flex;
}

.slide:nth-child(2){
    background:linear-gradient(135deg,#001f4d,#007bff);
}

.slide:nth-child(3){
    background:linear-gradient(135deg,#002b70,#12aee8);
}

.slide-content{
    max-width:720px;
}

.slide-content h1{
    font-size:46px;
    font-weight:900;
    margin-bottom:18px;
}

.slide-content p{
    font-size:20px;
    margin-bottom:28px;
    line-height:1.6;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.25);
    color:white;
    font-size:34px;
    line-height:1;
    cursor:pointer;
}

.slider-btn:hover{
    background:rgba(255,255,255,0.4);
}

.slider-btn.prev{
    left:20px;
}

.slider-btn.next{
    right:20px;
}

.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,0.5);
    cursor:pointer;
}

.dot.active{
    background:white;
}

.badge-stock{
    display:inline-block;
    margin-left:6px;
    padding:3px 8px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
}

.badge-success{
    background:#dcfce7;
    color:#166534;
}

.badge-warning{
    background:#fef3c7;
    color:#92400e;
}

.badge-danger{
    background:#fee2e2;
    color:#991b1b;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.05);
}
@media(max-width:768px){
    .home-slider,
    .slide{
        min-height:360px;
    }

    .slide{
        padding:40px 25px;
        text-align:center;
        justify-content:center;
    }

    .slide-content h1{
        font-size:30px;
    }

    .slide-content p{
        font-size:16px;
    }

    .slider-btn{
        display:none;
    }

     .ce-logo-slogan{
        font-size:12px;
    }
	.page-info-box{
        padding:22px;
    }

    .ce-footer{
        text-align:center;
    }

    .footer-contact{
        align-items:center;
    }


    .commande-success-box{
        padding:22px;
    }

    .success-details div{
        flex-direction:column;
        gap:4px;
    }

    .success-details strong{
        text-align:left;
    }

    .table-responsive{
        display:none;
    }

    .panier-qte-desktop{
        display:none;
    }

    .panier-qte-mobile{
        display:block;
    }

    .commande-box{
        padding:18px;
    }

    .commande-total{
        font-size:18px;
    }

    .ce-mobile-menu-btn{
        display:block;
        width:100%;
        background:#0069d9;
        color:white;
        border:none;
        padding:14px;
        font-size:17px;
        font-weight:800;
    }

    .ce-nav-scroll{
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:0;
    }

    .ce-nav-scroll.active{
        display:flex;
    }

    .ce-nav-item{
        padding:14px 20px;
        border-top:1px solid rgba(255,255,255,0.2);
    }

    .table-responsive{
        display:none;
    }

    .panier-mobile{
        display:block;
    }

    .panier-mobile-card{
        background:#fff;
        border:1px solid #e5e7eb;
        border-radius:18px;
        padding:15px;
        margin-bottom:15px;
    }

    .panier-mobile-top{
        display:flex;
        gap:15px;
        margin-bottom:15px;
    }

    .panier-mobile-image{
        width:85px;
        height:85px;
        object-fit:contain;
        border:1px solid #eee;
        border-radius:12px;
        padding:6px;
        background:#fff;
    }

    .panier-mobile-title{
        font-weight:700;
        font-size:16px;
        color:#111827;
    }

    .panier-mobile-stock{
        color:#6b7280;
        margin-top:5px;
        font-size:13px;
    }

    .panier-mobile-info{
        display:flex;
        justify-content:space-between;
        margin-bottom:15px;
    }

    .panier-mobile-info small{
        display:block;
        color:#6b7280;
        margin-bottom:4px;
    }

    .panier-mobile-actions{
        display:flex;
        gap:12px;
        align-items:center;
    }

    .panier-mobile-actions .panier-qte{
        width:120px;
    }

    .panier-image{
        width:65px;
        height:65px;
    }

    .panier-total-ligne{
        font-size:18px;
    }

    .detail-title {
        font-size: 24px;
    }

    .detail-prix {
        font-size: 24px;
    }

    .boutique-filtres {
        grid-template-columns: 1fr;
    }

    .ce-title {
        font-size: 22px;
    }

    .ce-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .ce-search {
        margin-top: 10px;
    }

    .ce-cart span {
        display: none;
    }

    .ce-nav {
        overflow-x: auto;
    }
    .produit-img-wrap {
        height: 140px;
    }

    .produit-title {
        font-size: 13px;
    }

    .produit-prix {
        font-size: 15px;
    }
    .hero-home h1 {
        font-size: 28px;
    }

    .hero-home p {
        font-size: 15px;
    }
}