:root {
    --greek: #1073e5;
    --black: #192a56;
    --light: #ef869c;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
  }

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .5s ease;
}

/* //mobile only: call and whatsapp */
@media (min-width:660px) {
    #phone-call{
        display:none;
    }
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    font-weight: 400;
}
img{
    max-width: 100%;

}

.btn{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;
    font-weight: 600;
}
.btn:hover{
    letter-spacing: .1rem;
}

.btn-blue{
    background:var(--black);
    color: #fff;
}
.btn-blue:hover{
    background: #fff;
    color:var(--black);
    border: 1px solid var(--black);
}

section{
    padding: 2rem 9%;
    scroll-snap-type: y mandatory;
}

section:nth-child(even){
    background:#fff;
}

section .sub_heading{
    text-align: center;
    color: var(--light);
    font-size: 2rem;
    padding-top: 1rem;
    font-weight: 400;
}
section .heading{
    text-align: center;
    color: var(--black);
    font-size: 3rem;
    padding-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

header .nav_brand{
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
}

header .nav_brand i{
    color: var(--greek);
    font-size: 2rem;
}

header nav a{
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    color: var(--greek);
    font-weight: 600;
    transition: .5s ease-in;
}

header nav a:hover, header nav .active{
    color: #fff;
    background: var(--greek);
}

header .icons i, header .icons a{
    cursor: pointer;
    margin-left: 0.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background: #eee;
    transition: .5s ease-in;
} 
header .icons i:hover, header .icons a:hover{
    color: #fff;
    background: var(--greek);
    transform: rotate(360deg);
}
#menu_bars{
    display: none;
}

/* mobile querry */
@media (max-width:991px) {
    html{
        font-size: 55%;
    }

    header{
        padding: 1rem 2rem;
    }    



}

@media (max-width:768px) {
    header .icons #menu_bars{
        display: inline-block;
    }

    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 0 0);
        transition: .5s ease-in;
    }

    header .icons i, header .icons a{
        cursor: pointer;
        margin-left: 0.2rem;
        height: 3.5rem;
        width: 3.5rem;
        line-height: 3.5rem;
        text-align: center;
        font-size: 1.5rem;
        color: var(--black);
        border-radius: 50%;
        background: #eee;
        transition: .5s ease-in;
    } 

    header .navbar a{
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background-color:#fff;
        color: var(--black);
        font-weight: 600;
        font-size: 2.0rem;
        transition: .5s ease-in;
    }
    header .active-menu{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: .5s ease-in;
    }
}

/* search form for products */
#search-form{
    position: fixed;
    top: -110%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background-color: rgba(0, 0, 0, .8);
    transition:all .5s ease;
}

#search-form #product_search{
    width: 50rem;
    border-bottom: .1rem solid #fff;
    padding: 1rem 0;
    font-size: 3rem;
    text-transform: none;
    background: none;
    color: #fff;
}

#search-form #product_search::placeholder{
    color: #eee;
}
#search-form #product_search::-webkit-search-cancel-button{
    -webkit-appearance: none    ;
}

#search-form label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
}

#search-form label:hover{
    color: var(--greek);
    
}

#search-form  #close-btn{
    position: absolute;
    color: red;
    cursor: pointer;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
}

.active_product_form{
    top: 0 !important;
}

@media (max-width: 991px) {
    #search-form #product_search{
        max-width:70% ;
        margin: 0;
    }
    
}

/* favorite modal begins here */
.favorite_container{
    position: fixed;
    top: 0;
    left: -120%;
    height: 100%;
    width: 100%;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background-color: rgba(0, 0, 0, .95);
    transition:all .5s ease;
}

.favorite_container #close-fav-btn{
    position: absolute;
    color: red;
    cursor: pointer;
    top: 1rem;
    right: 5rem;
    font-size: 5rem;
    
}

.favorite_container .favorites{
    background: white;
    margin: 2rem 9%;
}

.active_favorite_box{
    left: 0;
    transition: .5s ease-in-out;
}

/* home slider section begins here */
.home{
    position: relative;
}
.home .home_slider .wrapper .slide{
    display:flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-top: 9rem;
}

.home .home_slider .wrapper .slide .content{
    flex: 1 1 30rem;
}

.home .home_slider .wrapper .slide .image_container{
    flex: 1 1 30rem;
    overflow: hidden;
}

.home .home_slider .wrapper .slide .image_container img{
    max-width: 100%; 
    transition: .8s ease-in-out;
}
.home .home_slider .wrapper .slide .image_container img:hover{
    transform: rotate(360deg);
}

.home .home_slider .wrapper .slide .content span{
    color: var(--light);
    font-size: 2.5rem;
    font-weight: 600;
}

