* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    padding: 0 20px;
    background-color: white;
    height: auto;
}

/* Ad */
.notify {

    display: flex;
    background-color: #1D232C;
    color: white;
    justify-content: center;
    gap: 150px;
    align-items: center;
    padding: 4px;
    top: 0;
    transition: transform 0.4s ease;

}

.notify p {
    font-size: 20px;
}

.notify i {
    cursor: pointer;
}

/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    position: sticky;
    z-index: 250000;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;

}

.navbar__menu {
    display: flex;
    gap: 50px;
    font-size: 19px;


}

.navbar__menu a {
    color: black;
    text-decoration: none;
}

.navbar__menu a p {
    font-size: 18px;
}

.humburger {
    display: none;
    cursor: pointer;
}

/* humburger navbar*/
.humburger-navbar {
    display: flex;
    flex-direction: column;
    background-color: #1D232C;
    position: fixed;
    z-index: 400000;
    top: 0;
    left: -20%;
    height: 100vh;
    gap: 30px;
    width: 20%;

}

.humburger-navbar i {
    font-size: 20px;
    margin-top: 15px;
    align-self: end;
    cursor: pointer;

}

.humburger-navbar a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    margin-left: 15px;

}

/* collection */
.container {
    display: flex;
    margin-top: 90px;
    gap: 170px;
}

/* container one */
.container-one {
    margin-top: 20px;

}

.container-one h2 {
    margin-bottom: 10px;
}

.container-one .occasion,
.colors,
.arrivals {
    margin-top: 20px;
    font-size: 20px;

}

.container-one label {
    font-size: 25px;
}



/* verticl line */
.vertical-line {
    border: none;
    border-left: 3px solid black;
    height: 150%;
    margin: 0 20px;
    position: absolute;
    top: 50px;
    left: 290px;


}

/* search box */
.container-two .search-box {
    border: 1px solid black;
    width: 95%;
    border-radius: 7px;
    padding: 8px;
    text-align: center;
}

.container-two .search-box input {
    width: 95%;
    border: none;
}

input:focus {
    outline: none;
}

/* container two */
.product_collection {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.product {
    flex-basis: 30%;
}

.product_collection .product img {
    width: 100%;
    height: 300px;
}

/* Subscribe */
.subscribe {
    margin-top: 80px;
    text-align: center;


}

.subscribe h1 {
    font-size: 44px;
}

.subscribe p {
    font-size: 30px;
}

.subscribe input {
    margin-top: 10px;
    padding: 15px;
    width: 80%;
    border: 2px solid #1D232C;
}

.subscribe-btn {
    padding: 5px 15px;
    margin-top: 20px;
    background-color: #1D232C;
    color: white;
    font-size: 30px;
    border-radius: 10px;
}

/* footer */
.footer {
    margin-top: 50px;
    background-color: #1D232C;
    padding: 30px;
    color: #E2E1E1;
}

.footer h1 {
    font-size: 50px;
}

.footer p {
    font-size: 30px;
}

.footer-icons i {
    margin-top: 10px;
    font-size: 30px;
    padding: 10px 40px;

}

.footer h4 {
    margin-top: 10px;
    font-size: 25px;
    color: #E2E1E1;
}



/* Responsive */

@media screen and (max-width:1000px) {
    body {
        font-size: 14px;
    }

    .humburger {
        display: block;
        font-size: 25px;
    }

    /* Navbar */
    .navbar__menu {
        display: none;

    }

    /* container-one */
    .container-one h2 {
        font-size: 20px;
    }

    .container-one label {
        font-size: 15px;
    }


    .vertical-line {
        left: 150px;
        height: 108%;
    }

    /* container-two */

    .product_collection .product img {
        width: 100%;
        height: 150px;
    }

    .container-two .search-box input {
        width: 92%;
    }

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .container-two {
        margin-left: -100px;
    }

    /* subscribe */
    .subscribe h1 {
        font-size: 25px
    }

    .subscribe p {
        font-size: 15px
    }

    .subscribe-btn {
        font-size: 15px;
    }

    .subscribe-input {
        padding: 18px;
    }

    /* footer */
    .footer h1 {
        font-size: 20px;
    }

    .footer p {
        font-size: 17px;
    }

    .footer-icons i {
        font-size: 19px;
    }

    .footer h4 {
        font-size: 20px;
    }

}

@media screen and (max-width:600px) {

    /* notify */
    .notify {
        gap: 30px;
    }

    .notify p {
        font-size: 10px;
    }

    .container {
        margin-top: 18%;
    }

    /* container one */
    .container-one {
        margin-top: 0px;
    }

    /* container two */
    .container-two .search-box input {
        width: 90%;
    }

    .product_collection .product img {
        width: 100%;
        height: 100px;
    }

    .product h3 {
        font-size: 10px;
    }

    .vertical-line {
        left: 150px;
        height: 83%;
    }

    /* subscribe */
    .subscribe {
        margin-top: 10%;
    }

    .subscribe h1 {
        font-size: 25px
    }

    .subscribe p {
        font-size: 15px
    }

    .subscribe-btn {
        font-size: 15px;
    }

    .subscribe-input {
        padding: 18px;
    }

    /* footer */
    .footer h1 {
        font-size: 20px;
    }

    .footer p {
        font-size: 17px;
    }

    .footer-icons i {
        font-size: 19px;
    }

    .footer h4 {
        font-size: 20px;
    }
}