/*==================================================
SKYRA V2
Auteur : ChatGPT
Version : 1.0
==================================================*/

/*=========================
VARIABLES
=========================*/

:root{
    --primary:#23ABFF;
    --primary-dark:#0F6CBD;
    --secondary:#FF7A00;
    --success:#16A34A;
    --danger:#DC3545;
    --dark:#1F2937;
    --gray:#6B7280;
    --light:#F5F7FA;
    --white:#FFFFFF;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:14px;

    --transition:.35s;
}

/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/*=========================
NAVBAR
=========================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:#fff;

    box-shadow:var(--shadow);

}

.navbar{

    padding:18px 0;

}

.navbar-brand img{

    height:65px;

}

.nav-link{

    font-weight:600;

    color:#444!important;

    margin:0 12px;

    transition:var(--transition);

    position:relative;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:3px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.cart{

    position:relative;

    color:#333;

    font-size:22px;

}

.cart span{

    position:absolute;

    top:-10px;

    right:-12px;

    width:20px;

    height:20px;

    background:red;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:11px;

}

.btn-order{

    background:var(--secondary);

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-order:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(255,122,0,.4);

}

.btn-restaurants{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:12px 28px;

    border-radius:50px;

    font-weight:700;

    margin-left:10px;

    transition:.3s;

}

.btn-restaurants:hover{

    background:var(--primary);

    color:#fff;

}

.section:first-of-type{
    padding-top:160px;
}

/*=========================
PARTIE 2 
=========================*/

/*==================================================
HERO PREMIUM - SKYRA V2
==================================================*/

/*=========================
HERO CONTAINER
=========================*/
/*==================================================
HERO
==================================================*/

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/*==================================================
FORMES DÉCORATIVES
==================================================*/

.hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
        rgba(35,171,255,.08);

    border-radius: 50%;

    top: -200px;
    right: -150px;

    pointer-events: none;
}


.hero::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background:
        rgba(255,122,0,.08);

    border-radius: 50%;

    bottom: -150px;
    left: -100px;

    pointer-events: none;
}


/*==================================================
HERO PREMIUM
==================================================*/

.hero-premium {

    position: relative;

    min-height: 100vh;

    padding:
        150px 0 80px;

    display: flex;

    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1651440204296-a79fa9988007?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/*==================================================
OVERLAY
==================================================*/

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.68),
            rgba(0,0,0,.35),
            rgba(0,0,0,.20)
        );

    pointer-events: none;
}


/*==================================================
CONTAINER
==================================================*/

.hero-premium .container {

    position: relative;

    z-index: 2;

    width: 100%;
}


/*==================================================
HERO BOX
==================================================*/

/*.hero-box {

    position: relative;

    width: 100%;

    max-width: 850px;

    padding:
        45px;

    background:
        rgba(255,255,255,.06);

    backdrop-filter:
        blur(5px);

    -webkit-backdrop-filter:
        blur(5px);

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius:
        30px;

    overflow:
        hidden;

    animation:
        heroFade 1.2s ease;
}
*/

/* Bordure lumineuse */

/*.hero-box::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius:
        inherit;

    padding:
        1px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.7),
            rgba(255,255,255,.05)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:
        xor;

    mask-composite:
        exclude;

    pointer-events:
        none;
}*/


.hero-box {
    position: relative;

    width: 100%;
    max-width: 850px;

    padding: 0;

    background: transparent;

    border: none;

    border-radius: 0;

    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    overflow: visible;

    animation: heroFade 1.2s ease;
}


.hero-box::before {
    display: none;
}


/*==================================================
BADGE
==================================================*/

.hero-badge {

    display:
        inline-flex;

    align-items:
        center;

    max-width:
        100%;

    background:
        rgba(255,255,255,.95);

    color:
        var(--dark);

    padding:
        10px 18px;

    border-radius:
        40px;

    font-size:
        14px;

    font-weight:
        700;

    margin-bottom:
        25px;

    line-height:
        1.4;
}


/*==================================================
TITRE
==================================================*/

.hero-box h1 {

    position:
        relative;

    z-index:
        2;

    margin:
        0 0 22px;

    font-size:
        65px;

    line-height:
        1.08;

    font-weight:
        800;

    color:
        var(--white);
}


.hero-box h1 span {

    color:
        var(--primary);
}


/*==================================================
DESCRIPTION
==================================================*/

.hero-box p {

    max-width:
        650px;

    margin:
        0 0 30px;

    font-size:
        18px;

    line-height:
        1.7;

    color:
        var(--white);
}


/*==================================================
RECHERCHE
==================================================*/

.hero-search {

    width:
        100%;

    max-width:
        650px;

    min-height:
        65px;

    display:
        flex;

    align-items:
        center;

    background:
        var(--white);

    padding:
        7px;

    border-radius:
        60px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.15);

    margin-bottom:
        30px;

    overflow:
        hidden;
}


.hero-search input {

    flex:
        1;

    min-width:
        0;

    height:
        100%;

    border:
        none;

    outline:
        none;

    padding:
        17px 18px;

    font-size:
        15px;

    color:
        #555;

    background:
        transparent;
}


.hero-search input::placeholder {

    color:
        #888;
}


.hero-search button {

    flex-shrink:
        0;

    border:
        none;

    background:
        var(--primary);

    color:
        var(--white);

    padding:
        16px 28px;

    border-radius:
        50px;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        .3s ease;
}


.hero-search button:hover {

    background:
        var(--primary-dark);

    transform:
        scale(1.03);
}


/*==================================================
BOUTONS
==================================================*/

.hero-buttons {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    flex-wrap:
        wrap;
}


.btn-green,
.btn-white {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        52px;

    padding:
        14px 28px;

    border-radius:
        50px;

    text-decoration:
        none;

    font-weight:
        700;

    transition:
        .3s ease;
}


.btn-green {

    background:
        var(--primary);

    color:
        var(--white);
}


.btn-green:hover {

    background:
        var(--primary-dark);

    color:
        var(--white);

    transform:
        translateY(-2px);
}


.btn-white {

    background:
        var(--white);

    color:
        var(--dark);
}


.btn-white:hover {

    color:
        var(--primary);

    transform:
        translateY(-2px);
}


/*==================================================
ANIMATION
==================================================*/

@keyframes heroFade {

    from {

        opacity:
            0;

        transform:
            translateY(50px);
    }

    to {

        opacity:
            1;

        transform:
            translateY(0);
    }
}


/*==================================================
TABLETTE
==================================================*/

@media (max-width: 992px) {

    .hero-premium {

        min-height:
            auto;

        padding:
            130px 0 60px;
    }


    .hero-box {

        max-width:
            750px;

        padding:
            35px;
    }


    .hero-box h1 {

        font-size:
            48px;
    }


    .hero-box p {

        font-size:
            17px;
    }


    .hero-search {

        max-width:
            100%;
    }

}


/*==================================================
MOBILE
==================================================*/


/*==================================================
H2 RESPONSIVE MOBILE
==================================================*/

@media (max-width: 600px) {

    h2 {
        font-size: 26px !important;
        line-height: 1.2;
    }

}

@media (max-width: 380px) {

    h2 {
        font-size: 23px !important;
        line-height: 1.2;
    }

}

@media (max-width: 600px) {

    .hero-premium {

        min-height:
            auto;

        padding:
            110px 0 45px;

        background-position:
            center;
    }


    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.68),
                rgba(0,0,0,.48)
            );
    }


    .hero-premium .container {

        padding:
            0 12px;
    }


    .hero-box {

        max-width:
            100%;

        padding:
            28px 20px;

        border-radius:
            22px;

        backdrop-filter:
            blur(4px);

        -webkit-backdrop-filter:
            blur(4px);
    }



    /* Badge */

    .hero-badge {

        width:
            fit-content;

        max-width:
            100%;

        padding:
            8px 13px;

        margin-bottom:
            20px;

        font-size:
            11px;

        line-height:
            1.4;

        text-align:
            center;
    }


    /* Titre */

    .hero-box h1 {

        font-size:
            34px;

        line-height:
            1.15;

        margin-bottom:
            18px;
    }


    /* Description */

    .hero-box p {

        font-size:
            14px;

        line-height:
            1.6;

        margin-bottom:
            22px;
    }


    /* Recherche */

    .hero-search {

        width:
            100%;

        max-width:
            100%;

        min-height:
            auto;

        padding:
            5px;

        border-radius:
            16px;

        margin-bottom:
            20px;
    }


    .hero-search input {

        min-width:
            0;

        width:
            100%;

        padding:
            14px 12px;

        font-size:
            13px;
    }


    .hero-search button {

        padding:
            13px 16px;

        border-radius:
            12px;

        font-size:
            13px;
    }


    /* Boutons */

    .hero-buttons {

        width:
            100%;

        display:
            flex;

        flex-direction:
            column;

        gap:
            10px;
    }


    .btn-green,
    .btn-white {

        width:
            100%;

        min-height:
            48px;

        padding:
            13px 18px;

        border-radius:
            14px;

        font-size:
            14px;
    }

}


/*==================================================
TRÈS PETIT MOBILE
==================================================*/

