    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,900;1,700;1,900&family=Roboto:wght@100;300;500;900&display=swap');
    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: 'Lato';
        text-decoration: none;
        list-style: none;
    }
    
     :root {
        --bg-color: #ffffff;
        --principal-color: pink;
        --text-color: #121212;
        --main-font: 2.2rem;
        --p-font: 1.1rem;
    }
    
    body {
        background: var(--bg-color);
        color: var(--text-color);
    }
    
    header {
        width: 100%;
        top: 0;
        right: 0;
        z-index: 1000;
        position: fixed;
        background: var(--principal-color);
        box-shadow: 0px 2px 18px 0 rgb(129 162 182 / 20%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 8%;
        transition: 0.3s;
    }
    
    .logo {
        color: var(--text-color);
        font-size: var(--main-font);
        font-weight: 600;
        line-height: 0.8;
    }
    
    #menu-icon {
        font-size: 38px;
        color: var(--text-color);
        z-index: 10001;
        display: none;
    }
    
    .navbar {
        display: flex;
    }
    
    .navbar a {
        font-size: var(--p-font);
        color: var(--text-color);
        font-weight: 600;
        padding: 10px 15px;
        margin: 0 10px;
        transition: all 0.4s ease;
    }
    
    .navbar a:hover {
        background: var(--text-color);
        color: #fff;
    }
    
    .icons {
        display: inline-block;
    }
    
    .icons i {
        color: var(--text-color);
        font-size: 24px;
        margin-left: 15px;
    }
    
    .icons i:hover {
        opacity: 0.4;
    }
    
    section {
        padding: 100px 8%;
    }
    
    .container {
        padding-top: 1rem;
        margin-top: 2rem;
    }
    
    .mondiv {
        display: flex;
        height: 500px;
        color: white;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bolder;
    }
    
    .box {
        padding: 0px 20px 10px 20px;
        background: transparent;
        box-shadow: 5px 30px 56.1276px rgb(55 55 55 /12%);
        border-radius: 10px;
        position: relative;
        transition: all 0.35s ease;
    }
    
    .box img {
        width: 80%;
        height: auto
    }
    
    .box h4 {
        font-size: 15px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .box h5 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .box .cart i {
        position: absolute;
        top: 0;
        left: 0;
        width: 35px;
        height: 35px;
        background: var(--text-color);
        color: var(--bg-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    
    a.compte {
        display: none;
    }
    
    img.image {
        width: 50%;
        height: 50%;
    }
    
    @media (max-width: 1200px) {
        #menu-icon {
            display: block;
        }
        header {
            padding: 15px 8%;
            background: var(--principal-color);
        }
        .navbar {
            top: -700px;
            left: 0;
            right: 0;
            position: absolute;
            flex-direction: column;
            box-shadow: 0px 2px 18px 0 rgb(129 162 182 / 20%);
            transition: all 0.4s ease;
        }
        .navbar a {
            display: block;
            padding: 1rem;
            margin: 0.5rem;
        }
        .navbar.active {
            top: 100%;
        }
        .container {
            margin-top: 800px;
        }
        a.compte {
            display: block;
        }
        i.compte {
            display: none;
        }
    }
    
    @media (max-width: 400px) {
        .logo {
            font-weight: 0.5rem;
            font-size: 1.5rem;
        }
        i.compte {
            display: none;
        }
    }
    
    .about {
        background: #f7f6f6;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2 {
        font-size: var(--main-font);
        margin-top: 10px
    }
    
    .about-content p {
        max-width: 600px;
        font-size: var(--p-font);
        font-weight: 600;
        color: var(--text-color);
        line-height: 30px;
    }
    
    .contact {
        padding: 80px 17%;
        background: var(--text-color);
    }
    
    .main-contact {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-content li {
        margin-bottom: 15px;
    }
    
    .contact-content li a {
        display: block;
        color: var(--bg-color);
        font-size: var(--p-font);
        font-weight: 600;
        transition: all 0.4s ease;
    }
    
    .contact-content li a:hover {
        transform: translateX(-10px)
    }
    
    .newsletter {
        color: var(--bg-color);
        text-align: center;
        margin-bottom: 5px;
        font-size: medium;
    }
    
    .action form {
        text-align: center;
    }
    
    .action form input[type="email"] {
        width: 460px;
        max-width: 100%;
        padding: 12px 15px;
        background: #515151;
        color: var(--bg-color);
        border: none;
        outline: none;
        margin: 0px 10px 20px 0px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .action form input[type="submit"] {
        padding: 10px 35px;
        background: var(--bg-color);
        color: var(--text-color);
        border: none;
        outline: none;
        margin: 0px 10px 20px 0px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .last {
        text-align: center;
        padding: 17px;
        background: var(--principal-color);
    }
    
    .last p {
        color: var(--text-color);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 2px;
    }
    
    .box:hover {
        transform: translateY(-5px);
    }