@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    width: 100%;
    margin: 60px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #c191b0;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #000000;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid black;
    outline: none;
    transition: 0.2s;
}


#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #f1f1f1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

#navbar li {
    list-style: none;
    padding: 0 10px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: black;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: blueviolet;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: blueviolet;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.logo {
    height: 50px;
    width: auto;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
    order: 1; /* Add this line */
    margin-right: 10px; /* Add this line */
}

#navbar-wrapper {
    display: flex;
}




/* Home Page */

#hero {
    background-image: url("images/hero2.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: #088178
}

#hero button {
    background-image: url("buttons/button.png");
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.06);
    border: 1px solid cornsilk;
    border-radius: 4px;
    margin: 15px 0;
}


#feature .fe-box {
    box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.06);

}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: bisque;
}

#product1 {
    margin-top: 20px;
    text-align: center;
    height: 120vh;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    position: relative;
    margin-left: 10px;
    transition: 0.2 ease;
}

#product1 .pro::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
}

#product1 .pro:hover::before {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
}

#product1 .pro img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(images/banner.jpg);
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;

}

#banner h4 {
    color: rgb(219, 69, 94);
    font-size: 20px;

}

#banner h2 {
    color: rgb(219, 69, 94);
    font-size: 40px;
    padding: 10px 0;

}

#banner h2 span {
    color: #222;

}

#banner button:hover {

    background: #000000;
    color: #ffffff;
}

#sm-banner {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(images/image11.jpeg);
    width: 580%;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;

}

#sm-banner .button:hover {
    background: #000000;
    color: #ffffff;
}

#sm-banner h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #000000;
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span {
    color: #924c4c;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
    margin-top: 40px;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("images/promotion.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-box2 {
    background-image: url("images/freeshipping.jpg");
    margin-left: 45px;
}

#banner3 .banner-box3 {
    background-image: url(images/happysell.jpg);
    margin-left: 45px;
}

#banner3 h2 {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner h3 {
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}

#newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span {
    color: #ffbd27;
}

#newletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    margin-top: 15px;
}


/* Footer styles */

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex-basis: 25%;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-media li,
.about-links li,
.account-links li {
    margin-bottom: 5px;
}

.social-media a,
.about-links a,
.account-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media a:hover,
.about-links a:hover,
.account-links a:hover {
    color: #bbb;
}

.app-button {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.app-button i {
    margin-right: 5px;
}

.app-button:hover {
    background-color: #eee;
}


@media (max-width:768px) {

    #menu-toggle {
        display: block;
    }

    #navbar {
        flex-direction: column;
        display: none;
    }

    #navbar.open {
        display: block;
    }

    #navbar li {
        padding: 10px 0;
        text-align: center;
    }

    #mobile {
        display: flex;
        align-items: centre;



    }

    #mobile i {
        color: #000000;
        font-size: 24px;
        padding-left: 20px;

    }

    #close {
        position: absolute;
        top: 30px;
        left: 30 px;
        color: #040000;
        font-size: 24px;
    }

    #lg-bag {
        display: none;

    }

    #hero {

        height: 90vh;
        padding: 0 80px;
        background-position: top 30% right 30%;

    }

    #feature {
        justify-self: centre;

    }

    #feature .fe-box {

        margin: 15px 15px;
    }

    #product1 .pro-container {

        justify-content: center;


    }

    #product1 .pro {

        margin-left: 15px;

    }

    #banner {
        height: 20vh;

    }

    #sm-banner .banner-box {

        min-width: 100%;
        height: 30vh;

        padding: 30px;

    }

    #banner3 {
        padding: 0 40px;
    }

    #banner3 .bannerbox {
        min-width: 28%;
    }

    #newsletter .form {
        width: 70%;
    }

    .footer-section {
        flex-basis: 50%;
    }

    .app-button {
        display: block;
        margin-top: 10px;
    }

}

@media (max-width:477px) {


    .section-p1 {
        padding: 20px;
    }

    #header {
        padding: 10px 30px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    #hero {
        padding: 0 20px;
        background-position: 55%;
    }

    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    #product .pro {
        width: 100%
    }

    #banner {
        height: 40vh;
    }

    #sm-banner .banner-box {
        height: 40vh;

    }

    #sm-banner .banner-box2 {
        margin-top: 20px;
    }

    #banner3 {
        padding: 0 20px;

    }

    #banner .banner-box {
        width: 100%;

    }

    #newsletter {
        padding: 40px 20px;
    }

    #newsletter .form {
        width: 100%;

    }

}