@media (max-width: 380px) {

    .hero-premium {

        padding-top:
            100px;
    }


    .hero-box {

        padding:
            24px 15px;

        border-radius:
            18px;
    }


    .hero-badge {

        font-size:
            10px;

        padding:
            7px 10px;
    }


    .hero-box h1 {

        font-size:
            28px;
    }


    .hero-box p {

        font-size:
            13px;
    }


    .hero-search {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        padding:
            5px;

        border-radius:
            14px;
    }


    .hero-search input {

        width:
            100%;

        box-sizing:
            border-box;

        padding:
            13px 12px;
    }


    .hero-search button {

        width:
            100%;

        padding:
            13px;

        border-radius:
            10px;
    }

}

/*==================================================
SKYRA NOTIFICATIONS
==================================================*/

#skyra-notifications{

    position:fixed;

    top:20px;

    right:20px;

    z-index:999999;

    display:flex;

    flex-direction:column;

    gap:15px;

}

.skyra-notification{

    min-width:320px;

    max-width:420px;

    padding:18px 20px;

    border-radius:16px;

    color:#fff;

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

    transform:translateX(120%);

    opacity:0;

    transition:.4s;

}

.skyra-notification.show{

    transform:translateX(0);

    opacity:1;

}

.skyra-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.20);

    font-size:20px;

    flex-shrink:0;

}

.skyra-message{

    flex:1;

    font-size:15px;

    line-height:1.5;

}

.skyra-succes{

    background:linear-gradient(135deg,#18b65b,#0b8f45);

}

.skyra-erreur{

    background:linear-gradient(135deg,#e53935,#b71c1c);

}

.skyra-warning{

    background:linear-gradient(135deg,#ff9800,#f57c00);

}

@media(max-width:768px){

#skyra-notifications{

    left:15px;

    right:15px;

    top:15px;

}

.skyra-notification{

    min-width:100%;

    max-width:100%;

}

}

/*=========================
BADGES CONFIANCE
=========================*/


.trust-badges{

    display:flex;

    gap:15px;

    margin-top:35px;

    flex-wrap:wrap;

}


.badge-item{

    display:flex;

    align-items:center;

    gap:10px;

    background:#fff;

    padding:12px 18px;

    border-radius:50px;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    font-size:14px;

    font-weight:600;

}


.badge-item i{

    color:var(--success);

    font-size:18px;

}



/*=========================
ANIMATIONS
=========================*/


@keyframes cardFloat{


0%{

transform:translateY(0);

}


50%{

transform:translateY(-12px);

}


100%{

transform:translateY(0);

}


}



@keyframes fadeUp{


from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}


}



.hero h1{

animation:fadeUp .8s ease forwards;

}


.hero p{

animation:fadeUp 1s ease forwards;

}


.hero-search{

animation:fadeUp 1.2s ease forwards;

}


.hero-buttons{

animation:fadeUp 1.4s ease forwards;

}


/*=========================
PARTIE 3
=========================*/

/*==================================================
SECTIONS CATEGORIES - SKYRA V2
==================================================*/


/*=========================
GENERAL SECTION
=========================*/


.section{

    padding:90px 0;

}


.section-title{

    text-align:center;

    margin-bottom:50px;

}


.section-title h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;

}


.section-title h2 span{

    color:var(--primary);

}


.section-title p{

    color:var(--gray);

    font-size:17px;

}



/*==================================================
CATEGORIES
==================================================*/


.categories{

    background:white;

}


.category-card{

    background:white;

    padding:30px 20px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s;

    cursor:pointer;

    height:100%;

}



.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}



.category-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:rgba(35,171,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}



.category-icon i{

    font-size:35px;

    color:var(--primary);

}



.category-card h3{

    font-size:18px;

    font-weight:700;

    margin-bottom:10px;

}



.category-card p{

    color:var(--gray);

    font-size:14px;

}





/*==================================================
RESTAURANTS POPULAIRES
==================================================*/


.restaurants{

    background:var(--light);

}



.restaurant-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}



.restaurant-card:hover{

    transform:translateY(-8px);

}



.restaurant-image{

    position:relative;

    height:230px;

    overflow:hidden;

}



.restaurant-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.restaurant-card:hover img{

    transform:scale(1.1);

}



.restaurant-tag{

    position:absolute;

    top:15px;

    left:15px;

    background:var(--success);

    color:white;

    padding:7px 15px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}



.restaurant-body{

    padding:25px;

}



.restaurant-body h3{

    font-size:21px;

    font-weight:800;

}



.restaurant-info{

    display:flex;

    justify-content:space-between;

    margin-top:15px;

    color:var(--gray);

    font-size:14px;

}



.restaurant-rating{

    color:#FFB800;

    font-weight:700;

}



/*==================================================
PRODUITS
==================================================*/


.products{

    background:white;

}



.product-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}



.product-card:hover{

    transform:translateY(-10px);

}



.product-image{

    height:250px;

    overflow:hidden;

    position:relative;

}



.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}



.product-favorite{

    position:absolute;

    right:15px;

    top:15px;

    width:40px;

    height:40px;

    background:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#999;

}



.product-body{

    padding:22px;

}



.product-body h3{

    font-size:20px;

    font-weight:800;

}



.product-description{

    font-size:14px;

    color:var(--gray);

    height:45px;

}



.product-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

}



.product-price{

    font-size:22px;

    font-weight:800;

    color:var(--primary);

}



.add-cart{

    width:45px;

    height:45px;

    border-radius:50%;

    background:var(--secondary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}



.add-cart:hover{

    transform:rotate(15deg) scale(1.1);

}




/*==================================================
BOUTON FAVORI PRODUIT
==================================================*/

.product-favorite{

    position:absolute;

    top:15px;

    right:15px;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:.35s;

    z-index:20;

}

.product-favorite:hover{

    background:#e63946;

    color:#fff;

    transform:scale(1.08);

}

.product-favorite i{

    color:#e63946;

    font-size:18px;

    transition:.35s;

}

.product-favorite:hover i{

    color:#fff;

}

.product-favorite .likes-count{

    font-size:12px;

    font-weight:700;

}


.product-favorite{

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

}

.product-favorite i{

    color:#9ca3af;

    transition:.3s;

}

.product-favorite:hover i{

    color:#e63946;

}

.product-favorite.liked{

    background:#fff;

    border-color:#e63946;

}

.product-favorite.liked i{

    color:#e63946;

}

.product-favorite .likes-count{

    color:#374151;

    font-weight:700;

}


/*==================================================
BOUTON AJOUT PANIER
==================================================*/

.add-cart{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#ff7a00,#ff5500);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    font-size:18px;

    box-shadow:0 12px 25px rgba(255,122,0,.35);

    transition:.35s;

}

.add-cart:hover{

    transform:translateY(-4px) scale(1.08);

    box-shadow:0 18px 35px rgba(255,122,0,.45);

}

.add-cart:active{

    transform:scale(.92);

}










/* ============================================================
   SKYRA BIO — PREMIUM DESIGN
============================================================ */

.skyra-bio-section {

    --skyra-blue: #23ABFF;
    --skyra-blue-dark: #0F6CBD;
    --skyra-blue-deep: #073E69;

    --skyra-green: #36B957;
    --skyra-green-dark: #176B2B;

    --skyra-dark: #071E32;
    --skyra-text: #17364D;
    --skyra-muted: #728594;

    position: relative;

    width: 100%;

    padding: 80px 20px;

    overflow: hidden;

    box-sizing: border-box;

    font-family:
        "Montserrat",
        "Poppins",
        Arial,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            #F5FAFD 0%,
            #FFFFFF 45%,
            #F6FBF7 100%
        );
}


/* ============================================================
   FOND
============================================================ */

.skyra-bio-section::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    left: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,171,255,.12),
            transparent 68%
        );

    pointer-events: none;
}


.skyra-bio-section::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    bottom: -350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(54,185,87,.11),
            transparent 68%
        );

    pointer-events: none;
}


/* ============================================================
   CONTAINER
============================================================ */

.skyra-bio-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    margin: auto;
}


/* ============================================================
   HERO
============================================================ */

.skyra-bio-hero {

    position: relative;

    min-height: 500px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, .85fr);

    align-items: center;

    gap: 35px;

    padding: 60px 70px;

    overflow: hidden;

    border-radius: 38px;

    background:
        linear-gradient(
            125deg,
            #FFFFFF 0%,
            #F7FCFF 48%,
            #F3FAF5 100%
        );

    border:
        1px solid
        rgba(35,171,255,.14);

    box-shadow:
        0 35px 90px
        rgba(7,62,105,.11);
}


/* ============================================================
   ORB HERO
============================================================ */

.skyra-bio-hero-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}


.orb-blue {

    width: 380px;
    height: 380px;

    top: -260px;
    right: 130px;

    background:
        radial-gradient(
            circle,
            rgba(35,171,255,.14),
            transparent 68%
        );
}


.orb-green {

    width: 320px;
    height: 320px;

    right: -170px;
    bottom: -210px;

    background:
        radial-gradient(
            circle,
            rgba(54,185,87,.15),
            transparent 68%
        );
}


/* ============================================================
   HERO CONTENT
============================================================ */

.skyra-bio-hero-content {

    position: relative;

    z-index: 5;
}


/* ============================================================
   BADGE
============================================================ */

.skyra-bio-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 15px 7px 7px;

    border-radius: 50px;

    color:
        var(--skyra-green-dark);

    background:
        rgba(54,185,87,.075);

    border:
        1px solid
        rgba(54,185,87,.16);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    box-shadow:
        0 8px 25px
        rgba(54,185,87,.06);
}


.skyra-bio-badge-icon {

    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #43CD60,
            #20883A
        );

    box-shadow:
        0 7px 17px
        rgba(54,185,87,.28);
}


