* {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
:root {
    --mainColor: #FEB800;
    --mainColorDark: #391804;
    --mainColorBG:rgba(254,184,0, .2);
    --secondaryColor: #461F07;
    --instagram: #e95950;
    --tiktok: black;
    --phone: #5BC236;
    --bgColor: #F7F9F8;
    --bgSecondaryColor:#333;
    --white: #ffffff;
    --black: #000000;
    --darkGray:#222222;
}
html {
    scroll-behavior: smooth;
    width: 100%;
}
body {
    width: 100%;
}
.wrapper {
    max-width: 767px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.go_top_btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    display: flex;align-items: center;justify-content: center;
    color: var(--white);
    border-radius: 50%;
    padding: 10px;
    background: var(--mainColor);
    font-size: 23px;
    box-shadow: 0px 10px 20px var(--mainColorBG);
    opacity: 0;
    visibility: hidden;
    transition: 200ms;
    z-index: 999;
}
.go_top_btn.go_top_btn_active {
    opacity: 1;
    visibility: visible;
}
main {
    width: 100%;
}
main .category:nth-child(1) {
    margin: -20px 0px 0px 0px;
}
.main_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px 0px 0px;
}
.container {
    width: 95%;
    margin: 0 auto;
}
.h1 {
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    background: var(--mainColorBG);
    color: var(--mainColor);
    padding: 10px 20px;
    border-radius: 30px;
}
.h2 {
    font-weight: 600;
    border-bottom: 2px dashed var(--mainColor);
    font-size: 18px;
    padding: 5px 0px;
    text-transform: uppercase;
    text-align: center;
}
.logo {
    width: 80%;
    max-width: 250px;
    margin: 40px 0px 40px 0px;
}
.logo img {
    width: 100%;
}
.language_select, .language_select li {
    width: 93%;
    margin: 0 auto;
    max-width: 350px;
}
.language_select a{
    display: block;
    width: 100%;
    text-align: center;
    margin: 20px 0px;
    padding: 12px;
    border-radius: 50px;
    /* border: 2px solid var(--mainColor); */
    font-weight: 600;
    background: var(--mainColor);
    color: var(--white);
}
.socials {
    display: flex;
}
.socials li a {
    display: inline-block;
    font-size: 20px;
    color: var(--mainColor);
    margin: 10px 10px 0px 10px;
}

.footer {
    width: 100%;
}
.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0px 50px 0px;
}
.footer_info {
    margin: 20px 0px 0px 0px;
}
.footer_info *{
    text-align: center;
    color: var(--black);
}
.footer_info_link {
    color: var(--black);
    font-weight: 500;
}
.footer_info h4 {
    color: var(--mainColor);
    font-size: 14px;
    font-weight: 500;
    margin: 0px 0px 5px 0px;
}
.footer_info a, .footer_info h3 {
    font-size: 18px;
}






/* FODD PAGE CSS */

nav {
    width: 100%;
    padding: 20px 0px;
    background: var(--white);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    height: 60px;
    overflow: hidden;
}
.nav_container {
    display: flex;
    justify-content: space-between;
}
nav a {
    display: inline-block;
}
.round_btn, .back_btn button {
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: flex;align-items: center;justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    background: var(--mainColor);
    color: var(--white);
    outline: none;
    border: none;
    margin: 0px 0px 0px 5px;
}
.language_btn {
    background: var(--mainColor) !important;
    color: var(--white) !important;
    font-size: 14px;
    height: 40px;
    padding: 0px 20px;
    border-radius: 50px;
    cursor: pointer;
    outline: none !important;
    border: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}
.nav_items {
    display: flex;
    align-items: center;
}

