.homepage{

    padding-top:0 !important;

}

/* ==================================================
   HERO
================================================== */

.hero{
    background:#090909;
    color:#fff;
    padding:0px 0;
    overflow:hidden;
}

.hero .container{

   /* max-width:1320px;*/
	width:100%;
    margin:0 auto;
    padding:0 30px;

}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    /*min-height:540px;*/
}

.hero-content{
    flex:0 0 42%;
}

.hero-content h1{
    font-family:'Montserrat',sans-serif;
    font-size:54px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
    margin:0 0 30px;
    color:#fff;
}

.hero-subtitle{
    font-size:22px;
    line-height:1.6;
    color:#d5d5d5;
    margin-bottom:35px;
}

.hero-features{
    list-style:none;
    margin:0 0 40px;
    padding:0;
}

.hero-features li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:18px;
    color:#f2f2f2;
}

.hero-features li::before{
    content:"✔";
    color:var(--primary);
    font-size:18px;
    font-weight:bold;
}

.hero-image{
    flex:0 0 58%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.hero-image img{
    display:block;
    width:100%;
    max-width:760px;
    height:auto;
    border:none;
    box-shadow:none;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#111;
    padding:18px 42px;
    border-radius:40px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:all .3s ease;
}

.btn-primary:hover{
    background:#dce94c;
    color:#111;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(201,214,41,.35);
}

/* =========================================
   BOUTON HERO - VERSION MOBILE
   ========================================= */

@media (max-width: 767px) {

    .btn-primary {
        padding: 12px 28px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.2;
    }

}
/* ==================================================
   SERVICES
================================================== */

.services{

    background:#151515;
    color:#fff;
    padding:28px 0;
    border-top:1px solid rgba(255,255,255,.08);

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.service-item{

    display:flex;
    align-items:center;
    gap:18px;

}

.service-icon{

    width:56px;
    height:56px;

    border:2px solid var(--primary);
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

}

.service-item strong{

    display:block;
    font-size:16px;
    margin-bottom:4px;

}

.service-item span{

    color:#cfcfcf;
    font-size:14px;

}

/* ==================================================
   DESTOCKAGE
================================================== */

.promotion {

    padding:40px 0;
    background:#fff;

}


/* ==================================================
   CATEGORIES
================================================== */

.home-categories{

    padding:40px 0;
    background:#fff;

}

.section-header{

    text-align:center;
    margin-bottom:60px;

}

.section-header h2{

    font-size:42px;
    margin-bottom:15px;

}

.section-header p{

    color:#777;
    font-size:18px;

}

.categories-grid{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;
}



.category-card{

    width:200px;
    text-align:center;

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-image{

    width:140px;
    height:140px;

    margin:auto;

    border-radius:50%;
    background:#F7F7F7;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    transition:.3s;

}

.category-card:hover .category-image{

    background:var(--primary);

}

.category-image img{

    width:80px;
    height:80px;
    object-fit:contain;

}

.category-placeholder{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#ddd;

}

.category-card h3{

    margin-top:20px;
    margin-bottom:8px;

    font-size:18px;

}

.category-card span{

    color:var(--primary-dark);
    font-size:15px;
    font-weight:600;

}


.no-products {
	text-align: center;
}	

/*==================================================
 INFORMATIONS - HORAIRES
==================================================*/

.home-info{

    width:100%;

    background:#f3f3f3;

    padding:40px 0;

    margin:0;

}

.home-info .container{

    max-width:1320px;

    margin:0 auto;

    text-align:center;

}

.home-info-title{


    margin-bottom:40px;

}

.home-info-image{

    max-width:550px;

    margin:0 auto;

}

.home-info-image img{

    width:100%;

    display:block;

    border-radius:12px;

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

}

/* =========================================================
   INFO - IMAGES
========================================================= */

.home-info-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
}

.home-info-image {
    width: 100%;
}

.home-info-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .home-info-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}
/*==================================================
NOUVEAUTES - DERNIERS ARRIVAGES
==================================================*/

.best-sellers{

    padding:40px 0;

    background:#f8f8f8;

}

.best-sellers .section-header{

    text-align:center;

    margin-bottom:60px;

}

.best-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.best-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.3s;

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

}

.best-card:hover{

    transform:translateY(-8px);

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

}

.best-image{

    display:flex;

    align-items:center;

    justify-content:center;

    height:250px;

    margin-bottom:20px;

}

.best-image img{

    max-width:100%;

    max-height:220px;

    width:auto;

    height:auto;

    object-fit:contain;

}

.best-title{

    font-size:20px;

    line-height:1.35;

    min-height:54px;

    margin-bottom:15px;

}

.best-title a{

    color:#222;

    text-decoration:none;

}

.best-title a:hover{

    color:var(--primary-dark);

}

.best-price{

    font-size:26px;

    font-weight:700;

    color:var(--primary-dark);

    margin-bottom:20px;

}

.best-card .button{

    display:block;

    width:100%;

    background:var(--primary);

    color:#111;

    border-radius:40px;

    padding:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.best-card .button:hover{

    background:var(--primary-dark);

    color:#fff;

}

.section-button{

    text-align:center;

    margin-top:60px;

}

@media(max-width:1024px){

    .best-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .best-grid{

        grid-template-columns:1fr;

    }

}


/* =========================================================
   BADGES PRODUITS
   ========================================================= */

.best-image {
    position: relative;
    display: block;
}


/* ---------------------------------------------------------
   BADGE NOUVEAUTÉ
   --------------------------------------------------------- */

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    background: #272727;
    color: #fff;

    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    z-index: 2;
}


/* ---------------------------------------------------------
   BADGE PROMOTION
   --------------------------------------------------------- */

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 48px;

    padding: 0 10px;

    background: #c7d900;
    color: #111;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;

    border-radius: 50%;

    z-index: 2;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .new-badge {
        top: 10px;
        left: 10px;

        padding: 6px 9px;

        font-size: 10px;
    }

    .sale-badge {
        top: 10px;
        right: 10px;

        min-width: 40px;
        height: 40px;

        padding: 0 7px;

        font-size: 11px;
    }

}


/* =========================================
   NOS MARQUES - BANDEAU DÉFILANT
   ========================================= */

.vapot-brands {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #ffffff;
}

.vapot-brands-header {
    text-align: center;
    margin-bottom: 35px;
}

.vapot-brands-header h2 {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
}

.vapot-brands-header p {
    margin: 0;
    font-size: 18px;
    color: #777777;
}

.vapot-brands-slider {
    width: 100%;
    overflow: hidden;
}

.vapot-brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: vapot-brands-scroll 40s linear infinite;
}

.vapot-brand {
    width: 170px;
    height: 90px;
    margin-right: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vapot-brand img {
    display: block;
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.vapot-brand:hover img {
    transform: scale(1.08);
}

@keyframes vapot-brands-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause lorsque la souris est dessus */
.vapot-brands-track:hover {
    animation-play-state: paused;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .vapot-brands {
        padding: 40px 0;
    }

    .vapot-brands-header {
        margin-bottom: 25px;
    }

    .vapot-brands-header h2 {
        font-size: 28px;
    }

    .vapot-brands-header p {
        font-size: 16px;
        padding: 0 20px;
    }

    .vapot-brand {
        width: 120px;
        height: 70px;
        margin-right: 30px;
    }

    .vapot-brand img {
        max-width: 105px;
        max-height: 50px;
    }

    .vapot-brands-track {
        animation-duration: 30s;
    }
}