.skyra-bio-badge b {

    color:
        rgba(23,107,43,.35);
}


.skyra-bio-badge small {

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .4px;

    opacity: .7;
}


/* ============================================================
   TITRE
============================================================ */

.skyra-bio-title {

    max-width: 720px;

    margin: 23px 0 17px;

    color:
        var(--skyra-dark);

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -3.2px;

    font-weight: 850;
}


.skyra-bio-title span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #23ABFF 0%,
            #0F6CBD 48%,
            #2EAA4B 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.skyra-bio-description {

    max-width: 610px;

    margin: 0 0 29px;

    color:
        var(--skyra-muted);

    font-size: 14px;

    line-height: 1.85;

    font-weight: 500;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.skyra-bio-hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 11px;

    margin-bottom: 35px;
}


.skyra-bio-primary-btn,
.skyra-bio-search-btn {

    min-height: 53px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 19px;

    border-radius: 15px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.skyra-bio-primary-btn {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #23ABFF,
            #0F6CBD
        );

    box-shadow:
        0 14px 30px
        rgba(15,108,189,.25);
}


.skyra-bio-primary-btn span {

    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgba(255,255,255,.16);
}


.skyra-bio-primary-btn:hover {

    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 38px
        rgba(15,108,189,.31);
}


.skyra-bio-search-btn {

    color:
        var(--skyra-blue-dark);

    background:
        rgba(255,255,255,.85);

    border:
        1px solid
        rgba(15,108,189,.14);
}


.skyra-bio-search-btn:hover {

    color:
        var(--skyra-blue-dark);

    transform:
        translateY(-3px);

    border-color:
        rgba(35,171,255,.35);

    box-shadow:
        0 15px 30px
        rgba(15,108,189,.10);
}


/* ============================================================
   FEATURES
============================================================ */

.skyra-bio-features {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 23px;
}


.skyra-bio-feature {

    display: flex;

    align-items: center;

    gap: 10px;
}


.skyra-bio-feature-icon {

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    color:
        var(--skyra-green-dark);

    background:
        linear-gradient(
            145deg,
            #EFFBF1,
            #E4F6E8
        );

    border:
        1px solid
        rgba(54,185,87,.12);
}


.skyra-bio-feature strong {

    display: block;

    margin-bottom: 3px;

    color:
        var(--skyra-dark);

    font-size: 10px;

    font-weight: 800;
}


.skyra-bio-feature small {

    display: block;

    color:
        var(--skyra-muted);

    font-size: 8.5px;

    font-weight: 500;
}


/* ============================================================
   VISUEL
============================================================ */

.skyra-bio-hero-visual {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* ============================================================
   GLOW
============================================================ */

.skyra-bio-visual-glow {

    position: absolute;

    width: 310px;
    height: 310px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,171,255,.23) 0%,
            rgba(54,185,87,.12) 42%,
            transparent 72%
        );

    filter: blur(5px);
}


/* ============================================================
   RINGS
============================================================ */

.skyra-bio-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(35,171,255,.13);
}


.ring-1 {

    width: 370px;
    height: 370px;
}


.ring-2 {

    width: 300px;
    height: 300px;

    border-color:
        rgba(54,185,87,.16);
}


.ring-3 {

    width: 235px;
    height: 235px;

    border-color:
        rgba(35,171,255,.10);

    border-style: dashed;
}


/* ============================================================
   CARTE VISUELLE
============================================================ */

.skyra-bio-visual-card {

    position: relative;

    z-index: 4;

    width: 245px;
    height: 315px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius:
        125px
        125px
        35px
        35px;

    background:
        linear-gradient(
            150deg,
            rgba(255,255,255,.98),
            rgba(242,250,255,.96) 55%,
            rgba(239,249,241,.96)
        );

    border:
        1px solid
        rgba(255,255,255,.9);

    box-shadow:
        0 30px 70px
        rgba(7,62,105,.18),
        inset 0 0 35px
        rgba(35,171,255,.035);

    backdrop-filter:
        blur(14px);

    animation:
        skyraBioFloat
        5s
        ease-in-out
        infinite;
}


@keyframes skyraBioFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* ============================================================
   TOP CARD
============================================================ */

.skyra-bio-card-top {

    position: absolute;

    top: 30px;

    left: 30px;
    right: 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color:
        var(--skyra-blue-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


.skyra-bio-card-top i {

    color:
        var(--skyra-green);

    font-size: 16px;
}


/* ============================================================
   ICÔNE
============================================================ */

.skyra-bio-visual-icon {

    width: 91px;
    height: 91px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 50%;

    color: #fff;

    font-size: 39px;

    background:
        linear-gradient(
            145deg,
            #46CD62,
            #208A3B
        );

    box-shadow:
        0 17px 35px
        rgba(54,185,87,.30);

    border:
        7px solid
        rgba(54,185,87,.08);
}


/* ============================================================
   TEXT VISUEL
============================================================ */

.skyra-bio-visual-small {

    color:
        var(--skyra-blue-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;
}


.skyra-bio-visual-card strong {

    margin-top: 3px;

    color:
        var(--skyra-dark);

    font-size: 30px;

    letter-spacing: 6px;

    font-weight: 900;
}


.skyra-bio-card-line {

    width: 42px;
    height: 2px;

    margin-top: 10px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--skyra-blue),
            var(--skyra-green)
        );
}


.skyra-bio-visual-bottom {

    margin-top: 9px;

    color:
        var(--skyra-muted);

    font-size: 9px;

    font-weight: 600;
}


/* ============================================================
   FLOATING CARDS
============================================================ */

.skyra-bio-floating-card {

    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.86);

    border:
        1px solid
        rgba(255,255,255,.9);

    box-shadow:
        0 15px 35px
        rgba(7,62,105,.12);

    backdrop-filter:
        blur(15px);

    animation:
        skyraBioFloatSmall
        4s
        ease-in-out
        infinite;
}


@keyframes skyraBioFloatSmall {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


.skyra-bio-floating-card > span {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color:
        var(--skyra-green-dark);

    background:
        #EAF8ED;
}


.skyra-bio-floating-card strong {

    display: block;

    color:
        var(--skyra-dark);

    font-size: 9px;
}


.skyra-bio-floating-card small {

    display: block;

    margin-top: 2px;

    color:
        var(--skyra-muted);

    font-size: 7px;
}


.floating-quality {

    top: 62px;
    right: 5px;
}


.floating-natural {

    left: 5px;
    bottom: 62px;

    animation-delay:
        -.9s;
}


/* ============================================================
   SKYRA BIO — BARRE DE RECHERCHE PREMIUM
============================================================ */

.skyra-bio-search-wrapper {

    position: relative;

    z-index: 20;

    width: min(100%, 980px);

    margin:
        -34px auto 65px;

    padding: 0 10px;

    box-sizing: border-box;
}


/* ============================================================
   BARRE PRINCIPALE
============================================================ */

.skyra-bio-search-box {

    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    width: 100%;

    min-height: 82px;

    padding: 10px 10px 10px 11px;

    box-sizing: border-box;

    border-radius: 24px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid
        rgba(35,171,255,.16);

    box-shadow:
        0 20px 60px
        rgba(7,62,105,.13),
        0 4px 15px
        rgba(35,171,255,.06);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


/* ============================================================
   HALO LUMINEUX
============================================================ */

.skyra-bio-search-box::before {

    content: "";

    position: absolute;

    inset: -2px;

    z-index: -1;

    border-radius: 26px;

    background:
        linear-gradient(
            110deg,
            rgba(35,171,255,.18),
            transparent 35%,
            rgba(54,185,87,.12)
        );

    opacity: .55;

    filter: blur(9px);

    pointer-events: none;
}


/* ============================================================
   FOCUS
============================================================ */

.skyra-bio-search-box:focus-within {

    border-color:
        rgba(35,171,255,.42);

    box-shadow:
        0 25px 65px
        rgba(15,108,189,.17),
        0 0 0 4px
        rgba(35,171,255,.055);

    transform:
        translateY(-2px);
}


/* ============================================================
   ICÔNE
============================================================ */

.skyra-bio-search-icon {

    position: relative;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    color:
        #0F6CBD;

    background:
        linear-gradient(
            145deg,
            #EDF9FF,
            #E7F5FF
        );

    border:
        1px solid
        rgba(35,171,255,.12);

    font-size: 18px;

    box-shadow:
        inset 0 0 15px
        rgba(35,171,255,.05);
}


.skyra-bio-search-box:focus-within
.skyra-bio-search-icon {

    color: #23ABFF;

    background:
        linear-gradient(
            145deg,
            #E8F8FF,
            #DDF3FF
        );
}


/* ============================================================
   CHAMP
============================================================ */

.skyra-bio-search-field {

    flex: 1;

    min-width: 0;

    padding: 0 2px;
}


.skyra-bio-search-field span {

    display: block;

    margin-bottom: 4px;

    color:
        #0F6CBD;

    font-size: 7px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 1.8px;
}


.skyra-bio-search-input {

    display: block;

    width: 100%;

    height: 32px;

    padding: 0;

    margin: 0;

    border: none;

    outline: none;

    appearance: none;

    background: transparent;

    color:
        #071E32;

    font-family:
        "Montserrat",
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 600;
}


.skyra-bio-search-input::placeholder {

    color:
        #A0AFBA;

    opacity: 1;

    font-weight: 500;
}


/* ============================================================
   BOUTON EFFACER
============================================================ */

.skyra-bio-search-clear {

    width: 34px;
    height: 34px;

    display: none;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    color:
        #8295A3;

    background:
        #F2F6F8;

    cursor: pointer;

    font-size: 11px;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}


.skyra-bio-search-clear:hover {

    color: #fff;

    background:
        #0F6CBD;

    transform:
        rotate(90deg);
}


.skyra-bio-search-clear.is-visible {

    display: flex;
}


/* ============================================================
   BOUTON RECHERCHE
============================================================ */

.skyra-bio-search-submit {

    position: relative;

    height: 56px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-shrink: 0;

    padding: 0 22px;

    border: none;

    border-radius: 17px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #23ABFF 0%,
            #0F6CBD 65%,
            #0A5B9F 100%
        );

    font-family:
        "Montserrat",
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .2px;

    cursor: pointer;

    box-shadow:
        0 11px 25px
        rgba(15,108,189,.25);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.skyra-bio-search-submit::before {

    content: "";

    position: absolute;

    width: 80px;
    height: 120px;

    top: -35px;
    left: -100px;

    transform:
        rotate(25deg);

    background:
        rgba(255,255,255,.18);

    transition:
        left .5s ease;
}


.skyra-bio-search-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 32px
        rgba(15,108,189,.32);
}


.skyra-bio-search-submit:hover::before {

    left: 120%;
}


.skyra-bio-search-submit i {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgba(255,255,255,.14);

    transition:
        transform .25s ease;
}


.skyra-bio-search-submit:hover i {

    transform:
        translateX(3px);
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .skyra-bio-search-wrapper {

        margin:
            -20px 4px 45px;

        padding: 0;
    }


    .skyra-bio-search-box {

        min-height: auto;

        display: grid;

        grid-template-columns:
            auto
            1fr
            auto;

        gap: 9px;

        padding: 9px;

        border-radius: 20px;
    }


    .skyra-bio-search-icon {

        width: 43px;
        height: 43px;

        border-radius: 13px;
    }


    .skyra-bio-search-field {

        min-width: 0;
    }


    .skyra-bio-search-field span {

        font-size: 6.5px;
    }


    .skyra-bio-search-input {

        height: 29px;

        font-size: 11px;

        text-overflow: ellipsis;
    }


    .skyra-bio-search-clear {

        width: 30px;
        height: 30px;
    }


    .skyra-bio-search-submit {

        grid-column:
            1 / -1;

        width: 100%;

        height: 47px;

        border-radius: 14px;
    }

}


/* ============================================================
   PETIT MOBILE
============================================================ */

@media (max-width: 420px) {

    .skyra-bio-search-wrapper {

        margin:
            -15px 2px 38px;
    }


    .skyra-bio-search-box {

        padding: 8px;

        gap: 8px;

        border-radius: 18px;
    }


    .skyra-bio-search-icon {

        width: 40px;
        height: 40px;

        font-size: 15px;
    }


    .skyra-bio-search-input {

        font-size: 10px;
    }


    .skyra-bio-search-submit {

        height: 45px;

        font-size: 9px;
    }

}

/* ============================================================
   SECTION HEADING
============================================================ */

.skyra-bio-section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 27px;
}


