/********** Template CSS **********/
:root {
    --primary: #65B530;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.icon-box-about {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e6e6e6;
    transition: 0.3s ease;
}

.icon-box-about:hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    transform: scale(1.05);
}

.about img {
    transition: 0.4s ease;
}

.about img:hover {
    transform: scale(1.03);
}

.aboutSwiper,
.aboutSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.aboutSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.engagement-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:all .35s ease;
    height:100%;
}

.engagement-card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.engagement-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px auto;
    border-radius:50%;
    background:#f8f9fa;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}

.engagement-card:hover .engagement-icon{
    background:rgba(13,110,253,.08);
    transform:scale(1.08);
}

.engagement-icon i{
    font-size:2.2rem;
    color:#0d6efd;
}

.engagement-card h4{
    font-weight:600;
    margin-bottom:15px;
}

.engagement-card p{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:0;
}


/*** DURASUN ***/

/* Icône principale */
.construction-icon{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#f3f7f0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.construction-icon i{
    font-size:3rem;
    color:#5fa73c;
}

/* Blocs avantages */
.feature-box{
    padding:20px;
    transition:.3s ease;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    font-size:3rem;
    color:#5fa73c;
    margin-bottom:15px;
}

.feature-box h5{
    font-weight:600;
    margin-bottom:5px;
}

.feature-box p{
    color:#6c757d;
    margin-bottom:0;
}

/* Bloc information */
.info-box{
    background:#f5f8f3;
    border:1px solid #dfe8d8;
    border-radius:20px;
    padding:35px;
}

.info-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    border:2px solid #5fa73c;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-icon i{
    font-size:2rem;
    color:#5fa73c;
}

/*** FAQ ***/
.faq-modern .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.faq-modern .accordion-button{
    background:#fff;
    padding:22px;
    font-size:1.05rem;
    font-weight:600;
    color:#212529;
}

.faq-modern .accordion-button:not(.collapsed){
    background:#f8f9fa;
    color:#0d6efd;
    box-shadow:none;
}

.faq-modern .accordion-button:focus{
    box-shadow:none;
    border:none;
}

.faq-modern .accordion-body{
    padding:25px;
    color:#6c757d;
    line-height:1.8;
}

.faq-modern .accordion-button::after{
    transform:scale(1.2);
}

/*** CONTACT ***/
.contact-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:all .35s ease;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#0d6efd;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.contact-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px auto;
    border-radius:50%;
    background:#f8f9fa;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}

.contact-card:hover .contact-icon{
    background:rgba(13,110,253,.08);
    transform:scale(1.08);
}

.contact-icon i{
    font-size:2rem;
    color:#0d6efd;
}

.contact-card h4{
    margin-bottom:15px;
    font-weight:600;
    color:#212529;
}

.contact-card p{
    margin-bottom:0;
    color:#6c757d;
    line-height:1.8;
}

.contact-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    min-height:280px;
    transition:all .35s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.contact-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:rgba(255,255,255,0.92);

    z-index:1;
}

.contact-card > *{
    position:relative;
    z-index:2;
}

.contact-address{
    background:
        url('../img/contact_adresse.jpg')
        center center / cover no-repeat;
}

.contact-email{
    background:
        url('../img/contact_email.png')
        center center / cover no-repeat;
}

