@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");
:root {
  --primary: #eeeeee;
  --secondary: #227c70;
  --green: #82cd47;
  --secondary-light: rgb(34, 124, 112, 0.2);
  --secondary-light-2: rgb(127, 183, 126, 0.1);
  --white: #fff;
  --black: #393e46;

  --shadow: 0px 2px 8px 0px var(--secondary-light);
}



/*Get Fonts*/
@font-face {
  font-family: 'Biysk';
  src: url('fonts/biysk.ttf') format('truetype'); /* Replace 'your-font-file.ttf' with the actual font file name and extension */
}

@font-face {
  font-family: 'Questrial';
  src: url('fonts/questrial.ttf') format('truetype'); /* Replace 'your-font-file.ttf' with the actual font file name and extension */
}

@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/comfortaa.ttf') format('truetype'); /* Replace 'your-font-file.ttf' with the actual font file name and extension */
}

@font-face {
  font-family: 'Poppins_Medium';
  src: url('fonts/poppins_medium.ttf') format('truetype'); /* Replace 'your-font-file.ttf' with the actual font file name and extension */
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins.ttf') format('truetype'); /* Replace 'your-font-file.ttf' with the actual font file name and extension */
}

@font-face {
  font-family: 'Varela_Round';
  src: url('fonts/varela_round.ttf') format('truetype'); /* Replace 'your-font-file.ttf' with the actual font file name and extension */
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*Store floating button*/
.dropdown {
  position: absolute;
  display: none;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  
  border-radius: 10px;
}

.dropdown li{
  padding: 5px;
  cursor: pointer;
}

.dropdown li:hover {
  background-color: #ccc;
}

.dropdown.show {
  display: block;
}


.geolocation-prompt {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -150%);
  background-color: #000000;
  color: #fff;
  padding: 8px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  cursor: pointer;
}

.geolocation-prompt p{
  margin-top: 0;
  font-family: 'Biysk', "Questrial";
  font-size: 15px;
}

.geolocation-prompt.show {
  transform: translate(-50%, -0%);
}

.geolocation-prompt.hide {
  transform: translate(-50%, -150%);
}

.dropdown ul {
  list-style-type: none;
}

html{
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}

section{
    width: 100%;
    
}

section nav{
    display:flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index: 1000;
    padding-left: 20px;
    padding-right: 20px;
}

section nav .menu-nav img{
    width: 25px;
    margin: 5px 0;
    cursor: pointer;
}

section nav .logo img{
    width: 100px;
    margin: 5px 0;
    position: center;
    cursor: pointer;
}

section nav ul{
    list-style: none;
    display: none;
}

section nav ul li{
    display: inline-block;
    margin: 0 15px;
}

section nav ul li a{
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 17px;
    transition: 0.1s;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
    cursor: pointer;
}

section nav ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    background: #027b80;
    display: block;
    transition: 0.2s linear;
}

section nav ul li a:hover::after{
    width: 100%;
}

section nav ul li a:hover{
    color: #027b80;
}