.skyra-bio-heading-label {

    display: block;

    margin-bottom: 8px;

    color:
        var(--skyra-green-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.8px;
}


.skyra-bio-heading-label i {

    margin-right: 5px;
}


.skyra-bio-section-heading h3 {

    margin: 0 0 8px;

    color:
        var(--skyra-dark);

    font-size: 31px;

    line-height: 1.15;

    letter-spacing: -1.2px;

    font-weight: 850;
}


.skyra-bio-section-heading h3 span {

    color:
        var(--skyra-blue-dark);
}


.skyra-bio-section-heading p {

    max-width: 600px;

    margin: 0;

    color:
        var(--skyra-muted);

    font-size: 12px;

    line-height: 1.7;
}


.skyra-bio-view-all {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--skyra-blue-dark);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;
}


.skyra-bio-view-all span {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(35,171,255,.08);

    transition:
        transform .25s ease,
        background .25s ease;
}


.skyra-bio-view-all:hover {

    color:
        var(--skyra-blue);
}


.skyra-bio-view-all:hover span {

    transform:
        translateX(4px);

    background:
        rgba(35,171,255,.15);
}


/* ============================================================
   CATÉGORIES
============================================================ */

.skyra-bio-categories {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.skyra-bio-category-card {

    position: relative;

    min-height: 126px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.93);

    border:
        1px solid
        rgba(7,62,105,.07);

    text-decoration: none;

    box-shadow:
        0 9px 25px
        rgba(7,62,105,.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.skyra-bio-category-card::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,171,255,.12),
            transparent 70%
        );

    transition:
        transform .4s ease;
}


.skyra-bio-category-card::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 3px;
    height: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            var(--skyra-blue),
            var(--skyra-green)
        );

    transition:
        height .3s ease;
}


.skyra-bio-category-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(35,171,255,.18);

    box-shadow:
        0 20px 38px
        rgba(7,62,105,.11);
}


.skyra-bio-category-card:hover::before {

    transform:
        scale(1.7);
}


.skyra-bio-category-card:hover::after {

    height: 100%;
}


/* ============================================================
   NUMÉRO
============================================================ */

.skyra-bio-category-number {

    position: absolute;

    top: 10px;
    right: 14px;

    color:
        rgba(7,62,105,.09);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ============================================================
   ICÔNE
============================================================ */

.skyra-bio-category-icon {

    position: relative;

    z-index: 3;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 17px;

    color:
        var(--skyra-green-dark);

    background:
        linear-gradient(
            145deg,
            #F0FBF2,
            #E3F5E7
        );

    border:
        1px solid
        rgba(54,185,87,.11);

    font-size: 22px;

    transition:
        transform .3s ease;
}


.skyra-bio-category-card:hover
.skyra-bio-category-icon {

    transform:
        scale(1.08)
        rotate(-4deg);
}


/* ============================================================
   CONTENU
============================================================ */

.skyra-bio-category-content {

    position: relative;

    z-index: 3;

    flex: 1;

    min-width: 0;
}


.skyra-bio-category-content h4 {

    margin: 0 0 6px;

    color:
        var(--skyra-dark);

    font-size: 12px;

    font-weight: 850;
}


.skyra-bio-category-content p {

    margin: 0;

    color:
        var(--skyra-muted);

    font-size: 9px;

    line-height: 1.5;
}


/* ============================================================
   FLÈCHE
============================================================ */

.skyra-bio-category-arrow {

    position: relative;

    z-index: 3;

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color:
        var(--skyra-blue-dark);

    background:
        rgba(35,171,255,.07);

    font-size: 10px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.skyra-bio-category-card:hover
.skyra-bio-category-arrow {

    transform:
        translateX(5px);

    color: #fff;

    background:
        var(--skyra-blue-dark);
}


/* ============================================================
   BANNIÈRE
============================================================ */

.skyra-bio-bottom-banner {

    position: relative;

    min-height: 100px;

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 38px;

    padding: 20px 25px;

    overflow: hidden;

    border-radius: 23px;

    background:
        linear-gradient(
            105deg,
            #082F50 0%,
            #0F6CBD 45%,
            #23ABFF 72%,
            #2F9E44 100%
        );

    box-shadow:
        0 25px 50px
        rgba(15,108,189,.19);
}


.skyra-bio-bottom-banner::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -80px;
    top: -170px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 0 0 35px
        rgba(255,255,255,.025),
        0 0 0 70px
        rgba(255,255,255,.018);
}


.skyra-bio-banner-decoration {

    position: absolute;

    width: 250px;
    height: 250px;

    left: 42%;

    bottom: -210px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);
}


.skyra-bio-banner-icon {

    position: relative;

    z-index: 3;

    width: 53px;
    height: 53px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    color: #fff;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid
        rgba(255,255,255,.18);

    box-shadow:
        inset 0 0 20px
        rgba(255,255,255,.05);

    font-size: 21px;
}


.skyra-bio-banner-text {

    position: relative;

    z-index: 3;

    flex: 1;
}


.skyra-bio-banner-text span {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,.65);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}


.skyra-bio-banner-text strong {

    display: block;

    color: #fff;

    font-size: 15px;

    font-weight: 800;
}


.skyra-bio-banner-text small {

    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,.65);

    font-size: 9px;
}


.skyra-bio-banner-button {

    position: relative;

    z-index: 4;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 45px;

    padding: 0 18px;

    border-radius: 13px;

    color:
        var(--skyra-blue-dark);

    background: #fff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 900;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.10);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.skyra-bio-banner-button:hover {

    color:
        var(--skyra-blue-dark);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.15);
}


/* ============================================================
   TABLETTE
============================================================ */

