@import 'style.css';
/* =========================================
   PICS.CSS - SÉQUENCE "CRYSTAL NOVA"
   ========================================= */

/* --- 1. SCÈNE 3D & CONTENEUR --- */
.pics-container {
    height: 100vh;
    width: 100%;
    position: relative; /* Référence pour les absolute children */
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* On commence du haut */
    padding-top: 15vh; /* Espace pour le titre */
    
    /* LA PERSPECTIVE EST CRUCIALE */
    perspective: 1000px; 
    z-index: 10; /* Devant le canvas fluide */
}

/* Titre (Animation d'entrée) */
.pics-title {
    color: white;
    font-family: var(--font-fam-two); /* Cormorant Upright */
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 2rem;
    text-align: center;
    
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 20;
    text-shadow: 0 0 20px rgba(0, 255, 233, 0.3);
}

.pics-container.visible .pics-title {
    opacity: 1;
    transform: translateY(0);
}

/* --- 2. LE DEVICE (BASE COMMUNE) --- */
.phone-device {
    position: absolute;
    
    /* --- LE SECRET DU CENTRAGE PARFAIT --- */
    top: 50%;
    left: 50%;
    /* On définit le point de pivot au centre exact */
    transform-origin: center center;

    /* --- DIMENSIONS MOBILE (Maîtrisées) --- */
    width: 60vw; 
    max-width: 280px; 
    aspect-ratio: 9/19.5; 
    
    /* --- OPTIMISATION RENDU (Anti-Flou) --- */
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    will-change: transform, opacity;

    /* --- GLASSMORPHISME LUXE --- */
    background: rgba(255, 255, 255, 0.02); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 45px;
    
    /* Ombres complexes pour la profondeur */
    box-shadow: 
        inset 0 0 25px rgba(255, 255, 255, 0.03), 
        0 20px 50px rgba(0, 0, 0, 0.5); 

    /* --- ÉTAT INITIAL (AVANT EXPLOSION) --- */
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(-800px) translateY(300px) rotateX(30deg);
    
    /* Transition élastique pour l'impact */
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}


/* --- 3. L'INTÉRIEUR DU TÉLÉPHONE --- */
.phone-border {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    
    /* CORRECTION MASQUE : L'image va jusqu'à 95% du bas */
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; /* Transparence pour voir le feu follet derrière */
    mix-blend-mode: normal; /* Normal est plus net que lighten */
    transition: transform 0.5s ease;
}

/* Encoche (Dynamic Island) */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    z-index: 5;
}

/* Overlay sur le téléphone central (Texte + Bouton) */
.glass-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease 0.5s; /* Apparition retardée */
}

.phone-center.materialize .glass-overlay {
    opacity: 1;
}

.glass-overlay h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.glow-btn {
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.glow-btn:hover {
    background: rgba(255,255,255,0.3);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}


/* --- 4. POSITIONS FINALES (ANIMATION) --- */

/* Classe déclencheur */
.phone-device.materialize {
    opacity: 1;
}

/* --- TÉLÉPHONE CENTRAL (HERO) --- */
.phone-center.materialize {
    z-index: 10;
    /* FIX NETTETÉ : On reste à Z=0px (taille native) */
    transform: translate(-50%, -50%) translateZ(0px);
    
    border-color: rgba(255, 255, 255, 0.5); /* Plus brillant */
    box-shadow: 0 25px 60px rgba(0,0,0,0.6); /* Ombre forte */
    transition-delay: 0.05s;
}

/* --- TÉLÉPHONE GAUCHE (ARRIÈRE) --- */
.phone-left.materialize {
    z-index: 5;
    /* 1. Centré
       2. Décalé Gauche (85%)
       3. Reculé Z (-200px) -> Crée la profondeur
       4. Rotation Y (25deg) -> Crée l'enfilade
    */
    transform: translate(-50%, -50%) translateX(-85%) translateZ(-200px) rotateY(25deg);
    filter: brightness(0.6); /* Plus sombre car au fond */
    transition-delay: 0.15s;
}

/* --- TÉLÉPHONE DROITE (ARRIÈRE) --- */
.phone-right.materialize {
    z-index: 5;
    /* Symétrique à gauche */
    transform: translate(-50%, -50%) translateX(85%) translateZ(-200px) rotateY(-25deg);
    filter: brightness(0.6);
    transition-delay: 0.25s;
}

/* --- 5. EFFET HOVER (OPTIONNEL) --- */
/* Petit effet 3D quand on passe la souris sur le central */
.phone-center.materialize:hover {
    transform: translate(-50%, -50%) translateZ(20px) scale(1.02);
    border-color: #fff;
}
/* /////////////////////////////////////////// */
/* /////////////////////////////////////////// */

#canvasParticles {
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    /* top:0;right:0;bottom:0;left:0; */

    z-index: 1;
    /* laisse les interactions sur le canvas */
    background: transparent;


    transform: translateY(-24%);
    /* change si besoin */
}