.home .home_slider .wrapper .slide .content h3{
    color: var(--black);
    font-size: 5rem;
    font-weight: 900;
}

.home .home_slider .wrapper .slide .content p{
    color: var(--greek);
    font-size: 2.2rem;
    padding: .5rem 0;
    line-height: 1.5;
    text-align: justify;
}
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-pagination-bullet-active{
      background: var(--black) !important;
      transform: scale3d(1.5);
  }

  @media (max-width:768px) {
    .home .home_slider .wrapper .slide .content h3{
        color: var(--black);
        font-size: 4rem;
        font-weight: 900;
    }
  }

  /* //shape svg */
  .custom-shape-divider-bottom-1631630525 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1631630525 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1631630525 .shape-fill {
    fill: #FFFFFF;
}

/* about section styling begins */
.about{
    background: #eee;
}
.about .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.about .row .image_container{
    flex: 1 1 45rem;
}

.about .row .content{
    flex: 1 1 45rem;
}

.about .row .content h3{
    color: var(--black);
    font-size: 4rem;
    padding: .5rem 0;
}

.about .row .content p{
    color: var(--greek);
    font-size: 1.4rem;
    padding: .5rem 0;
    font-weight: 600;
    line-height: 2;
    text-align: justify;
}

.about .row .content .icons_container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0rem;
    margin-top: 0.5rem;
}

.about .row .content .icons_container .icons{
    background-color: #fff;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    flex: 1 1 17rem;
    padding: 1.5rem 1rem;
    border: 1px solid #ef869c;
    cursor: pointer;
}

.about .row .content .icons_container .icons i{
    flex: 1;
    font-size: 2.5rem;
    color: var(--light);
    text-align: right;
    margin-right: 1.2rem;
}
.about .row .content .icons_container .icons span{
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 600;
    flex: 2;
}







/* about section styling ends */