@media (max-width: 1100px) {

    .skyra-bio-hero {

        grid-template-columns:
            1fr
            .75fr;

        padding:
            50px 42px;
    }


    .skyra-bio-features {

        gap: 15px;
    }


    .skyra-bio-categories {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .skyra-bio-section {

        padding:
            45px 11px;
    }


    .skyra-bio-hero {

        display: block;

        min-height: auto;

        padding:
            34px 20px;

        border-radius: 27px;
    }


    .skyra-bio-title {

        font-size: 39px;

        letter-spacing: -2px;
    }


    .skyra-bio-description {

        font-size: 12px;

        line-height: 1.75;
    }


    .skyra-bio-hero-actions {

        display: grid;

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .skyra-bio-primary-btn,
    .skyra-bio-search-btn {

        width: 100%;

        box-sizing: border-box;
    }


    .skyra-bio-features {

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 25px;
    }


    .skyra-bio-hero-visual {

        min-height: 350px;

        margin-top: 25px;
    }


    .skyra-bio-visual-card {

        width: 215px;
        height: 285px;
    }


    .skyra-bio-ring.ring-1 {

        width: 315px;
        height: 315px;
    }


    .skyra-bio-ring.ring-2 {

        width: 260px;
        height: 260px;
    }


    .skyra-bio-ring.ring-3 {

        width: 210px;
        height: 210px;
    }


    .floating-quality {

        top: 35px;

        right: -2px;
    }


    .floating-natural {

        left: -2px;

        bottom: 35px;
    }


    .skyra-bio-search-wrapper {

        margin:
            -18px 8px 45px;
    }


    .skyra-bio-search-box {

        flex-wrap: wrap;

        min-height: auto;

        padding: 10px;
    }


    .skyra-bio-search-icon {

        width: 39px;
        height: 39px;
    }


    .skyra-bio-search-field {

        width:
            calc(100% - 55px);

        flex:
            1;
    }


    .skyra-bio-search-submit {

        width: 100%;

        height: 48px;
    }


    .skyra-bio-section-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 16px;
    }


    .skyra-bio-section-heading h3 {

        font-size: 27px;
    }


    .skyra-bio-categories {

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .skyra-bio-category-card {

        min-height: 100px;
    }


    .skyra-bio-bottom-banner {

        align-items: flex-start;

        flex-wrap: wrap;

        padding: 20px;
    }


    .skyra-bio-banner-text {

        min-width:
            calc(100% - 75px);
    }


    .skyra-bio-banner-button {

        width: 100%;
    }

}


/* ============================================================
   PETIT MOBILE
============================================================ */

@media (max-width: 420px) {

    .skyra-bio-section {

        padding:
            35px 9px;
    }


    .skyra-bio-hero {

        padding:
            30px 17px;
    }


    .skyra-bio-title {

        font-size: 34px;

        letter-spacing: -1.7px;
    }


    .skyra-bio-badge small {

        display: none;
    }


    .skyra-bio-badge b {

        display: none;
    }


    .skyra-bio-hero-visual {

        min-height: 320px;
    }


    .skyra-bio-visual-card {

        width: 200px;
        height: 270px;
    }


    .skyra-bio-visual-icon {

        width: 78px;
        height: 78px;

        font-size: 33px;
    }


    .skyra-bio-floating-card {

        padding: 8px 9px;
    }


    .skyra-bio-floating-card small {

        display: none;
    }


    .floating-quality {

        right: -8px;
    }


    .floating-natural {

        left: -8px;
    }

}














/*==================================================
ANIMATION COEUR
==================================================*/

@keyframes heartBeat{

0%{

transform:scale(.7);

}

40%{

transform:scale(1.25);

}

100%{

transform:scale(1);

}

}

.product-favorite.liked{

    animation:heartBeat .45s;

}

/*==================================================
LIKE
==================================================*/

.btn-like{

    width:48px;

    height:48px;

    border:none;

    border-radius:50px;

    background:#fff;

    color:#e63946;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    cursor:pointer;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    transition:.35s;

}

.btn-like:hover{

    background:#e63946;

    color:#fff;

    transform:translateY(-4px);

}

.btn-like i{

    font-size:18px;

}

.likes-count{

    font-size:14px;

    font-weight:700;

}

.btn-like.liked{

    background:#e63946;

    color:#fff;

}


/*==================================================
ETOILES
==================================================*/

.stars{

    display:flex;

    gap:4px;

    align-items:center;

}

.stars i{

    font-size:18px;

    color:#d1d5db;

    cursor:pointer;

    transition:.25s;

}

.stars i:hover{

    transform:scale(1.2);

}


.btn-like.liked{

    animation:heart .45s;

}

@keyframes heart{

0%{

transform:scale(.7);

}

50%{

transform:scale(1.25);

}

100%{

transform:scale(1);

}

}

.add-cart{

    transition:.35s;

}

.add-cart:hover{

    transform:translateY(-3px);

}




.animate{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s forwards;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}


.offer-box{

    background:linear-gradient(135deg,#ff6b35,#ff9800);

    color:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.temps-restant{

    font-size:22px;

    font-weight:700;

    margin-top:10px;

}
/*==================================================
OFFRES SPECIALES
==================================================*/

.offers {

    background:
        linear-gradient(
            135deg,
            #23ABFF,
            #0F6CBD
        );

    color: var(--white);

    width: 100%;

    overflow: hidden;
}


/*==================================================
CONTENEUR
==================================================*/

.offers .container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        30px 20px;
}


/*==================================================
BLOC OFFRE
==================================================*/

.offer-box {

    width: 100%;

    background:
        var(--white);

    color:
        var(--dark);

    padding:
        35px 40px;

    border-radius:
        28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.12);

    overflow: hidden;
}


/*==================================================
PARTIE TEXTE
==================================================*/

.offer-box > div:first-child {

    flex: 1;

    min-width: 0;
}


.offer-box h2 {

    margin: 0 0 10px;

    font-size: 38px;

    line-height: 1.15;

    font-weight: 800;

    color:
        var(--dark);

    word-break:
        break-word;
}


.offer-box p {

    margin: 0;

    font-size: 16px;

    line-height: 1.6;

    color:
        var(--gray);
}


.offer-box p span {

    color:
        var(--secondary);

    font-weight: 800;

    white-space:
        nowrap;
}


/*==================================================
COMPTE À REBOURS
==================================================*/

.offer-countdown {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        12px 16px;

    border-radius:
        12px;

    background:
        #f5f7fb;

    color:
        var(--gray);

    font-size:
        14px;

    white-space:
        nowrap;
}


.offer-countdown i {

    color:
        var(--primary);

    font-size:
        17px;
}


.offer-countdown strong {

    color:
        var(--primary-dark);

    font-size:
        16px;

    font-weight:
        800;
}


/*==================================================
BOUTON
==================================================*/

.offer-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height:
        50px;

    padding:
        14px 26px;

    border-radius:
        50px;

    background:
        var(--secondary);

    color:
        var(--white);

    font-size:
        14px;

    font-weight:
        700;

    text-decoration:
        none;

    white-space:
        nowrap;

    transition:
        .3s ease;

    box-shadow:
        0 8px 20px
        rgba(255,107,53,.18);
}


.offer-btn:hover {

    color:
        var(--white);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(255,107,53,.25);
}


/*==================================================
ÉTAT VIDE
==================================================*/

.offer-box.empty {

    text-align:
        center;

    background:
        var(--white);

    border:
        2px dashed
        #dcdcdc;

    border-radius:
        20px;

    padding:
        45px 30px;

    display:
        block;
}


.offer-box.empty h2 {

    color:
        #444;

    margin:
        0 0 15px;

    font-size:
        28px;
}


.offer-box.empty p {

    color:
        #777;

    font-size:
        16px;

    margin:
        0;
}


/*==================================================
TABLETTE
==================================================*/

@media (max-width: 1000px) {

    .offer-box {

        padding:
            30px;

        gap:
            22px;
    }


    .offer-box h2 {

        font-size:
            30px;
    }


    .offer-box p {

        font-size:
            15px;
    }


    .offer-countdown {

        padding:
            10px 13px;

        font-size:
            13px;
    }


    .offer-countdown strong {

        font-size:
            14px;
    }


    .offer-btn {

        padding:
            13px 20px;

        font-size:
            13px;
    }

}


/*==================================================
PETITE TABLETTE
==================================================*/

@media (max-width: 800px) {

    .offer-box {

        display:
            grid;

        grid-template-columns:
            1fr auto;

        gap:
            20px 25px;

        padding:
            28px;
    }


    .offer-box > div:first-child {

        grid-column:
            1 / -1;
    }


    .offer-countdown {

        justify-self:
            start;
    }


    .offer-btn {

        justify-self:
            end;
    }

}


/*==================================================
MOBILE
==================================================*/

@media (max-width: 600px) {

    .offers .container {

        padding:
            20px 12px;
    }


    .offer-box {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            18px;

        padding:
            25px 20px;

        border-radius:
            22px;

        text-align:
            center;
    }


    .offer-box > div:first-child {

        width:
            100%;
    }


    .offer-box h2 {

        font-size:
            25px;

        line-height:
            1.2;

        margin-bottom:
            10px;
    }


    .offer-box p {

        font-size:
            14px;

        line-height:
            1.6;
    }


    .offer-countdown {

        width:
            100%;

        justify-content:
            center;

        padding:
            12px;

        border-radius:
            12px;

        font-size:
            13px;

        white-space:
            normal;
    }


    .offer-countdown strong {

        font-size:
            15px;
    }


    .offer-btn {

        width:
            100%;

        min-height:
            50px;

        padding:
            14px 20px;

        border-radius:
            14px;

        font-size:
            14px;
    }

}


/*==================================================
TRÈS PETIT MOBILE
==================================================*/

@media (max-width: 380px) {

    .offers .container {

        padding:
            15px 8px;
    }


    .offer-box {

        padding:
            22px 15px;

        border-radius:
            18px;
    }


    .offer-box h2 {

        font-size:
            22px;
    }


    .offer-box p {

        font-size:
            13px;
    }


    .offer-countdown {

        flex-wrap:
            wrap;

        gap:
            5px;

        font-size:
            12px;
    }


    .offer-countdown strong {

        font-size:
            14px;
    }


    .offer-btn {

        font-size:
            13px;

        min-height:
            48px;
    }

}






/* =========================================================
   SKYRA — SECTION COMPOSER SON PLAT
   ========================================================= */

.skyra-compose-section {

    position: relative;

    overflow: hidden;

    padding: 110px 25px;

    background:
        linear-gradient(
            135deg,
            #f8fcff 0%,
            #eef8ff 48%,
            #ffffff 100%
        );

}


/* =========================================================
   CONTAINER
   ========================================================= */

.skyra-compose-container {

    position: relative;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.85fr);

    gap: 80px;

    align-items: center;

}