#produit {
    pointer-events: none;
}

#pics {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.titrebloc {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    position: absolute;
    left: 30px;
    top: -50px;
    z-index: 3;
}

.titrebloc h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    font-family: var(--font-fam-two);
    font-weight: 100;
    position: relative;
    display: inline-block;
    text-shadow: -8px -2px 16px #000;
}


.cgu-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 14px;
    user-select: none;
    font-family: var(--font-fam-one);
    color: var(--text-color);
}

.cgu-checkbox a {

    color: var(--text-color);
}

.cgu-checkbox input {
    display: none;
}

.cgu-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.cgu-checkbox input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    background-color: transparent;
}

.cgu-checkbox input:checked+.checkmark {
    background-color: rgb(0, 255, 233);
    border-color: rgba(0, 255, 234, 0.689);

}



.coquepics {
    position: absolute;
    z-index: 8;
    top: 40%;
    left: 50%;
    width: auto;
    height: 60vh;
    aspect-ratio: 1 / 2;
    /* border: 1px solid #fff; */
    transform-style: preserve-3d;
    background: #ffffff00;
    border-radius: 15px;
    box-sizing: border-box;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.08), inset 0 0 30px rgba(255, 0, 128, 0.05); */
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.coquepicspics {
    position: absolute;
    z-index: 8;
    top: 40%;
    left: 50%;
    width: auto;
    height: 60vh;
    aspect-ratio: 1 / 2;
    /* border: 1px solid #fff; */
    transform-style: preserve-3d;
    background: #ffffff00;
    border-radius: 15px;
    box-sizing: border-box;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.08), inset 0 0 30px rgba(255, 0, 128, 0.05); */
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}



.coquepics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 19px;
    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(34deg, rgb(97 255 241 / 22%) 0%, rgb(222 167 255 / 44%) 100%);
    backdrop-filter: blur(0px);
}

.coquepics img {
    width: 96%;
    height: auto;
    border-radius: 12px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}


.coquepicspics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 19px;
    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(34deg, rgb(97 255 241 / 22%) 0%, rgb(222 167 255 / 44%) 100%);
    backdrop-filter: blur(0px);
}

.coquepicspics img {
    width: 96%;
    height: auto;
    border-radius: 12px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}





.decoproduct {
    height: 18%;
    width: 400%;
    filter: blur(0px);
    position: absolute;
    transform: translate(-50%, -50%) rotate(40deg);
    left: 50%;
    top: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 1;
}


.decoproduct::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(5px);
    pointer-events: none;
    z-index: 1;
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;

}

.decoproduct::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
}


.mockuppics {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    perspective: 1200px;
    z-index: 2;
}

.mockuppics h2 {
    font-size: 5rem;
    font-family: var(--font-fam-two);
    font-weight: 100;
    letter-spacing: 2px;
    color: var(--text-color);
    text-shadow: 0px 0px 20px #000;
    width: 100%;
    margin-left: 10%;
    position: absolute;
    left: 0;
    top: 16%;
    z-index: 5;
    opacity: 0;
    transition: all 1s ease-out;
}