/* store section styling begins */
  .store .products_container{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
      grid-gap: 1.5rem;
  }

  .store .products_container .product{
      padding: 2.7rem;
      background: #fff;
      border-radius: .5rem;
      box-shadow: var(--box-shadow);
      position: relative;
      overflow: hidden;
      text-align: center;
  }
  .store .products_container .product .prodduct_icons{
    position: absolute;
    top: 1.5rem;
    right: -15rem;
    left: -15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

  }
  .store .products_container .product .fa-eye,  .store .products_container .product .fa-heart{
    background: #eee;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--black);
    transition: .5s ease-in-out;
  }

  .store .products_container .product .fa-eye:hover, .store .products_container .product .fa-heart:hover{
    color: #eee;
    background: var(--black);
  }
  .store .products_container .product:hover .prodduct_icons{
    right: 1.5rem;
    left: 1.5rem;
    }

    .store .products_container .product img{
        height: 17rem;
        margin: 1rem 0;
    }

    .store .products_container .product h3{
        color: var(--black);
        font-size: 2rem;
        font-weight: bold;
    }

    .store .products_container .product p{
        color: var(--greek);
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .store .products_container .product span{
       color: var(--greek);
       font-weight: bolder;
       margin-right: 1rem;
       font-size: 2.5rem;
    }

    @media (max-width:991px) {
        .store .products_container .product img{
            height: auto;
            width: 100%;
        }
    
    }
/* store section styling ends */

/* review section styling begins */
    .review{
        padding-top: 8rem;
        padding-bottom: 8rem;
        background: #eee;
        overflow-x: hidden !important;
    }
    .review .slide{
        padding: 5rem 2rem;
        -webkit-box-shadow: 4px 4px 22px 0px rgba(50, 50, 50, 0.59);
        -moz-box-shadow:    4px 4px 22px 0px rgba(50, 50, 50, 0.59);
         box-shadow:   4px 4px 22px 0px rgba(50, 50, 50, 0.59);
         border-radius: 0.5rem;
         position: relative;
         background: white;
         width: 100%;
         scroll-snap-type: x mandatory;
    }
    .mswiper {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
      }

      .swiper-slide{
          text-align: center;
      }

    .review .slide .user{
        display: flex;
        gap:1.5rem;
        align-items: center;
        padding-bottom: 1.5rem;
    }

    .review .slide .user .img_container{
        width: 7rem;
        height: 7rem;
        border-radius: 50%;
        overflow: hidden;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .review .slide .user .img_container img{
        max-width: 100%;
        object-fit: cover;
    }

    .review .slide .user .user_info h3{
        color: var(--black);
        font-size: 2rem;
        padding-bottom: 0.5rem;

    }

    .review .slide .user .user_info .ratings i{
        font-size: 1.3rem;
        color: var(--greek);
    }
    .review .slide .comment{
        font-size: 1.5rem;
        line-height: 1.8;
        color: var(--black);
        padding: 1rem;
        font-weight: 600;
        text-align: justify;
    }

    @media (max-width:768px) {
        .review .slide{
            flex-direction: column;
        }
        .review .slide .comment{
            font-size: 1.5rem;
            line-height: 1.8;
            color: var(--black);
            padding: 1rem;
        }
    }

/* order section styling ends */
    .order{
        padding-top: 8rem;
        padding-bottom: 8rem;
        background: url(../images/background/white-and-pink-flowers-above-book-545018.jpg);
        overflow-x: hidden !important;
        min-height:100%;
        background-size:cover;
    }
    .order form{
        max-width: 60rem;
        border-radius: 0.5rem;
        -webkit-box-shadow: 4px 4px 22px 0px rgba(50, 50, 50, 0.59);
        -moz-box-shadow:    4px 4px 22px 0px rgba(50, 50, 50, 0.59);
         box-shadow:   4px 4px 22px 0px rgba(50, 50, 50, 0.59);
         border: 1px solid #eee;
         background: #fff;
         margin: 0 auto;
         padding: 3rem;
    }
    .order form .input{
        display:flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .order form .input  span{
        flex: 1;
        padding:.5rem 0;
        font-size: 1.5rem;
        color: var(--greek);
        font-weight: 600;

    }
    .order form .input  input,  .order form .input  textarea{
        flex: 2;
        padding: 1.5rem;
        background: #eee;
        border-radius: .5rem;
        margin-bottom: 0.5rem;
    }
    .order form .input  input:focus,  .order form .input  textarea:focus{
        border: 1px solid var(--greek);
    }

    .order form .input  input,  .order form .btn{
        margin-right: 0;
    }


    @media (max-width:660px) {
        .order form{
            max-width: 100%;
            padding: 1rem;
        }
    
    }
/* order section styling ends */

/* Footer section styling begins */
footer {
    padding: 10vh 0px;
    background: #fff;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    border-top: 4px solid #eee;
}
footer h3{
    font-size: 2.0rem;  
    margin-bottom: 20px;
    color: var(--black);
}
footer p, footer a{
    font-size: 1.5rem;
}
footer .falsefooter {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 50px;
}
footer .falsefooter .copy {
    flex: 2;
    margin-right: 20px;
}
footer .falsefooter .newsletter {
    flex: 2;
    margin-right: 20px;
    margin-left: 20px;
}
footer .falsefooter .sociallinks {
    flex: 2;
    margin-left: 20px;
}
footer .falsefooter .box {
    text-align: center;
    padding: 30px;
}
footer .falsefooter .box p {
    text-align: justify;
    line-height: 24px;
    color: var(--greek);
    font-size: 1.5rem;
}
footer .falsefooter h6 {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 20px;

}
footer .hotlinks a{
    margin-right: 1.5rem;
    margin-top: 20px; 
    color: var(--greek);
}

.social-links {
    display: flex;
    justify-content: center;
}
.social-links li {
    list-style-type: none;
    margin: 5px;
}
.social-links li a i {
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 25px;
    text-align: center;
    margin-right: 10px;
    padding-top: 15%;
    transition: all 0.2s ease-in-out;
}
.social-links ul li a i:hover {
    opacity: 0.7;
    color: #fff !important;
}
.fa-facebook:hover {
    background: #3b5998 !important;
    color: #fff !important;
}
.fa-linkedin:hover {
    background: #007bb6 !important;
    color: #fff !important;
}
.fa-twitter:hover {
    background: #00aced !important;
    color: #fff !important;
}
.fa-instagram:hover {
    background: #d6249f;
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
    color: #fff !important;
}
.fa-whatsapp:hover {
    background: linear-gradient(#25d366, #25d366);
    color: #fff !important;
}

/* mobile responsiveness */
@media (max-width: 768px) {
    footer {
        padding: 10vh 20px;
    }
    footer .falsefooter {
        flex-direction: column;
        margin-bottom: 20px;
    }
    footer .falsefooter .copy {
        margin-right: 0px;
    }
    footer .falsefooter .newsletter {
        flex: 2;
        margin-right: 0px;
        margin-left: 0px;
    }
    footer .falsefooter .sociallinks {
        flex: 2;
        margin-left: 0px;
    }
    footer .falsefooter .box {
        text-align: center;
        padding: 10px;
    }
    footer .falsefooter .box p {
        text-align: justify;
        line-height: 24px;
        color: var(--blue);
        font-size: 1.5rem;
    }
    footer .falsefooter h6 {
        color: var(--red);
        margin-bottom: 10px;
        font-weight: 600;
    }
}
.text-center{
    text-align: center;
}

/* Footer section styling ends */