/* =========================================================
   LUMIÈRES DÉCORATIVES
   ========================================================= */

.skyra-compose-glow {

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .30;

    pointer-events: none;

}


.skyra-compose-glow-1 {

    background: #23abff;

    top: -220px;

    left: -200px;

}


.skyra-compose-glow-2 {

    background: #6fd3ff;

    bottom: -250px;

    right: -180px;

}


/* =========================================================
   BADGE
   ========================================================= */

.skyra-compose-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(35,171,255,.09);

    border: 1px solid rgba(35,171,255,.18);

    color: #0f6cbd;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 22px;

}


.skyra-compose-badge i {

    font-size: 14px;

}


.skyra-compose-badge-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #23abff;

    box-shadow:
        0 0 0 5px rgba(35,171,255,.12);

    animation:
        skyra-pulse 2s infinite;

}


/* =========================================================
   TITRE
   ========================================================= */

.skyra-compose-title {

    margin: 0;

    max-width: 650px;

    font-family: "Montserrat", sans-serif;

    font-size: clamp(
        38px,
        5vw,
        67px
    );

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2.5px;

    color: #172033;

}


.skyra-compose-title span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #23abff,
            #0f6cbd
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.skyra-compose-title strong {

    display: block;

    color: #172033;

    font-weight: 800;

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.skyra-compose-description {

    max-width: 620px;

    margin: 25px 0 30px;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   FEATURES
   ========================================================= */

.skyra-compose-features {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 34px;

}


.skyra-compose-feature {

    display: flex;

    align-items: center;

    gap: 14px;

}


.skyra-compose-feature-icon {

    flex: 0 0 43px;

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color: #0f6cbd;

    background:
        linear-gradient(
            135deg,
            #e8f7ff,
            #d8f1ff
        );

    box-shadow:
        inset 0 0 0 1px
        rgba(35,171,255,.12);

}


.skyra-compose-feature strong {

    display: block;

    color: #172033;

    font-size: 13px;

    font-weight: 700;

}


.skyra-compose-feature span {

    display: block;

    margin-top: 2px;

    color: #8993a4;

    font-size: 11px;

}


/* =========================================================
   BOUTON PRINCIPAL
   ========================================================= */

.skyra-compose-action {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}


.skyra-compose-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    min-width: 280px;

    padding: 7px 9px 7px 8px;

    border-radius: 18px;

    text-decoration: none;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #23abff,
            #0f6cbd
        );

    box-shadow:
        0 15px 35px
        rgba(15,108,189,.25);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    overflow: hidden;

}


.skyra-compose-button::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .7s ease;

}


.skyra-compose-button:hover::before {

    left: 140%;

}


.skyra-compose-button:hover {

    color: #ffffff;

    transform:
        translateY(-5px);

    box-shadow:
        0 22px 45px
        rgba(15,108,189,.34);

}


.skyra-compose-button-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(255,255,255,.17);

    font-size: 19px;

}


.skyra-compose-button-text {

    flex: 1;

}


.skyra-compose-button-text strong {

    display: block;

    font-size: 14px;

    font-weight: 800;

}


.skyra-compose-button-text small {

    display: block;

    margin-top: 2px;

    font-size: 10px;

    opacity: .78;

}


.skyra-compose-button-arrow {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #ffffff;

    color: #0f6cbd;

    transition:
        transform .3s ease;

}


.skyra-compose-button:hover
.skyra-compose-button-arrow {

    transform:
        translateX(4px);

}


/* =========================================================
   HINT
   ========================================================= */

.skyra-compose-hint {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #7d8797;

    font-size: 10px;

}


.skyra-compose-hint i {

    color: #27ae60;

    font-size: 13px;

}


/* =========================================================
   VISUEL DROITE
   ========================================================= */

.skyra-compose-visual {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   CARD
   ========================================================= */

.skyra-compose-card {

    position: relative;

    width: 410px;

    padding: 25px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.82);

    border: 1px solid
        rgba(255,255,255,.9);

    box-shadow:
        0 35px 80px
        rgba(22,72,110,.14);

    backdrop-filter:
        blur(20px);

    animation:
        skyra-card-float
        5s ease-in-out infinite;

    z-index: 3;

}


/* =========================================================
   TOP CARD
   ========================================================= */

.skyra-compose-card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

}


.skyra-compose-card-label {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #0f6cbd;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.skyra-compose-card-status {

    padding: 6px 9px;

    border-radius: 20px;

    background: #ecfbf2;

    color: #27ae60;

    font-size: 8px;

    font-weight: 700;

}


.skyra-compose-card-status i {

    font-size: 6px;

    margin-right: 4px;

}


/* =========================================================
   ASSIETTE
   ========================================================= */

.skyra-plate {

    position: relative;

    width: 235px;

    height: 235px;

    margin: 28px auto;

}


.skyra-plate-shadow {

    position: absolute;

    left: 10%;

    right: 10%;

    bottom: 4px;

    height: 35px;

    border-radius: 50%;

    background:
        rgba(15,108,189,.16);

    filter: blur(15px);

}


.skyra-plate-inner {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            #ffffff 0%,
            #f5f8fb 57%,
            #dce6ee 59%,
            #ffffff 66%,
            #d8e2ea 70%,
            #ffffff 72%
        );

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.12);

}


.skyra-food-center {

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #23abff,
            #0f6cbd
        );

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 10px 25px
        rgba(15,108,189,.28);

}


.food-item {

    position: absolute;

    font-size: 31px;

    filter:
        drop-shadow(
            0 4px 5px
            rgba(0,0,0,.13)
        );

    animation:
        skyra-food-float
        3s ease-in-out infinite;

}


.food-1 {

    top: 40px;

    left: 48px;

}


.food-2 {

    top: 42px;

    right: 45px;

    animation-delay: .5s;

}


.food-3 {

    bottom: 40px;

    left: 55px;

    animation-delay: 1s;

}


.food-4 {

    bottom: 38px;

    right: 50px;

    animation-delay: 1.5s;

}


/* =========================================================
   OPTIONS
   ========================================================= */

.skyra-compose-card-options {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

}


.skyra-card-option {

    padding: 12px 7px;

    text-align: center;

    border-radius: 15px;

    background: #f6f9fc;

}


.skyra-option-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto auto 7px;

    border-radius: 10px;

    color: #0f6cbd;

    background: #e7f5ff;

    font-size: 12px;

}


.skyra-card-option span:not(.skyra-option-icon) {

    display: block;

    color: #8993a4;

    font-size: 8px;

}


.skyra-card-option strong {

    display: block;

    margin-top: 3px;

    color: #27364a;

    font-size: 9px;

}


/* =========================================================
   BAS CARD
   ========================================================= */

.skyra-compose-card-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 16px;

    border-top:
        1px solid #edf1f5;

}


.skyra-compose-card-bottom span {

    display: block;

    color: #8993a4;

    font-size: 9px;

}


.skyra-compose-card-bottom strong {

    display: block;

    margin-top: 3px;

    color: #172033;

    font-size: 13px;

}


.skyra-card-arrow {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #23abff,
            #0f6cbd
        );

}


/* =========================================================
   BADGE FLOTTANT
   ========================================================= */

.skyra-floating-badge {

    position: absolute;

    right: -10px;

    top: 90px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(22,72,110,.16);

    animation:
        skyra-floating
        4s ease-in-out infinite;

}


.skyra-floating-icon {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #23abff,
            #0f6cbd
        );

    font-size: 12px;

}


.skyra-floating-badge strong {

    display: block;

    color: #172033;

    font-size: 13px;

}


.skyra-floating-badge span {

    display: block;

    color: #8993a4;

    font-size: 8px;

}


/* =========================================================
   ORBITES
   ========================================================= */

.skyra-compose-orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px dashed
        rgba(35,171,255,.25);

    pointer-events: none;

}


.orbit-1 {

    width: 500px;

    height: 500px;

    animation:
        skyra-orbit
        25s linear infinite;

}


.orbit-2 {

    width: 590px;

    height: 590px;

    border-color:
        rgba(35,171,255,.12);

    animation:
        skyra-orbit-reverse
        35s linear infinite;

}


/* =========================================================
   DÉCORATIONS
   ========================================================= */

.skyra-compose-decoration {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border-radius: 14px;

    color: #23abff;

    background: #ffffff;

    box-shadow:
        0 12px 25px
        rgba(22,72,110,.10);

    z-index: 4;

}


.skyra-decoration-1 {

    top: 30px;

    left: 30px;

    animation:
        skyra-floating
        4s ease-in-out infinite;

}