.mockuppics h2.active {
    opacity: 1;
}

#cara {
    display: flex;
    justify-content: center;
    align-self: flex-start;
    flex-direction: column;
    gap: 25px;
    padding: 0 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

#cara li {
    list-style-type: none;
}

#cara li p {
    font-size: 1.2rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: var(--text-color);
    position: relative;
    padding-left: 36px;
    /* espace pour l’icône */

}



li p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 33px;
    height: 37px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    animation: checkFade 0.6s ease forwards;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'><defs><linearGradient id='grad' x1='0%' y1='0%' x2='100%' y2='0%'><stop offset='0%' stop-color='rgb(0,255,233)'/><stop offset='40%' stop-color='rgb(207,125,255)'/><stop offset='70%' stop-color='rgb(207,125,255)'/><stop offset='100%' stop-color='rgb(0,255,233)'/></linearGradient></defs><path fill='none' stroke='url(%23grad)' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='48' stroke-dashoffset='48' d='M14 27 l7 7 l17 -17'><animate attributeName='stroke-dashoffset' values='48;0' dur='0.4s' fill='freeze' begin='0.1s'/></path></svg>");
    ;
}

.valid-check-bdd {
    font-size: 1.2rem;
    font-family: var(--font-fam-one);
    font-weight: 100;

    color: var(--text-color);
    position: relative;
    padding-left: 36px;
}

.valid-check-bdd::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 33px;
    height: 37px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    animation: checkFade 0.6s ease forwards;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'><defs><linearGradient id='grad' x1='0%' y1='0%' x2='100%' y2='0%'><stop offset='0%' stop-color='rgb(0,255,233)'/><stop offset='40%' stop-color='rgb(207,125,255)'/><stop offset='70%' stop-color='rgb(207,125,255)'/><stop offset='100%' stop-color='rgb(0,255,233)'/></linearGradient></defs><path fill='none' stroke='url(%23grad)' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='48' stroke-dashoffset='48' d='M14 27 l7 7 l17 -17'><animate attributeName='stroke-dashoffset' values='48;0' dur='0.4s' fill='freeze' begin='0.1s'/></path></svg>");
    ;
}

@keyframes checkFade {
    to {
        opacity: 1;
    }
}


#paramprod {
    width: 100%;
    padding: 75px 10px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #000000e3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    transform: translateY(-15%);
    box-shadow: -10px -20px 20px #ffffff0a;
    border-top: 0.5px solid #ffffff1f;


}





/* form///////////// */

#formcontent {
    width: 100%;
    display: none;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}


#stepf1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 10px;

}

#stepf2 {
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 10px;

}

#stepf3 {
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 10px;

}

#formcontent h2 {
    font-size: 1.8rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: var(--text-color);
    opacity: 1;
    transition: opacity 0.3s ease;
    text-align: center;
}



.decobloc {
    height: 25%;
    width: 400%;

    position: absolute;
    transform: translate(-50%, -50%) rotate(314deg);

    left: 50%;
    top: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 1;
}


.decobloc::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(5px);
    pointer-events: none;
    z-index: 1;
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;

}

.decobloc::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
}

.decobloc2 {
    height: 15%;
    width: 400%;

    position: absolute;
    transform: translate(-50%, -50%) rotate(29deg);

    left: 50%;
    top: 55%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 1;
}


.decobloc2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(5px);
    pointer-events: none;
    z-index: 1;
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;

}

.decobloc2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
}

.form,
.form * {
    box-sizing: border-box;
}

.form input,
.form select,
.form button {
    font-family: var(--font-fam-one);
}

.form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    /* mobile: 6 colonnes */
    gap: 14px;
    width: min(720px, 94vw);
    margin: 20px auto 28px;
    padding: 16px;
    background: #00000000;
    /* sobre / moderne */
    border: 0.5px solid #ffffff1a;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 15%);
    color: #f5f6f8;
    font-family: var(--font-fam-one);
    overflow: hidden;
    position: relative;
}