section nav .icon i{
    font-size: 18px;
    color: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

section nav .icon i:hover{
    color: #027b80;
}

section nav .mobile_icon i{
    font-size: 18px;
    color: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

section nav .icon{
    display: none;
}

/*CART COUNT COUNT*/
.cart-count {
  height: 18px;
  position: absolute;
  top: 10px;
  right: 40px;
  background-color: #fa8e00;
  color: white;
  border-radius: 50%;
}

.cart-count p {
  font-size: 12px;
  font-family: 'Questrial';
  margin-top: -2px;
  padding: 5px;
}


/*Float bag btn*/
.bag-cart-count {
  height: 18px;
  position: absolute;
  top: 10px;
  left: 45px;
  background-color: #fa8e00;
  color: white;
  border-radius: 50%;
}

.bag-cart-count p {
  font-size: 12px;
  font-family: 'Questrial';
  margin-top: -2px;
  padding: 5px;
}

.popup {
    display: none;
    position: absolute;
    width: 200px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .popup::before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }

section .desktop-main{
    display: none;
    align-items: center;
    position: relative;
    top: 50px;
    justify-content:center;
    width: 100%;
    height: auto;
}

section .desktop-main .men_text h1{
    font-size: 5vw;
    position: relative;
    top: -0px;
    left: 20px;
    font-family: 'Varela Round','Comfortaa','Poppins_Medium', 'Varela_Round';
}

section .desktop-main .men_text h1 span{
    margin-left: 15px;
    color: #c71e00;
    line-height: 22px;
    font-size: 4vw;
    font-family: 'Rock Salt';
    margin-top: 5px;
}

section .desktop-main .main_image img{
    width: 100%;
    position: relative;
    left: auto;
}

/*Mobile view*/

section .mobile-main{
    width: 100%;
    display: flex;
    border-radius: 10px;
    padding-top: 50px;
}
  
  .slider-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 20px 30px 0px;
  }
  
  #menuDrawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    transition: left 0.3s ease-out;
  }
  
  #menuDrawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #menuDrawer ul li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
  }
  
  #menuDrawer ul li a:hover {
    background-color: #f2f2f2;
  }

/*Profile Drawer*/
.profile-dropdown {
  position: relative;
  width: fit-content;
}

.profile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  width: 150px;
  border-radius: 50px;
  color: var(--black);
  /* background-color: white;
  box-shadow: var(--shadow); */

  cursor: pointer;
  border: 1px solid var(--secondary);
  transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in,
    border 0.3s;
}

.profile-dropdown-btn:hover {
  background-color: var(--secondary-light-2);
  box-shadow: var(--shadow);
}

.profile-img {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(./assets/profile-pic.jpg);
  background-size: cover;
}

.profile-img i {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  font-size: 0.5rem;
  color: var(--green);
}

.profile-dropdown-btn span {
  margin: 0 0.5rem;
  margin-right: 0;
}

.profile-dropdown-list {
  position: absolute;
  top: 58px;
  width: 220px;
  height: 500px;
  right: 0;
  background-color: var(--white);
  border-radius: 10px;
  max-height: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: max-height 0.5s;
  justify-content: center;
  align-items: center;
}

.profile-dropdown-list hr {
  border: 0.5px solid var(--green);
}

.profile-dropdown-list.active {
  max-height: 500px;
}

.profile-dropdown-list-item {
  width: 100%;
  padding: 0.5rem 0rem 0.5rem 1rem;
  transition: background-color 0.2s ease-in, padding-left 0.2s;
}

.profile-dropdown-list-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.profile-dropdown-list-item a i {
  margin-right: 0.8rem;
  font-size: 1.1rem;
  width: 2.3rem;
  height: 2.3rem;
  background-color: var(--secondary);
  color: var(--white);
  line-height: 2.3rem;
  text-align: center;
  margin-right: 1rem;
  border-radius: 50%;
  transition: margin-right 0.3s;
}

.profile-dropdown-list-item:hover {
  padding-left: 1.5rem;
  background-color: var(--secondary-light);
}


/*Menu*/

.menu{
    width: 100%;
    padding: 0 0;
    margin-top: 50px;
}

.menu h1{
    font-size: 22px;
    display: flex;
    align-items: left;
    justify-content: left;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
    margin-left: 20px;
    margin-bottom: 10px;
}

.menu .menu_box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
}

.menu .menu_box::-webkit-scrollbar {
	display: none;
}

#recommended-list .menu_card{
    flex: 1;
    height: auto;
    padding: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    cursor: pointer;
    min-width: 300px;
}

#recommended-list .menu_card .menu_image{
    width: 100%;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.menu_card .menu_image img{
    width: 100%;
    height: 100%;
    object-fit: inherit; 
    object-position: center;
    transition: 0.3s;

}

.menu_card .menu_image:hover img{
    transform: scale(1.1);
}