.skyra-decoration-2 {

    right: 20px;

    bottom: 90px;

    color: #ff7a45;

    animation:
        skyra-floating
        5s ease-in-out infinite;

}


.skyra-decoration-3 {

    left: 30px;

    bottom: 60px;

    color: #27ae60;

    animation:
        skyra-floating
        4.5s ease-in-out infinite;

}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes skyra-pulse {

    0%,
    100% {

        transform: scale(1);

        opacity: 1;

    }

    50% {

        transform: scale(1.25);

        opacity: .65;

    }

}


@keyframes skyra-card-float {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-12px)
            rotate(.5deg);

    }

}


@keyframes skyra-floating {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


@keyframes skyra-food-float {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-5px)
            rotate(4deg);

    }

}


@keyframes skyra-orbit {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


@keyframes skyra-orbit-reverse {

    from {

        transform:
            rotate(360deg);

    }

    to {

        transform:
            rotate(0deg);

    }

}


/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */

@media (max-width: 1000px) {

    .skyra-compose-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .skyra-compose-content {

        text-align: center;

    }


    .skyra-compose-badge {

        margin-left: auto;

        margin-right: auto;

    }


    .skyra-compose-description {

        margin-left: auto;

        margin-right: auto;

    }


    .skyra-compose-features {

        max-width: 430px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }


    .skyra-compose-action {

        justify-content: center;

    }


    .skyra-compose-visual {

        min-height: 500px;

    }

}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .skyra-compose-section {

        padding:
            70px 16px;

    }


    .skyra-compose-container {

        gap: 25px;

    }


    .skyra-compose-title {

        font-size: 39px;

        letter-spacing: -1.8px;

    }


    .skyra-compose-description {

        font-size: 14px;

        line-height: 1.7;

    }


    .skyra-compose-feature {

        align-items: flex-start;

    }


    .skyra-compose-feature-icon {

        flex-basis: 40px;

        width: 40px;

        height: 40px;

    }


    .skyra-compose-action {

        flex-direction: column;

        align-items: stretch;

    }


    .skyra-compose-button {

        width: 100%;

        min-width: 0;

    }


    .skyra-compose-hint {

        justify-content: center;

    }


    .skyra-compose-visual {

        min-height: 430px;

        margin-top: 10px;

    }


    .skyra-compose-card {

        width: min(
            100%,
            355px
        );

        padding: 19px;

        border-radius: 24px;

    }


    .skyra-plate {

        width: 185px;

        height: 185px;

        margin: 22px auto;

    }


    .skyra-food-center {

        width: 70px;

        height: 70px;

        font-size: 21px;

    }


    .food-item {

        font-size: 25px;

    }


    .skyra-compose-card-options {

        gap: 5px;

    }


    .skyra-floating-badge {

        right: 0;

        top: 50px;

        transform: scale(.88);

    }


    .orbit-1 {

        width: 360px;

        height: 360px;

    }


    .orbit-2 {

        width: 420px;

        height: 420px;

    }


    .skyra-compose-decoration {

        transform: scale(.8);

    }


    .skyra-decoration-1 {

        left: 0;

        top: 20px;

    }


    .skyra-decoration-2 {

        right: 0;

        bottom: 50px;

    }


    .skyra-decoration-3 {

        left: 5px;

        bottom: 30px;

    }

}


/* =========================================================
   PETITS ÉCRANS
   ========================================================= */

@media (max-width: 380px) {

    .skyra-compose-title {

        font-size: 34px;

    }


    .skyra-compose-card {

        width: 100%;

    }


    .skyra-compose-visual {

        min-height: 400px;

    }


    .skyra-compose-card-options {

        grid-template-columns: 1fr;

    }


    .skyra-card-option {

        display: flex;

        align-items: center;

        gap: 8px;

        text-align: left;

    }


    .skyra-option-icon {

        margin: 0;

        flex-shrink: 0;

    }

}









/*==================================================
PARTIE 4
==================================================*/

/*==================================================
AVIS CLIENTS - SKYRA V2
==================================================*/


.reviews{

    background:var(--light);

}


.review-card{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

    height:100%;

    transition:.35s;

}


.review-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}


.client-profile{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}


.client-profile img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}


.client-profile h4{

    font-size:17px;

    font-weight:700;

    margin:0;

}


.client-profile span{

    color:var(--gray);

    font-size:13px;

}


.stars{

    color:#FFB800;

    margin-bottom:15px;

}


.review-text{

    color:#555;

    line-height:1.7;

    font-size:15px;

}





.client-photo,
.client-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #23ABFF, #0F6CBD);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(15, 108, 203, 0.25);
}


/*==================================================
POURQUOI CHOISIR SKYRA
==================================================*/


.why-skyra{

    background:white;

}


.feature-card{

    text-align:center;

    background:white;

    padding:35px 25px;

    border-radius:25px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s;

}


.feature-card:hover{

    transform:translateY(-10px);

}


.feature-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:rgba(35,171,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}


.feature-icon i{

    color:var(--primary);

    font-size:32px;

}


.feature-card h3{

    font-size:20px;

    font-weight:800;

    margin-bottom:15px;

}


.feature-card p{

    color:var(--gray);

    font-size:14px;

    line-height:1.7;

}













/*==================================================
STATISTIQUES SKYRA
==================================================*/


.statistics{

    background:linear-gradient(
        135deg,
        #23ABFF,
        #0F6CBD
    );

    color:white;

}


.stat-box{

    text-align:center;

}


.stat-box i{

    font-size:40px;

    margin-bottom:20px;

}


.stat-box h2{

    font-size:45px;

    font-weight:800;

    margin:0;

}


.stat-box p{

    font-size:16px;

    opacity:.9;

}



/*==================================================
ZONE DE LIVRAISON
==================================================*/


.delivery-zone{

    background:white;

}


.map-box{

    height:450px;

    background:#EAF6FF;

    border-radius:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    overflow:hidden;

}


.map-box i{

    font-size:90px;

    color:var(--primary);

}


.zone-list{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:var(--shadow);

}


.zone-list h3{

    font-size:28px;

    font-weight:800;

    margin-bottom:25px;

}


.zone-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-weight:600;

}


.zone-item i{

    color:var(--success);

}


/*==================================================*
* PROGRAMME FIDELITE
*==================================================*/

.loyalty {

    background:
        var(--light);

    width: 100%;

    overflow: hidden;
}


/*==================================================*
* BLOC FIDELITE
*==================================================*/

.loyalty-box {

    width: 100%;

    background:
        var(--white);

    border-radius:
        35px;

    padding:
        45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    box-shadow:
        var(--shadow);

    overflow: hidden;
}


/*==================================================*
* CONTENU
*==================================================*/

.loyalty-box > div:first-child {

    flex: 1;

    min-width: 0;
}


.loyalty-box h2 {

    margin:
        0 0 12px;

    font-size:
        40px;

    line-height:
        1.15;

    font-weight:
        800;

    color:
        var(--dark);

    word-break:
        break-word;
}


.loyalty-box h2 span {

    color:
        var(--secondary);
}


.loyalty-box p {

    margin:
        6px 0;

    color:
        var(--gray);

    font-size:
        16px;

    line-height:
        1.5;
}


/*==================================================*
* BOUTON
*==================================================*/

.loyalty-box .btn-order {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    margin-top:
        18px;

    padding:
        13px 28px;

    border-radius:
        50px;

    background:
        var(--primary);

    color:
        var(--white);

    text-decoration:
        none;

    font-weight:
        700;

    transition:
        var(--transition);
}


.loyalty-box .btn-order:hover {

    background:
        var(--primary-dark);

    transform:
        translateY(-2px);

}


/*==================================================*
* ICONE
*==================================================*/

.loyalty-icon {

    flex-shrink:
        0;

    width:
        120px;

    height:
        120px;

    border-radius:
        50%;

    background:
        rgba(255,107,53,.10);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    transition:
        var(--transition);
}


.loyalty-icon i {

    color:
        var(--secondary);

    font-size:
        60px;

    line-height:
        1;

    transition:
        var(--transition);
}


.loyalty-box:hover .loyalty-icon {

    transform:
        scale(1.05);

}


.loyalty-box:hover .loyalty-icon i {

    transform:
        rotate(-8deg);

}


/*==================================================*
* TABLETTE
*==================================================*/

@media (max-width: 800px) {

    .loyalty-box {

        padding:
            35px;

        gap:
            25px;

        border-radius:
            28px;
    }


    .loyalty-box h2 {

        font-size:
            32px;
    }


    .loyalty-box p {

        font-size:
            15px;
    }


    .loyalty-icon {

        width:
            95px;

        height:
            95px;
    }


    .loyalty-icon i {

        font-size:
            48px;
    }

}


/*==================================================*
* MOBILE
*==================================================*/

@media (max-width: 600px) {

    .loyalty-box {

        padding:
            28px 20px;

        border-radius:
            22px;

        flex-direction:
            column;

        text-align:
            center;

        gap:
            22px;
    }


    .loyalty-box > div:first-child {

        width:
            100%;
    }


    .loyalty-box h2 {

        font-size:
            27px;

        margin-bottom:
            10px;
    }


    .loyalty-box p {

        font-size:
            14px;

        line-height:
            1.55;
    }


    .loyalty-box .btn-order {

        width:
            100%;

        margin-top:
            15px;

        padding:
            13px 20px;

        border-radius:
            14px;
    }


    .loyalty-icon {

        width:
            80px;

        height:
            80px;

        order:
            -1;
    }


    .loyalty-icon i {

        font-size:
            40px;
    }

}