.form::before {
    content: '';
    inset: 0;
    top: 0;
    left: 0;
    backdrop-filter: blur(35px);
    position: absolute;
    background-color: #ffffff00;
}

/* ---- Groupes ---- */
.contentinputoverlay {
    display: grid;
    gap: 8px;
    min-width: 0;
    /* empêche les chevauchements */
    grid-column: span 6;
    z-index: 2;
    /* par défaut: pleine largeur */
}

.contentinputoverlay label {
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    letter-spacing: .2px;
}

/* ---- Champs ---- */
.contentinputoverlay input,
.contentinputoverlay select {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    border: none;
    box-shadow: 0px 0px 20px #00000087;
    background: #eee;
    color: #000;
    font-size: 15px;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;

}

.contentinputoverlay input::placeholder {
    color: #8e94a3;
}

.contentinputoverlay input:focus,
.contentinputoverlay select:focus {

    box-shadow: 0 0 0 2px rgba(0, 7, 185, .35), 0 0 0 4px rgba(255, 0, 67, .22);
}

input[type="password"] {
    letter-spacing: .2px;
}

/* ---- Select (flèche custom discrète) ---- */
.contentinputoverlay select {
    -webkit-appearance: none;
    appearance: none;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23cfd3e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    padding-right: 40px;
}

/* ---- Bouton ---- */
.form .buttonform {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 0;
    border-radius: 16px;
    font-weight: 100;
    letter-spacing: .3px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(34deg, rgb(255, 0, 67) 0%, rgb(0, 7, 185) 88%);
    box-shadow: 0 10px 28px rgba(0, 7, 185, .30);
    transition: transform .06s, filter .18s;
}

.form .buttonform:hover {
    filter: brightness(1.06);
}

.form .buttonform:active {
    transform: translateY(1px);
}

/* ====== Utilitaires de grille (pas de nth-child) ====== */
/* Mobile: grille sur 6 colonnes */
.col-6 {
    grid-column: span 6;
}

.col-5 {
    grid-column: span 5;
}

.col-4 {
    grid-column: span 4;
}

.col-3 {
    grid-column: span 3;
}

.col-2 {
    grid-column: span 2;
}

.preview {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #ffffff;
}

.returnbuttonform {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 0;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: .3px;
    color: #fff;
    cursor: pointer;
    background: var(--red);
    box-shadow: 0 10px 28px rgba(0, 7, 185, .30);
    transition: transform .06s, filter .18s;
}

#recap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-direction: column;
    background-color: #0000009e;
    padding: 25px 10px;
}

#recap section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    font-family: var(--font-fam-one);
    color: var(--text-color);
}

#recap section h3 {
    font-weight: 100;
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: .2px;
    width: 100%;
    text-align: start;
    position: relative;
}

#recap section h3::before {
    content: '';
    position: absolute;
    width: 100%;
    background-color: var(--bg-color);
    height: 2px;
    left: 0;
    bottom: -5px;
}

#recap section ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 25px;
    flex-direction: column;
}

#recap section ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 5px;
    flex-direction: column;
}

strong {
    background: linear-gradient(to right, #e0aaff 0%, rgb(151 255 246) 50%, #dca1ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
}




@media (min-width: 1024px) {

    #cara li p {
        font-size: 2.2rem;
    }

    .coquepicspics {
        left: 40%;
    }

    #canvasParticles {
        height: 100%;
    }

    #pics {
        min-height: 120vh;
    }

    #paramprod {
        max-width: 1200px;
        z-index: 4;
        transform: none;
        position: relative;
        padding-top: 160px;
    }


    .titrebloc {
        top: -95px;
    }

    .titrebloc h2 {
        font-size: 8rem;
    }

    #goform {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 13%;
        left: 70%;
    }

    .decoproduct {
        height: 100%;
        width: 78%;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        top: 112%;
        max-width: 1200px;
    }

    .decobloc {
        transform: translate(-50%, -50%) rotate(329deg);
    }

    .decoproduct::after,
    .decoproduct::before {
        border-radius: 50%;
    }



}