#recommended-list .menu_card .small_card{
    width: 45px;
    height: 45px;
    float: right;
    position: relative;
    top: -190px;
    right: 10px;
    opacity: 1;
    border-radius: 7px;
}

#recommended-list .menu_card:hover .small_card{
    position: relative;
    top: -190px;
    right: 10px;
    opacity: 1;
}

.menu_card .small_card i{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    color: #b3b3b3;
    cursor: pointer;
    text-shadow: 0 0 0px #000;
    
}

.menu_card .small_card i:hover{
    color: #000;
}

.menu_card .menu_info h2{
    width: 100%;
    text-align: left;
    margin: 5px 5px 5px 5px;
    font-size: 20px;
    font-family: questrial, 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
}

.menu_card .menu_info p{
    font-size: 18px;
    text-align: left;
    margin-top: 5;
    margin-left: 5px;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
}

.menu_card .menu_info h3{
    font-size: 18px;
    text-align: left;
    margin-top: 10px;
    margin-left: 5px;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
}

.menu_info .menu_icon{
    color: #027b80;
    text-align: left;
    margin: 10px 0 10px 0;
}

/*Menu Page*/

#product-list{
    margin: 0px auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    border-radius: 10px;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px
}

#product-list .menu_card{
    flex: 1;
    height: auto;
    
    margin-bottom: 10px;
    padding-top: 10px;
    cursor: pointer;
}

#product-list .menu_card .menu_image{
    width: 100%;
    height: 130px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

#product-list .menu_card .small_card{
    width: 45px;
    height: 45px;
    float: right;
    position:relative;
    top: -150px;
    right: 5px;
    opacity: 1;
    border-radius: 7px;
}

#product-list .menu_card:hover .small_card{
    position: relative;
    top: -150px;
    right: 5px;
    opacity: 1;
}

/*Category sort*/


.category_sort_box{
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    overflow-x: auto;
    padding-top: 70px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff;
}

.sort_card{
    background-color: #ececec;
    border-radius: 10px;
    width:fit-content;
    margin-top: 5px;
    margin-left: 5px;
    min-width: 60px;
    cursor: pointer;
}

.sort_card h5{
    width: fit-content;
    font-size: 16px;
    text-align: left;
    font-family: 'Questrial';
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    margin: auto;
    align-items: center;
}

#selected_sort {
    background-color: #000000;
    border-radius: 10px;
    width:fit-content;
    margin-top: 5px;
    margin-left: 5px;
    min-width: 60px;
    cursor: pointer;
}

#selected_sort h5{
    width: fit-content;
    font-size: 16px;
    text-align: left;
    font-family: 'Questrial';
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    margin: auto;
    align-items: center;
}

/*Most Popular*/
.most_popular{
    background-color: #000;
    border-radius: 5px;
    width:fit-content;
    margin-top: 5px;
    margin-left: 5px;
}

.most_popular p{
    font-size: 12px;
    text-align: left;
    font-family: 'Questrial';
    color: #fff;
    padding: 4px;
}



/*Events*/
#event-list{
    margin: 0px auto;
    width: 100%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    border-radius: 10px;
    padding-top: 70px;
    padding-left: 10px;
    padding-right: 10px
}

#event-list .event_card{
    height: auto;
    margin-bottom: 10px;
    padding-top: 10px;
    cursor: pointer;
}

#event-list .event_card .event_image{
    width: 100%;
    height: 130px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.event_card .event_info h2{
    width: 100%;
    text-align: left;
    margin: 5px 5px 5px 5px;
    font-size: 20px;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
}

.event_card .event_info p{
    font-size: 18px;
    text-align: left;
    margin-top: 5;
    margin-left: 5px;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
}

.event_card .event_info h3{
    font-size: 18px;
    text-align: left;
    margin-top: 10px;
    margin-left: 5px;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
}

/*category*/

.category{
    width: 100%;
    padding: 10px 0;
}