/*==================================================*
* PETIT MOBILE
*==================================================*/

@media (max-width: 380px) {

    .loyalty-box {

        padding:
            24px 15px;

        gap:
            18px;
    }


    .loyalty-box h2 {

        font-size:
            23px;
    }


    .loyalty-box p {

        font-size:
            13px;
    }


    .loyalty-icon {

        width:
            68px;

        height:
            68px;
    }


    .loyalty-icon i {

        font-size:
            34px;
    }

}
/*==================================================
FOOTER SKYRA
==================================================*/


footer{

    background:#111827;

    color:white;

    padding:80px 0 30px;

}


.footer-logo img{

    height:65px;

    margin-bottom:20px;

}


footer h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

}


footer p{

    color:#CBD5E1;

    line-height:1.8;

}


.footer-links a{

    display:block;

    color:#CBD5E1;

    margin-bottom:12px;

    transition:.3s;

}


.footer-links a:hover{

    color:var(--primary);

    transform:translateX(5px);

}



.social-icons{

    display:flex;

    gap:15px;

}


.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1F2937;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}


.social-icons a:hover{

    background:var(--primary);

}



.payment-icons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}


.payment-icons span{

    background:white;

    color:#333;

    padding:10px 15px;

    border-radius:10px;

    font-weight:700;

}



.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    color:#94A3B8;

}



/*==================================================
WHATSAPP FLOAT BUTTON
==================================================*/


.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    animation:pulse 2s infinite;

}



@keyframes pulse{

0%{

transform:scale(1);

}


50%{

transform:scale(1.1);

}


100%{

transform:scale(1);

}

}


/*=========================
BACK TO TOP
=========================*/

.top-btn{

position:fixed;

bottom:95px;

right:25px;

width:45px;

height:45px;

border:none;

border-radius:50%;

background:var(--primary);

color:white;

display:none;

justify-content:center;

align-items:center;

cursor:pointer;

z-index:999;

transition:.3s;

}


.top-btn:hover{

background:var(--secondary);

transform:translateY(-5px);

}



/*==================================================
FOOTER PREMIUM SKYRA
==================================================*/


.skyra-footer{

background:#0F172A;

color:white;

padding:80px 0 25px;

}



.footer-brand img{

width:150px;

margin-bottom:25px;

}



.footer-brand p{

color:#CBD5E1;

line-height:1.8;

}



.footer-social{

display:flex;

gap:12px;

margin-top:25px;

}



.footer-social a{

width:45px;

height:45px;

border-radius:50%;

background:#1E293B;

display:flex;

align-items:center;

justify-content:center;

color:white;

transition:.3s;

}



.footer-social a:hover{

background:#23ABFF;

transform:translateY(-5px);

}



.skyra-footer h4{

font-size:20px;

margin-bottom:25px;

font-weight:800;

}



.skyra-footer ul{

padding:0;

list-style:none;

}



.skyra-footer li{

margin-bottom:15px;

color:#CBD5E1;

}



.skyra-footer li a{

color:#CBD5E1;

text-decoration:none;

}



.skyra-footer li a:hover{

color:#23ABFF;

}



.skyra-footer li i{

color:#23ABFF;

margin-right:10px;

}



.footer-contact p{

color:#CBD5E1;

}



.footer-contact i{

color:#23ABFF;

margin-right:10px;

}



.payments{

display:flex;

gap:10px;

flex-wrap:wrap;

}



.payments span{

background:white;

color:#111827;

padding:8px 14px;

border-radius:10px;

font-size:13px;

font-weight:700;

}



.footer-app{

margin-top:60px;

padding:30px;

border-radius:25px;

background:linear-gradient(
135deg,
#23ABFF,
#0F6CBD
);

display:flex;

justify-content:space-between;

align-items:center;

}



.footer-app h3{

font-size:28px;

font-weight:900;

}



.app-buttons{

display:flex;

gap:15px;

}



.app-buttons a{

background:#111827;

color:white;

padding:14px 25px;

border-radius:15px;

text-decoration:none;

}



.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);

margin-top:50px;

padding-top:25px;

display:flex;

justify-content:space-between;

color:#94A3B8;

}



.footer-bottom a{

color:#94A3B8;

margin-left:20px;

}



@media(max-width:768px){


.footer-app{

flex-direction:column;

text-align:center;

gap:25px;

}



.app-buttons{

flex-direction:column;

}



.footer-bottom{

flex-direction:column;

text-align:center;

gap:15px;

}


}


/*==================================================
HERO BOX — TRANSPARENT MAIS CONSERVE SA STRUCTURE
==================================================*/

.hero-box {

    background: transparent !important;

    border-color: transparent !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* Supprime la bordure lumineuse */

.hero-box::before {

    background: transparent !important;

    display: none !important;
}





/* =========================================================
   SKYRA — PARTENAIRES PREMIUM
========================================================= */

.skyra-partners {

    position: relative;

    padding: 95px 0 80px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(35,171,255,.10),
            transparent 35%
        ),

        #ffffff;

}


/* =========================================================
   HEADER
========================================================= */

.skyra-partners-header {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto 55px;

    padding: 0 20px;

    text-align: center;

}


.skyra-partners-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    border-radius: 50px;

    color: #23abff;

    background: rgba(35,171,255,.07);

    border: 1px solid rgba(35,171,255,.15);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.skyra-partners-header h2 {

    margin: 18px 0 12px;

    font-size: clamp(30px,5vw,46px);

    font-weight: 800;

    color: #172333;

}


.skyra-partners-header h2 span {

    color: #23abff;

}


.skyra-partners-header p {

    margin: 0;

    color: #7d8b99;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   SLIDER
========================================================= */

.skyra-partners-slider {

    position: relative;

    width: 100%;

    overflow: hidden;

}


/* FADE GAUCHE / DROITE */

.skyra-partners-slider::before,
.skyra-partners-slider::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 160px;

    z-index: 5;

    pointer-events: none;

}


.skyra-partners-slider::before {

    left: 0;

    background:
        linear-gradient(
            90deg,
            #fff,
            rgba(255,255,255,0)
        );

}


.skyra-partners-slider::after {

    right: 0;

    background:
        linear-gradient(
            270deg,
            #fff,
            rgba(255,255,255,0)
        );

}


/* =========================================================
   TRACK
========================================================= */

.skyra-partners-track {

    display: flex;

    width: max-content;

    align-items: center;

    gap: 24px;

    animation:
        skyraPartnersScroll
        42s
        linear
        infinite;

}


/* PAUSE AU SURVOL */

.skyra-partners-slider:hover
.skyra-partners-track {

    animation-play-state: paused;

}


/* =========================================================
   ANIMATION INFINIE
========================================================= */

@keyframes skyraPartnersScroll {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(-50%);

    }

}


/* =========================================================
   CARTE
========================================================= */

.skyra-partner {

    position: relative;

    width: 185px;

    height: 145px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(255,255,255,.92);

    border:
        1px solid
        rgba(35,171,255,.10);

    box-shadow:
        0 12px 35px
        rgba(25,80,110,.07);

    transition:

        transform .5s
        cubic-bezier(.2,.8,.2,1),

        box-shadow .5s ease,

        border-color .5s ease;

}


/* =========================================================
   LUMIERE EXTERIEURE
========================================================= */

.skyra-partner::before {

    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(35,171,255,.4),
            transparent
        );

    opacity: 0;

    transition:
        opacity .5s ease;

    pointer-events: none;

}


/* HOVER */

.skyra-partner:hover {

    transform:
        translateY(-10px)
        scale(1.035);

    border-color:
        rgba(35,171,255,.3);

    box-shadow:

        0 20px 50px
        rgba(35,171,255,.14),

        0 0 30px
        rgba(35,171,255,.08);

}


.skyra-partner:hover::before {

    opacity: 1;

}


/* =========================================================
   LOGO
========================================================= */

.skyra-partner-logo {

    width: 110px;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 10px;

}


.skyra-partner-logo img {

    max-width: 100px;

    max-height: 70px;

    object-fit: contain;

    transition:

        transform .5s ease,

        filter .5s ease;

}


.skyra-partner:hover
.skyra-partner-logo img {

    transform:
        scale(1.1);

    filter:
        drop-shadow(
            0 0 10px
            rgba(35,171,255,.3)
        );

}


/* =========================================================
   NOM
========================================================= */

.skyra-partner span {

    color: #68798a;

    font-size: 11px;

    font-weight: 650;

    letter-spacing: .3px;

    transition:
        color .4s ease;

}


.skyra-partner:hover span {

    color:
        #23abff;

}


/* =========================================================
   BAS
========================================================= */

.skyra-partners-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 35px;

    color: #9aa7b4;

    font-size: 11px;

}


.skyra-partners-bottom i {

    color:
        #23abff;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px) {

    .skyra-partners {

        padding:
            70px 0 60px;

    }


    .skyra-partners-header {

        margin-bottom:
            35px;

    }


    .skyra-partners-slider::before,
    .skyra-partners-slider::after {

        width:
            60px;

    }


    .skyra-partner {

        width:
            155px;

        height:
            125px;

    }


    .skyra-partner-logo {

        width:
            90px;

        height:
            60px;

    }


    .skyra-partner-logo img {

        max-width:
            80px;

        max-height:
            55px;

    }


    .skyra-partners-track {

        gap:
            14px;

        animation-duration:
            34s;

    }

}