.contact-phone{
    background:
        url('../img/contact_mobile.jpg')
        center center / cover no-repeat;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.contact-address,
.contact-email,
.contact-phone{
    transition:all .5s ease;
}

.contact-address:hover,
.contact-email:hover,
.contact-phone:hover{
    background-size:110%;
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}

/*** CATEGORIES PRODUITS ***/

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #edf0f5;
    height:100%;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.category-image{
    position:relative;
    overflow:hidden;
    height:250px;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:rgba(13,110,253,.70);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
}

.category-card:hover .category-overlay{
    opacity:1;
}

.category-body{
    padding:30px;
    position:relative;
}

.category-icon{

    width:70px;
    height:70px;

    background:#0d6efd;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-top:-65px;

    margin-bottom:20px;

    position:relative;

    z-index:5;

    box-shadow:0 10px 25px rgba(13,110,253,.35);

}

.category-body h4{
    font-weight:700;
    margin-bottom:15px;
}

.category-body p{
    color:#6c757d;
    min-height:70px;
}

.category-tags{
    margin-top:15px;
}

.category-tags span{

    display:inline-block;

    padding:6px 12px;

    background:#f5f7fa;

    border-radius:30px;

    margin:4px;

    font-size:13px;

}

.category-footer{

    margin-top:25px;

    border-top:1px solid #eee;

    padding-top:18px;

    font-weight:600;

    color:#0d6efd;

}

.category-title{

    color:inherit;

    text-decoration:none;

    transition:.25s;

}

.category-title:hover{

    color:inherit;

    text-decoration:none;

    opacity:.85;

}

.category-link{
    display:block;
    position:relative;
    color:inherit;
    text-decoration:none;
}

.product-link{

    display:block;

    position:relative;

    color:inherit;

    text-decoration:none;

}

.product-title{

    color:inherit;

    text-decoration:none;

    transition:.25s;

}

.product-title:hover{

    color:var(--primary);

    text-decoration:none;

}

.product-link{

    display:block;

    position:relative;

    color:inherit;

    text-decoration:none;

}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*** Partners ***/
/* ===== PARTNERS SECTION ===== */
.partners-section {
    position: relative;
}

/* Logos */
.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-item img {
    max-height: 70px;
    max-width: 160px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Fade edges gauche/droite */
.partnersSwiper {
    position: relative;
}

.partnersSwiper::before,
.partnersSwiper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partnersSwiper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.partnersSwiper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/*** SERVICES ***/
/* ===== SERVICE PREMIUM CARDS ===== */
.service-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e6e6e6; /* ✅ bordure plus visible */
    transition: all 0.35s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd; /* bleu Bootstrap au hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

.service-card {
    display: flex;
    flex-direction: column;
}



/* pousse le bouton en bas */
.service-card a.btn {
    margin-top: auto;
}

/* Icône dans cercle doux */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background: rgba(13, 110, 253, 0.08);
    transform: scale(1.05);
}

/* Bouton */
.service-card .btn {
    border-radius: 50px;
    transition: 0.3s;
}

.service-card .btn:hover {
    transform: scale(1.05);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

/*** PRODUITS FICHES ***/

/****************************************************/
/*************** BREADCRUMB *************************/
/****************************************************/

.product-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    font-size:15px;
    font-weight:500;
}

.product-breadcrumb a{
    text-decoration:none;
    color:#0d6efd;
    transition:.3s;
}

.product-breadcrumb a:hover{
    color:#084298;
}

.product-breadcrumb i{
    font-size:18px;
}

.product-breadcrumb .separator{
    color:#adb5bd;
    font-size:14px;
}

.product-breadcrumb span{
    color:#6c757d;
}



/****************************************************/
/**************** TOOLBAR ***************************/
/****************************************************/

.catalog-toolbar{

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    margin-bottom:25px;

}

.product-counter{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:18px;

    color:#0d6efd;

}

.product-counter i{

    font-size:28px;

}

.search-box{

    position:relative;

}

.search-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#999;

}

.search-box input{

    padding-left:48px;

    height:50px;

    border-radius:30px;

    border:1px solid #dee2e6;

}

.search-box input:focus{

    border-color:#0d6efd;

    box-shadow:none;

}

.catalog-toolbar select{

    height:50px;

    border-radius:30px;

}



/****************************************************/
/******************* CARD ***************************/
/****************************************************/

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.07);

    transition:.35s;

    height:100%;

    border:1px solid #edf0f5;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}



/****************************************************/
/**************** IMAGE *****************************/
/****************************************************/

.product-image{

    position:relative;

    overflow:hidden;

    height:200px;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.product-card:hover img{

    transform:scale(1.08);

}



/****************************************************/
/**************** OVERLAY ***************************/
/****************************************************/

.product-overlay{

    position:absolute;

    inset:0;

    background:rgba(13,110,253,.72);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;

}

.product-card:hover .product-overlay{

    opacity:1;

}

.overlay-buttons{

    display:flex;

    gap:15px;

}

.overlay-buttons .btn{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    transition:.3s;

}

.overlay-buttons .btn:hover{

    transform:scale(1.15);

}



/****************************************************/
/**************** BADGES ****************************/
/****************************************************/

.product-badges{

    position:absolute;

    top:15px;

    left:15px;

    display:flex;

    flex-direction:column;

    gap:8px;

    z-index:5;

}

.product-badges .badge{

    font-size:13px;

    padding:8px 14px;

    border-radius:25px;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.20);

}



/****************************************************/
/**************** BODY ******************************/
/****************************************************/

.product-body{

     padding:18px 20px;

}

.product-body h5{

     margin:0 0 6px;

    font-size:1.15rem;

    font-weight:700;

    line-height:1.35;

    min-height:52px;

}

.product-body p{

    color:#6c757d;

    min-height:65px;

    margin-bottom:20px;

}



/****************************************************/
/**************** INFOS *****************************/
/****************************************************/

.product-info{

    border-top:1px solid #ececec;

    padding-top:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    font-size:14px;

    color:#6c757d;

}

.product-info span{

    display:flex;

    align-items:center;

    gap:6px;

}