.category h1{
    font-size: 22px;
    display: flex;
    align-items: left;
    justify-content: left;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
    margin-left: 20px;
    margin-bottom: 20px;
}


.category .category_image_box{
    width: 95%;
    margin: 10px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.category .category_image_box .category_image{
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    border-radius: 10px;
    
}

.category_image_box .category_image img{
    width: 100%;
    transition: .3s;
    border-radius: 10px;
}

.category_image_box .category_image .shade_over{
    width: 100%;
    border-radius: 10px;
    background: black;
    opacity: 0.4;
    color: #000;
}

.shade_over{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: black;
    opacity: 0.8;
    color: #000;
}

.category .category_image_box .category_image:hover img{
    opacity: 0.4;
    
}

.category .category_image_box .category_image h3{
    position: absolute;
    font-size: 18px;
    color: #fff;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
    z-index: 5;
    opacity: 0;
    transition: 0.3s;
}

.category .category_image_box .category_image:hover h3{
    opacity: 1;
}





/*Footer*/

footer{
    width: 100%;
    padding: 30px 0 20px 20px;
    background: #fff;
    margin-bottom: 100px;
}

footer .footer_main{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

footer .footer_main .footer_tag{
    text-align: center;
}

footer .footer_main .footer_tag h2{
    color: #000;
    margin-bottom: 25px;
    font-size: 24px;
    font-family: 'Questrial';
}

footer .footer_main .footer_tag p{
    margin: 10px 0;
    font-family: 'Questrial';
}

footer .footer_main .footer_tag i{
    margin: 0 5px;
    cursor: pointer;
}

footer .footer_main .footer_tag i:hover{
    color: #019599;
}

footer .end{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

footer .end span{
    color: #027b80;
    margin-left: 10px;
}

::-webkit-scrollbar{
    width: 13px;
}

::-webkit-scrollbar-track{
    border-radius: 15px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb{
    background: #027b80;
    border-radius: 15px;
}

buttons{
    margin: 200px;
}

/*My Bag FLoat button*/

.float_cart {
    position: fixed;
    bottom: 80px;
    right: 10px;
    width: 150px;
    height: 50px;
    border-radius: 25px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .float_cart .icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
  }
  
  .float_cart .icon i {
    font-size: 24px;
  }
  
  .float_cart .text {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Questrial';
  }

/*Bottom Nav*/

.bottom-nav {
    position: fixed;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    background-color: #ffffff;
    display: flex;
    border-radius: 30px;
    box-shadow: 5px 5px 15px 13px rgba(0, 0, 0, 0.096);
  }
  
  .bottom-nav a {
    color: rgb(131, 131, 131);
    text-align: center;
    flex: 1;
    padding: 10px 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bottom-nav a i {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .bottom-nav a span {
    font-family: 'Questrial';
  }
  
  .bottom-nav a.active {
    color: #027b80;
  }

/*View Pager*/

.view-pager {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .slide-container {
    display: flex;
    width: 300%;
    transition: transform 0.3s ease-in-out;
  }
  
  .slide {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide img {
    width: 100%;
  }
  
  .slide-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: white;
  }
  
  .dot-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .dot.active {
    background-color: #717171;
  }
  

/*View Product*/

/*Max Bag Count*/
.max_count {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  background-color: #f18b8b;
  padding-top: 70px;
}

.max_count.open {
  height: 100px;
  top: 0;
}

.max_count .content {
  padding: 5px;
  align-items: center;
  justify-content: center;
}

.max_count .content h5{
  align-items: r;
  justify-content: center;
  font-family: 'Questrial';
  padding-top: 2px;
  padding-left: 10px;
}

.view_product {
    padding-top: 100px;
    padding-bottom: 100px;
}

.view_product .container {
    max-width: 80%;
    margin: auto;
    height: auto;
    background: white;
    box-shadow: 5px 5px 15px 13px rgba(0, 0, 0, 0.096);
    border-radius: 10px;
}


  .left, .right {
    width: 50%;
    padding: 20px;
    
  }
  
  .flex {
    display: flex;
    
  }
  
  .flex1 {
    display: flex;
  }
  
  .view_product .container .main_image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  
  .view_product .container .right {
    padding: 10px 100px 50px 50px;
  }


  
  .view_product .container .right h3 {
    color: #000;
    margin: 20px 0 20px 0;
    font-size: 25px;
    font-family: 'Questrial';
  }
  
  
  .view_product .container .right h4 {
    color: #000;
    font-family: 'Questrial';
  }
  
  .view_product .container .right p {
    margin: 20px 0 20px 0;
    line-height: 25px;
    font-family: 'Questrial';
  }
  
  .view_product .container .right h5 {
    font-size: 15px;
    font-family: 'Questrial';
  }
  
  
  .view_product .container .right button {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background: #000000;
    color: white;
    margin-top: 10%;
    border-radius: 30px;
    font-family: 'Questrial';
    cursor: pointer;
  }

  

  .images {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
  }

  .images img {
    width: 100px;
    height: 70px;
    padding: 5px;
    border-radius: 10px;
  }

  /*Product Option*/
  .product-options {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .product-options h4 {
    margin-top: 0;
    font-family: 'Questrial';
  }
  
  .form-group {
    margin-bottom: 0px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    margin-top: 10px;
    font-family: 'Questrial';
  }
  
  select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    font-family: 'Questrial';
  }

  select option {
    font-family: 'Questrial';
  }

  /*Product Successfully Added*/
  .cart-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .cart-popup-content {
    text-align: center;
  }
  
  .cart-popup h4 {
    margin-top: 0;
  }
  
  .cart-popup p {
    margin-bottom: 10px;
  }

  .action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .action-buttons button {
    min-width: 100px;
    margin: 0 5px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
  }
  
  #continue-shopping-btn {
    background-color: #000000;
    color: #fff;
  }
  
  #view-cart-btn {
    background-color: #027b80;
    color: #fff;
  }

  #cart_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.603);
    display: none;
    cursor: pointer;
}
  

  /*Related Products*/
  .related_products{
    width: 100%;
    padding: 0 0;
    margin-top: 50px;
    
    }

    .related_products h1{
        font-size: 22px;
        display: flex;
        align-items: left;
        justify-content: left;
        font-family: 'Questrial', 'Poppins_Medium', 'Varela_Round', 'Comfortaa';
        margin-left: 10%;
        margin-bottom: 10px;
    }

    .related_products .menu_box{
        max-width: 80%;
        width: auto;
        display: flex;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        overflow-x: auto;
    }

    .related_products .menu_box::-webkit-scrollbar {
        display: none;
    }

    #related-list{
        margin-left: auto;
        margin-right: auto;
    }

    #related-list .menu_card{
        flex: 1;
        height: auto;
        padding: 10px;
        margin-bottom: 10px;
        padding-top: 10px;
        cursor: pointer;
        min-width: 200px;
    }
    
    #related-list .menu_card .menu_image{
        width: 100%;
        height: 150px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 10px;
    }
   
  /*LOG IN POPUP*/
  #popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    
    height: auto;
    min-height: 60%;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    display: none;
    border-radius: 10px;
    
    justify-content: center;
    align-items: center;}
    
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.603);
        display: none;
        cursor: pointer;
    }

    .form {
        width: 100%;
        height: 100%;
        position:absolute;
        justify-content: center;
        align-items: center; 
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .form .form-header {
      height:30px;
      display:flex;
      align-items:center;
      text-align:center;
      font-family: 'Questrial';
      padding-left: 30%;
      padding-right: 30%;
    }
    .form .form-header > div {
      width:calc(100% / 2);
      color:#ddd;
      font-size:18px;
      font-weight:600;
      cursor:pointer;
      
    }
    .form.signup .form-header div.show-signup {
      color:#027b80;
      font-family: 'Questrial';
    }

    .form.signin .form-header div.show-signin {
      color:#027b80;
      font-family: 'Questrial';
    }
    
    .form .form-elements {
      margin-top:40px;
      margin-left: 20%;
      margin-right: 20%;
    }
    .form .form-elements .form-element {
      height:50px;
      opacity:1;
      overflow:hidden;
      transition:all 500ms ease-in-out;
      
    }

    .form .form-elements input {
      width:100%;
      padding:10px;
      font-size:16px;
      margin: 5px, 0px;
      border-radius:10px;
      box-sizing:border-box;
      border:1px solid #222;
      background:#f5f5f5;
      font-family: 'Questrial';
    }

    .error {
      width: 100%;
      font-family: 'Questrial';
      font-size:12px;
      color: #c71e00;
      margin-bottom: 10px;
      align-items:flex-end;
      padding-left: 5px;
    }

    .form .form-elements button {
      width: 40%;
      padding:10px;
      font-size:16px;
      font-weight:600;
      margin-top:5px;
      border-radius:10px;
      background:#027b80;
      color:#f5f5f5;
      cursor:pointer;
      border:none;
      outline:none;
      font-family: 'Questrial';
      margin-left: 30%;
      margin-right: 30%;
    }
    .form .arrow {
      position:absolute;
      top:51px;
      width:0;
      height:0;
      border-left:10px solid transparent;
      border-right:10px solid transparent;
      border-bottom:10px solid #f5f5f5;
    }
    .form.signin .arrow {
      left:calc(calc(100% / 3) / 2);
    }
    .form.signup .arrow {
      left:calc(calc(100% / 3) + calc(calc(100% / 3) / 2.2)) ;
    }
    .form.reset .arrow {
      left:calc(calc(calc(100% / 3) * 2) + calc(calc(100% / 3) / 3)) ;
    }
    
    .form.signin .form-elements > div:nth-child(1) {
      height:0px;
      opacity:0;
    }

    .form.reset .form-elements > div:nth-child(2),
    .form.reset .form-elements > div:nth-child(3) {
      height:0px;
      opacity:0;
    }

    /*My cart*/
    .container{
      max-width: 1200px;
      margin: 0 auto;
      
    }

    .cart_container{
      max-width: 1200px;
      padding-top: 100px;
      margin-left: 10px;
      margin-right: 10px;
    }
    
    .container > h1{
      font-family: 'Questrial';
      padding: 30px 0;
      
    }
    
    .cart{
      display: flex;
    
    }
    
    .products{
      flex: 0.75;
    }
    
    .product{
      display: flex;
      width: 100%;
      height: 180px;
      overflow: hidden;
      border: none;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
      margin-bottom: 20px;
      cursor: pointer;
      border-radius: 10px;
    }
    
    .product:hover{
      border: none;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
      transform: scale(1.01);
    }
    
    .product > img{
      width: 300px;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }
    
    .product > img:hover{
      transform: scale(1.04);
    }
    
    .product-info{
      padding: 20px;
      width: 100%;
      position: relative;
      font-family: 'Questrial';
    
    }

    .product-info h3{
      font-family: 'Questrial';
      width: 80%;
    }

    .product-info h4{
      font-family: 'Questrial';
      margin-top: 5px;
    }

    .product-info p{
      font-family: 'Questrial';
    }
    
    .product-name, .product-price, .product-offer{
      margin-bottom: 10px;
    }
    
    .product-remove{
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 10px 20px;
      background-color: #000000;
      color: white;
      cursor: pointer;
      border-radius: 5px;
      font-family: 'Questrial';
      font-size: 14px;
    }
    
    .product-remove:hover{
      background-color: white;
      color: #000000;
      font-weight: 600;
      border: 1px solid #000000;
    
    }

    .product-remove span { font-family: 'Questrial';}

    .product-quantity {
      font-family: 'Questrial';
    }
    
    .product-quantity > input{
      width: 40px;
      padding: 5px;
      text-align: center;
      font-family: 'Questrial';
      
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
    
    .fa{
      margin-right: 5px;
    }

    /*Cart Option*/
    .cart_options{
      width: 100%;
      display: flex;
      align-items: center;
      margin-top: 10px;
      overflow-x: auto;
  }

    .cart_option_card{
      background-color: #d3d3d3;
      border-radius: 5px;
      width:auto;
      margin-right: 10px;
    }

    .cart_option_card h5{
      font-size: 14px;
      text-align: left;
      font-family: 'Questrial';
      color: #000000;
      padding-left: 10px;
      padding-right: 10px;
      padding-top: 5px;
      padding-bottom: 5px;
    }
    
    .cart-total{
      flex: 0.25;
      margin-left: 20px;
      padding: 20px;
      height: 200px;
      border: none;
      border-radius: 5px;
    
    }
    
    .cart-total p{
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-size: 18px;
      font-family: 'Questrial';
    }

    .cart-total hr{
      margin-bottom: 10px;
      
    }
    
    .cart-total a{
      display: block;
      text-align: center;
      height: 40px;
      line-height: 40px;
      background-color: #000000;
      color: white;
      text-decoration: none;
      font-family: 'Questrial';
      border-radius: 5px;
    }
    
    .cart-total a:hover{
      background-color: #000000;
    }

    /*Checkout*/
    .checkout{
      flex: 0.75;
      border-radius: 10px;
      border: none;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
      margin-bottom: 20px;
      padding: 20px;
    }

    .checkout .checkout_option_view{
      width: fit-content;
      
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 10px;
      position: relative;
      margin-bottom: 20px;
      
    }

    .checkout_option{
      width:150px;
      height: fit-content;
      border-radius: 10px;
      background-color: #e2e2e2;
      cursor: pointer;
      padding: 10px;
      align-items: center;
    }

    .checkout_option h3{
      width: fit-content;
      font-family: 'Questrial';
      font-size: 14px;
      margin-bottom: 10px;
    }

    .checkout_option i{
      width: fit-content;
      align-items: center;
      margin: 10px auto;
      object-fit: fill;
    }

    .checkout_option h4{
      width: fit-content;
      align-items: center;
      margin: 10px auto;
      font-family: 'Questrial';
    }

    #checked_option{
      background-color: #000000;
    }

    #checked_option h4{
      color: #ffffff;
    }

    #checked_option i{
      color: #ffffff;
    }

    .checkout .checkout_address select{
      width: 50%;
      border-radius:5px;
    }

    .checkout-input input {
      width:50%;
      padding:5px;
      font-size:14px;
      margin: 5px, 0px;
      border-radius:5px;
      box-sizing:border-box;
      border:1px solid #222;
      background:#ffffff;
      font-family: 'Questrial';

    }

    .address-add{
      margin-top: 10px;
      margin-right: 10px;
      padding: 10px 20px;
      background-color: #000000;
      color: white;
      cursor: pointer;
      border-radius: 5px;
      font-family: 'Questrial';
      font-size: 14px;
      width: fit-content;
      margin-bottom: 20px;
    }
    
    .address-add:hover{
      background-color: white;
      color: #000000;
      font-weight: 600;
      border: 1px solid #000000;
    
    }

    .address-add span { font-family: 'Questrial';}
    
    @media screen and (max-width: 700px){
    
      .remove{
    
        display: none;
    
      }
    
      .product{
    
        height: 150px;
    
      }
    
      .product > img{
    
        height: 150px;
    
        width: 200px;
    
      }
    
      .product-name, .product-price, .product-offer{
    
        margin-bottom: 10px;
    
      }
    
    }
    
    @media screen and (max-width: 900px){
    
      .cart{
    
        flex-direction: column;
    
      }
    
      .cart-total{
    
        margin-left: 0;
    
        margin-bottom: 20px;
    
      }
    
    }
    
    @media screen and (max-width: 1220px){
    
      .container{
    
        max-width: 95%;
    
      }
    
    }
  
  @media only screen and (max-width:768px) {

    .view_product {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .container {
      width: 100%;
      margin: auto;
      height: auto;
    }
  
    .left, .right {
      width: 100%;
    }

    .right {
        padding: 10px 10px 10px 10px;
    }
  
    .container {
      flex-direction: column;
    }
  }
  
  @media only screen and (max-width:511px) {
    .view_product {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .container {
      width: 98%;
      height: auto;
      box-shadow: 5px 5px 15px 13px rgba(0, 0, 0, 0);
    }

    .cart_container{
      max-width: 1200px;
      margin-left: 10px;
      margin-right: 10px;
      padding-top: 100px;
      box-shadow: 5px 5px 15px 13px rgba(0, 0, 0, 0);

    }
  
    .left, .right {
      padding: 0;
    }

    
  
    .view_product .container .right .main_image img {
      width: 100%;
      height: 100%;
    }
  
    .option {
      display: flex;
      flex-wrap: wrap;
    }
  }

/*For tablets to pcs*/
@media only screen and (min-width: 650px) {
    .bottom-nav {
        display: none;
    }

    section nav ul{
        display: flex;
    }

    section .mobile-main{
        display: none;
    }

    section nav .icon{
        display: flex;
    }

    section .desktop-main{
        display: flex;
    }

    section nav .mobile_icon{
        display: none;
    }

    .float_cart {
        display: none;
    }

    /*Recommended*/

    #first_product {
        margin-left: 40px;
    }

    #last_product {
        margin-right: 40px;
    }

    .menu h1{
        font-size: 28xp;
    }

    /*Product List*/

    #product-list{
        grid-template-columns: 1fr 1fr;
        width: 90%;
        
    }

    #product-list .menu_card{
        min-width: 260px;
    }

    #product-list .menu_card .menu_image{
        height: 230px;
    }
    
    #product-list .menu_card .small_card{
        top: -230px;
        right: 10px;
    }
    
    #product-list .menu_card:hover .small_card{
        top: -230px;
        right: 10px;
    }

    /*Category*/

    .category h1{
        font-size: 28xp;
    }

    .category .category_image_box{
        width: 90%;
        grid-gap: 20px;
    }

    .category .category_image_box .category_image h3{
        font-size: 28px;
    }

    /*Footer*/

    footer .footer_main .footer_tag h2{
        font-size: 30px;
    }

    footer{
        margin-bottom: 0px;
        background: #eeeeee;
    }

}