.banner {
    width: 100%;
    margin: 20px 0px;
}
.banner_img {
    background: var(--mainColorBG);
    border-radius: 15px;
    overflow: hidden;
    display: flex;align-items: center;justify-content: center;
}
.banner_img img {
    width: 100%;
    border-radius: 15px;
}
.categories {
    width: 100%;
    margin: 10px 0px 0px 0px;
    position: sticky;
    top: 0px;
    background: var(--white);
    z-index: 1000;
}
.category {
    /* display: flex;
    flex-direction: column; */
    padding: 50px 0px 0px 0px;
}
.categories .container {
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.categories_list {
    display: flex;
    overflow-x: auto;
}
.categories_list::-webkit-scrollbar {
    display: none;
  }
.categories_list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.categories_list li a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bgColor);
    color: var(--black);
    white-space: nowrap;
    margin: 0px 10px 0px 0px;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: 200ms;
}
.categories_list li a.active {
    background: var(--mainColor);
    color: var(--white);
}
.category_heading {
    padding: 0px 15px;
    color: var(--mainColorDark);
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0px;

    /* display: inline-block;
    text-align: center;
    background: var(--mainColorBG);
    color: var(--mainColor);
    padding: 10px 20px;
    border-radius: 50px; */
}
.boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 10px;
}
.box {
    width: calc(100%/3);
    padding: 5px;
}
.box_description {
    display: none;
}
.box_img_container {
    width: 100%;
    margin: 0px 0px -5px 0px;
}
.box_img_container img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
}
.box_text {
    overflow: hidden;
    border-radius: 0px 0px 10px 10px;
    background: #f0f0f0;
    padding: 15px 10px;
    min-height: 125px;
    display: flex;
    flex-direction: column;
}
.box_name {
    font-size: 17px;
    font-weight: 600;
    color: var(--darkGray);
}
.box_category {
    color: var(--darkGray);
    opacity: .8;
    font-size: 13px;
    margin: 2px 0px 5px 0px;
    font-weight: 400;
}
.box_price {
    font-weight: 600;
    font-size: 16px;
    margin: auto 0px 0px 0px;
    color: var(--darkGray);
}
.popup {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 0px 30px 0px;
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
}
.popup_box {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 20px 50px rgba(0,0,0,.5);
}
.popup .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup_box_img {
    width: 100%;
    margin: 0px 0px -4px 0px;
}
.popup_box_img img{
    width: 100%;
}
.popup_box_text {
    width: 100%;
    min-height: 100px;
    padding: 30px 25px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.popup_box_text h3 {
    font-size: 20px;
}
.popup_description {
    margin: 10px 0px 25px 0px;
    font-size: 14px;
    font-weight: 400px;
}
.popup_box_text h4 {
    font-size: 14px;
    font-weight: 400;
    margin: 3px 0px 2px 0px;
}
.popup_price {
    margin: auto 0px 0px 0px;
}
.popup_close_btn {
    display: inline-block;
    cursor: pointer;
    padding: 6px 20px;
    border-radius: 40px;
    border: 1px solid var(--black);
    color: var(--black);
    font-size: 14px;
    margin: 25px 0px 0px 0px;
}
.popup_close_round_btn {
    width: 40px;
    cursor: pointer;
    height: 40px;
    border-radius: 50%;
    background: var(--mainColor);
    color: var(--white);
    display: flex;
    align-items: center;justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
}
.info_popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    visibility: hidden;
    opacity: 0;
    transition: 300ms;
    background: var(--white);
    z-index: 10000;
}
.info_popup_container {
    height: 100%;
}
.info_popup.info_active {
    visibility: visible;
    right: 0;
    opacity: 1;
}
.info_popup_content {
    margin: 10px 0px 0px 0px;
    height: 100%;
}
.info_popup_content h3 , .info_popup_content a {
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0px;
    max-width: 90%;
    color: var(--mainColorDark);
    /* display: flex;align-items: center; */
    vertical-align: middle;
}
.info_popup_content i {
    font-size: 20px;
    color: var(--mainColor);
    margin: 0px 5px 0px 0px;
}
.info_popup_powered {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}
.info_popup_powered h4 a{
    font-size: 14px;
    font-weight: 400;
}
footer {
    width: 100%;
    padding: 25px 0px;
    border-top: 1px solid rgba(0,0,0,.1);
}
.powered a {
    display: block;
    text-align: center;
    color: var(--black);
    font-weight: 500;
    text-align: center;
    transition: 300ms;
}
.powered:hover {
    letter-spacing: 0.5px;
}
@media(max-width:500px) {
    .box {
        width: calc(100%/2);
    }
}
@media(max-width:300px) {
    .box {
        width: calc(100%/1);
    }
}