.product-info i{

    color:#0d6efd;

}



/****************************************************/
/**************** PAGINATION ************************/
/****************************************************/

.catalog-pagination{

    margin-top:60px;

}

.catalog-pagination .pagination{

    gap:10px;

}

.catalog-pagination .page-link{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50% !important;

    border:none;

    color:#495057;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.catalog-pagination .page-link:hover{

    background:#0d6efd;

    color:#fff;

}

.catalog-pagination .active .page-link{

    background:#0d6efd;

    color:#fff;

}



/****************************************************/
/**************** RESPONSIVE ************************/
/****************************************************/

@media(max-width:991px){

.catalog-toolbar .row>div{

margin-bottom:15px;

}

.product-counter{

justify-content:center;

}

}



@media(max-width:767px){

.product-image{

height:240px;

}

.product-body{

padding:22px;

}

.product-body h5{

min-height:auto;

}

.product-body p{

min-height:auto;

}

.product-info{

flex-direction:column;

align-items:flex-start;

}

}

/*** FICHE PRODUIT ***/

/****************************************************/
/**************** BREADCRUMB *************************/
/****************************************************/

.product-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    font-size:15px;
    font-weight:500;
}

.product-breadcrumb a{
    color:#0d6efd;
    text-decoration:none;
    transition:.3s;
}

.product-breadcrumb a:hover{
    color:#084298;
}

.product-breadcrumb i{
    font-size:18px;
}

.separator{
    color:#adb5bd;
}

.product-breadcrumb span{
    color:#6c757d;
    font-weight:600;
}



/****************************************************/
/**************** IMAGE ******************************/
/****************************************************/

.product-image-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    border:1px solid #edf0f5;

    transition:.35s;

}

.product-image-card:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.product-image{

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    min-height:240px;

    overflow:hidden;

}

.product-image img{

    max-width:90%;

    max-height:430px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.45s ease;

}

.product-image:hover img{

    transform:scale(1.08);

}



/****************************************************/
/**************** BADGES *****************************/
/****************************************************/

.product-badges{

    position:absolute;

    top:18px;

    left:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.product-badges .badge{

    padding:10px 18px;

    font-size:13px;

    border-radius:30px;

    font-weight:600;

    letter-spacing:.5px;

    box-shadow:0 8px 18px rgba(0,0,0,.25);

}



/****************************************************/
/**************** INFOS ******************************/
/****************************************************/

.product-details{

    background:#fff;

    border-radius:25px;

    padding:40px;

    border:1px solid #edf0f5;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.product-details h1{

    font-size:38px;

    font-weight:700;

    color:#212529;

    margin-bottom:20px;

}

.product-details .lead{

    font-size:18px;

    color:#6c757d;

    line-height:1.8;

}

.product-details hr{

    margin:30px 0;

}



/****************************************************/
/**************** FEATURES ***************************/
/****************************************************/

.product-features{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.feature-item{

    display:flex;

    align-items:center;

    font-size:17px;

    padding:15px 20px;

    background:#f8f9fa;

    border-radius:14px;

    transition:.3s;

}

.feature-item:hover{

    background:#eef5ff;

    transform:translateX(8px);

}

.feature-item i{

    font-size:22px;

    margin-right:15px;

    min-width:30px;

}

.feature-item strong{

    width:140px;

    color:#343a40;

}



/****************************************************/
/**************** BOUTONS ****************************/
/****************************************************/

.product-details .btn{

    transition:.3s;

}

.product-details .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(13,110,253,.25);

}



/****************************************************/
/**************** TABS *******************************/
/****************************************************/

#productTabs{

    border:none;

    gap:12px;

}

#productTabs .nav-link{

    border:none;

    border-radius:50px;

    background:#f5f5f5;

    color:#495057;

    padding:14px 28px;

    font-weight:600;

    transition:.3s;

}

#productTabs .nav-link.active{

    background:#0d6efd;

    color:#fff;

}

#productTabs .nav-link:hover{

    background:#0d6efd;

    color:#fff;

}

.tab-content{

    margin-top:35px;

    line-height:2;

    font-size:17px;

}

.tab-pane{

    animation:fadeProduct .4s;

}

@keyframes fadeProduct{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/****************************************************/
/**************** DESCRIPTION ************************/
/****************************************************/

.tab-content h2,
.tab-content h3{

    margin-top:25px;

    margin-bottom:15px;

    color:#0d6efd;

}

.tab-content ul{

    padding-left:20px;

}

.tab-content li{

    margin-bottom:10px;

}



/****************************************************/
/************** PRODUITS SIMILAIRES *****************/
/****************************************************/

.similar-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #edf0f5;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.similar-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.similar-card img{

    transition:.45s;

}