@media only screen and (min-width: 800px) {
    .bottom-nav {
        display: none;
    }

    section nav ul{
        display: flex;
    }

    section .mobile-main{
        display: none;
    }

    section nav .icon{
        display: flex;
    }

    section .desktop-main{
        display: flex;
    }

    section nav .mobile_icon{
        display: none;
    }

    .float_cart {
        display: none;
    }

    /*Recommended*/

    #first_product {
        margin-left: 40px;
    }

    #last_product {
        margin-right: 40px;
    }

    .menu h1{
        font-size: 28xp;
    }

    /*Product List*/

    #product-list{
        grid-template-columns: 1fr 1fr 1fr;
        width: 90%;
        
    }

    #product-list .menu_card{
        min-width: 260px;
    }

    #product-list .menu_card .menu_image{
        height: 220px;
    }
    
    #product-list .menu_card .small_card{
        top: -220px;
        right: 10px;
    }
    
    #product-list .menu_card:hover .small_card{
        top: -220px;
        right: 10px;
    }

    /*Category*/

    .category h1{
        font-size: 28xp;
    }

    .category .category_image_box{
        width: 90%;
        grid-gap: 20px;
    }

    .category .category_image_box .category_image h3{
        font-size: 28px;
    }

    /*Footer*/

    footer .footer_main .footer_tag h2{
        font-size: 30px;
    }

    footer{
        margin-bottom: 0px;
        background: #eeeeee;
    }


}