.similar-card:hover img{

    transform:scale(1.08);

}



/****************************************************/
/**************** RESPONSIVE *************************/
/****************************************************/

@media(max-width:991px){

.product-details{

padding:30px;

margin-top:30px;

}

.product-details h1{

font-size:30px;

}

.feature-item{

font-size:15px;

}

}



@media(max-width:768px){

.product-details{

padding:25px;

}

.feature-item{

flex-direction:column;

align-items:flex-start;

gap:8px;

}

.feature-item strong{

width:auto;

}

.product-details .btn{

display:block;

width:100%;

margin-bottom:15px;

}

#productTabs{

justify-content:center;

}

}

/*** PRODUITS SIMILAIRES ***/

.similar-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.similar-card:hover{

transform:translateY(-8px);

box-shadow:0 22px 45px rgba(0,0,0,.15);

}

.similar-card img{

transition:.45s;

padding:15px;

}

.similar-card:hover img{

transform:scale(1.05);

}

.similar-card h5{

    font-size:17px;

    line-height:1.5;

    margin-bottom:18px;

    min-height:55px;

}

.badge-card{

position:absolute;

left:15px;

top:15px;

padding:8px 16px;

font-size:13px;

}

.badge-new{

position:absolute;

right:15px;

top:15px;

padding:8px 16px;

font-size:13px;

}

/****************************************************/
/*********** CARROUSEL PRODUITS **********************/
/****************************************************/

.similarProductsSwiper{

    padding:15px 60px 35px;

    position:relative;

}

.similarProductsSwiper .swiper-slide{

    height:auto;

}

.similarProductsSwiper .swiper-button-next,

.similarProductsSwiper .swiper-button-prev{

    width:48px;

    height:48px;

    background:#fff;

    border-radius:50%;

    color:#0d6efd;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.similarProductsSwiper .swiper-button-next:hover,

.similarProductsSwiper .swiper-button-prev:hover{

    background:#0d6efd;

    color:#fff;

}

.similarProductsSwiper .swiper-button-next::after,

.similarProductsSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

}

.similar-title{

    font-size:16px;

    font-weight:600;

    color:#222;

    line-height:1.5;

    min-height:48px;

    margin-bottom:18px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

    text-overflow:ellipsis;

}

/************************************************************************
***************************** OVERLAY ***********************************
************************************************************************/

#pdfOverlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(3px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1040;

}

#pdfOverlay.active{

    opacity:1;

    visibility:visible;

}


/************************************************************************
***************************** DRAWER ************************************
************************************************************************/

#pdfDrawer{

    position:fixed;

    top:0;

    right:-900px;

    width:850px;

    max-width:95%;

    height:100vh;

    background:#fff;

    box-shadow:-15px 0 45px rgba(0,0,0,.25);

    transition:right .45s ease;

    z-index:1050;

    display:flex;

    flex-direction:column;

}

#pdfDrawer.active{

    right:0;

}


/************************************************************************
***************************** HEADER ************************************
************************************************************************/

.drawer-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 30px;

    border-bottom:1px solid #e9ecef;

    background:#fff;

}

.drawer-header h4{

    margin:0;

    font-weight:700;

}

.drawer-header small{

    display:block;

    margin-top:4px;

}

#closeDrawer{

    width:46px;

    height:46px;

    border:none;

    background:none;

    color:#6c757d;

    font-size:32px;

    transition:.25s;

}

#closeDrawer:hover{

    color:#dc3545;

    transform:rotate(90deg) scale(1.1);

}


/************************************************************************
***************************** BODY **************************************
************************************************************************/

.drawer-body{

    flex:1;

    background:#f5f6fa;

    overflow:hidden;

}

.drawer-body iframe{

    width:100%;

    height:100%;

    border:none;

}


/************************************************************************
***************************** FOOTER ************************************
************************************************************************/

.drawer-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 30px;

    background:#fff;

    border-top:1px solid #ececec;

}

.drawer-footer .btn{

    border-radius:50px;

    padding:10px 28px;

}


/************************************************************************
************************** PDF ABSENT ***********************************
************************************************************************/

.drawer-empty{

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}

.drawer-empty h3{

    margin-top:20px;

    font-weight:700;

}

.drawer-empty p{

    color:#6c757d;

    max-width:400px;

}


/************************************************************************
***************************** SCROLL ************************************
************************************************************************/

#pdfDrawer::-webkit-scrollbar{

    width:8px;

}

#pdfDrawer::-webkit-scrollbar-thumb{

    background:#d5d5d5;

    border-radius:20px;

}


/************************************************************************
***************************** RESPONSIVE ********************************
************************************************************************/

@media(max-width:992px){

    #pdfDrawer{

        width:100%;

        max-width:100%;

    }

}