/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  
  /*========== Colors ==========*/
  --title-color: #393939;
  --text-color: #707070;
  --text-color-light: #A6A6A6;
/*   --body-color: #FBFEFD; */
/*   --body-color: #fbfbfb; */
/* --body-color: #f0f1f6; */
--body-color: #F2F1F5;
  --container-color: #FFFFFF;
  --image-filter: none;
  --light-heavy-grey: #e9e9e9;
  --light-heavy-black: #000000;
/*   --box-shadow: 0 2px 4px rgba(3,74,40,.35); */
  --box-shadow: 0 2px 8px rgba(186, 186, 186, 0.35);
  --filter-shadow: 0 2px 8px rgba(186, 186, 186, 0.35);
  --cart-shadow: 0 -2px 8px rgba(186, 186, 186, 0.35);
  
  --border-divider: rgb(230, 230, 230);
/*   button colors normal & focus */
  --button-normal: #d8d8d8;
  --button-focus: #a7a7a7;
  
  --cart-bt-bg-disabled: #eeeeee;
  --cart-bt-font-disabled: #acacac;
  

  /*========== Font and typography ==========*/
/*   --body-font: 'Poppins', sans-serif; */
/*   --body-font: 'Roboto Condensed', sans-serif; */
/*   --body-font: 'Manrope', sans-serif; */
/*   --body-font: 'Literata', serif; */
  
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


 /*========== Themes ==========*/
 
 .uiType-box {
	 
 }
 
 uiType-line {
	--body-color: #ffffff;
 }
 
 .uiTheme-green {
  	--selection_background: rgba(175, 235, 180, 1);
  	--first-color: #069C54;
  	--first-color-alt: #03743e;
  	--second-color: #06c76c;
  	--second-color-alt: #037641;
  }
  
.uiTheme-blue {
  	--selection_background: rgba(196, 228, 245, 1);
  	--first-color: #009DE0;
  	--first-color-alt: #0074a6;
  	--second-color: #00c2ff;
  	--second-color-alt: #0088b4;
}

.uiTheme-mono {
  	--selection_background: rgba(218, 218, 218, 1);
  	--first-color: grey;
  	--first-color-alt: #505050;
  	--second-color: #a8a8a8;
  	--second-color-alt: #565656;
}

/*
.uiTheme-orange {
	--selection_background: #fff292;
	--first-color: orange;
	--first-color-alt: #ac6f01;
	--second-color: #f3cd07;
	--second-color-alt: #b99c05;
}
*/

.uiTheme-orange {
	--selection_background: rgba(247, 206, 132, 1);
	--first-color: orange;
	--first-color-alt: #ac6f01;
	--second-color: rgba(255, 165, 0, 0.46);
	--second-color-alt: #b99c05;
}

.uiTheme-gold {
	--selection_background: #EAD78F;
/* 	--selection_background: #FFFFFF; */
	--first-color: #B5A56D;
	--first-color-alt: #8B7E4D;
	--second-color: rgba(215, 195, 120, 0.46);
	--second-color-alt: #8B7E4D;
	--border-color: rgba(215, 195, 120, 0.44);
	--hover-color: rgba(215, 195, 120, 0.26);
}

.uiTheme-purple {
	--selection_background: #E3C4FF;
/* 	--selection_background: #FFFFFF; */
	--first-color: #A238FF;
	--first-color-alt: #65239F;
	--second-color: rgba(206, 152, 255, 0.46);
	--second-color-alt: #65239F;
}

.boxTheme-round {
	--content-border-radius: .5rem;
	--button-border-radius: .5rem 0 .5rem 0;
	--button2-border-radius: 0 0 .5rem 0;
	--buttonMinus-border-radius: .5rem 0 0 0;
	--filter-tab-radius: .5rem;
}

.boxTheme-roundall {
	--content-border-radius: .5rem;
	--button-border-radius: .5rem;
	--button2-border-radius: 0 .5rem .5rem 0;
	--buttonMinus-border-radius: .5rem 0 0 .5rem;
	--filter-tab-radius: .5rem;
}

.boxTheme-roundone {
	--content-border-radius: 0 0 .5rem 0;
	--button-border-radius: 0 0 .5rem 0;
	--button2-border-radius: 0 0 .5rem 0;
	--buttonMinus-border-radius: 0;
	--filter-tab-radius: 0 0 .5rem 0;
}

.boxTheme-square {
	--content-border-radius: 0;
	--button-border-radius: 0;
	--button2-border-radius: 0;
	--buttonMinus-border-radius: 0;
	--filter-tab-radius: 0;
}


@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*,::before,::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme{
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;

  --body-color: #000000;
  --container-color: #1b1d1b;
  --image-filter: invert();
  --light-heavy-grey: #797979;
  --light-heavy-black: #e1e1e1;

  --box-shadow: 0 0 0 rgba(0,0,0,1);
/*   --filter-shadow: 0 2px 8px rgba(121, 121, 121, 0.35); */
  --filter-shadow: 0 0 0 rgba(0, 0, 0, 0.35);
  --cart-shadow: 0 0 0 rgba(0, 0, 0, 0.35);
/*   --border-divider: #4a4a4a; */
  --border-divider: #444844;
  
  /*   button colors normal & focus */
  --button-normal: rgb(129,129,129);
  --button-focus: #a7a7a7;
  
  --cart-bt-bg-disabled: #3c3c3c;
  --cart-bt-font-disabled: #707070;
}

body.dark-theme.uiTheme-green {
  --selection_background: rgba(4, 80, 11, 1);
}

body.dark-theme.uiTheme-blue {
  --selection_background: rgba(28, 85, 116, 1);
}

body.dark-theme.uiTheme-mono {
  --selection_background: rgba(80, 80, 80, 1);
}
body.dark-theme.uiTheme-orange {
  --selection_background: rgba(130, 86, 7, 1);
}
body.dark-theme.uiTheme-gold {
  --selection_background: #786C3E;
/*   --selection_background: #1b1d1b; */
}
body.dark-theme.uiTheme-purple {
  --selection_background: #A74FF8;
/*   --selection_background: #1b1d1b; */
}


/*========== Button Dark/Light ==========*/
.change-theme{
  position: flex;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,h2,h3,p,ul{
  margin: 0;
}

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

a{
  text-decoration: none;
  color: rgb(94, 94, 94);
}

img{
  max-width: 100%;
  height: auto;
}

.logo {
/* 	filter: var(--image-filter); */
}

/*========== CLASS CSS ==========*/
.section{
  padding: 4rem 0 2rem;
  padding-top: 20px;
}

/*==== CATEGORIES ====*/

.section-title, .section-subtitle{
  text-align: center;
}

.section-title{
  font-size: var(--h1-font-size);
  color: var(--title-color);
/*   margin-bottom: var(--mb-3); */
  margin-top: 30px;
  padding-top: 10px;
}

.section-subtitle{
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
/*
  margin-top: 30px;
  padding-top: 22px;
*/
}


/*==== GROUPS ====*/

.group-title, .group-subtitle{
  text-align: center;
}

.group-title{
  font-size: var(--h1-font-size);
  color: var(--title-color);
/*   margin-bottom: var(--mb-3); */
  margin-top: 10px;
/*   padding-top: 12px; */
}

.group-subtitle{
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
  font-size: xx-small;
/*
  margin-top: 30px;
  padding-top: 22px;
*/
}

.group__container {
  
  margin-bottom: 10px;
  
/*   padding: 10px 20px; /* Add some padding inside */
  text-align: center; /* Center-align the text */
  border-radius: 12px; /* Rounded corners */
  border: 1px solid var(--border-color);; /* Transparent border that can change on hover */
  cursor: pointer; /* Change cursor to pointer to indicate it's clickable */
  transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effects */
}

.group__container:hover, .group__container:focus {
  background-color: var(--hover-color);
}




/*========== LAYOUT ==========*/
.bd-container{
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid{
  display: grid;
  gap: 1rem;
}

.l-header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
/*   background-color: var(--container-color); */
/*   box-shadow: var(--box-shadow); */
/*   border-bottom: 1px solid var(--border-divider); */
}

/*========== NAV ==========*/
.nav{
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
.middle-item {
  margin: 0 auto; /* this will center the middle item horizontally */
/* } */


/* iOS-style back button */
.nav__back-btn {
	display: flex;
  align-items: center;
  background: transparent; /* iOS-like transparent background */
  border: none;
  color: var(--title-color); /* Use your theme color or default color */
  font-size: 1rem;
  cursor: pointer;
  padding: 0px;
  font-family: var(--body-font);
/*   font-weight: bold; */
}

.nav__back-btn i {
  font-size: 2rem; /* Size of the chevron */
  margin-right: 0px; /* Spacing between chevron and text */
}

.nav__back-btn:disabled {
/*   visibility: hidden; */

}

.nav__back-btn span {
  font-size: var(--normal-font-size);
}

/*
.nav__name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--title-color);
  text-decoration: none;
}
*/

.nav__name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--title-color);
  text-decoration: none;
  white-space: nowrap; /* Prevent the name from wrapping to the next line */
  overflow: hidden; /* Hide any overflow content */
  text-overflow: ellipsis; /* Add ellipsis (...) if the text is too long */
}

/*
.nav__language-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
}
*/

/* Optional: Make sure the back button and language menu don't overlap the centered navName */
.nav__back-btn,
.nav__language-menu {
  z-index: 1;
}

@media screen and (max-width: 768px){
  .nav__menu{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0,0,0,.1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}

.nav__item{
  margin-bottom: var(--mb-2);
}

.nav__link, .nav__logo, .nav__toggle{
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.nav__logo {
	display: flex !important;
}

.nav__logo:hover{
  color: var(--first-color);
}

.nav__link{
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

.nav__toggle{
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu{
  top: var(--header-height);
}

/* Active menu */
.active-link{
  color: var(--first-color);
}

/* Change background header */
.scroll-header{
/*   box-shadow: 0 2px 4px rgba(0,0,0,.1); */
  border-bottom: 0.7px solid var(--border-divider);
}

/* Scroll top */
.scrolltop{
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
/*   background: rgba(6,156,84,.5); */
  background: rgba(162, 162, 162, .5);
  border-radius: var(--filter-tab-radius);
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover{
  background-color: var(--first-color-alt);
}

.scrolltop__icon{
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show scrolltop */
.show-scroll{
/*   visibility: visible; */
  visibility: hidden;
  bottom: 1.5rem;
}

/* Reload Page */
.reload-page {
  position: fixed;
  left: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: rgba(162, 162, 162, .5);
  border-radius: var(--filter-tab-radius);
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.reload-page:hover {
  background-color: var(--first-color-alt);
}

.reload-page__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show Reload Page */
.show-reload {
  visibility: visible;
  bottom: 1.5rem;
}


/* POPUP MESSAGE */
#popup-message {
  position: fixed;
  top: 70px;
  right: 30px;
  background-color: var(--container-color);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  display: none;
  z-index: 100;
}

#popup-message::before {
  top: -15px;
  bottom: auto;
  left: auto;
  right: 15px;
  border-width: 0 14px 14px;
  
  content: "";
  position: absolute;
  border-style: solid;
  border-color: #ccc transparent;
  display: block;
  width: 0;
}

#popup-message::after {
  top: -14px;
  bottom: auto;
  left: auto;
  right: 15px;
  border-width: 0 14px 14px;

  content: "";
  position: absolute;
  border-style: solid;
  border-color: var(--container-color) transparent;
  display: block;
  width: 0;
}

.defaultLangTextInPopup {
	font-size: x-small;
}


/* =========== DARK THEME BUTTON =========== */
/* Reload Page */
.dark-theme-button {
  position: fixed;
/*   left: 1rem; */
  top: 120px;
/*   display: flex; */
  justify-content: center;
  align-items: center;
/*   padding: .3rem; */
  background: var(--container-color);
  border-radius: 0 .5rem .5rem 0;
  z-index: 10;
  visibility: visible;
  box-shadow: var(--box-shadow);
}

/*
.dark-theme-button:hover {
  background-color: var(--first-color-alt);
}
*/


/* =========== SUBMENU BUTTON =========== */
.submenu-button {
  position: fixed;
  right: 0px;
  top: 120px;
/*   display: flex; */
  justify-content: center;
  align-items: center;
/*   background: var(--container-color); */
  border-radius: .5rem 0 0 .5rem;
  z-index: 10;
  visibility: visible;
  box-shadow: var(--box-shadow);
  
  

  background: rgb(94, 94, 94);
/*   color: var(--text-color); */
  color: #ffffff;
  z-index: 10;
  font-size: small;
  font-weight: 700;
  cursor: pointer;
}

/*
.dark-theme-button:hover {
  background-color: var(--first-color-alt);
}
*/

/*========== HOME ==========*/
.home__container{
  height: calc(100vh - var(--header-height));
  align-content: center;
}

.home__title{
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.home__subtitle{
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-4);
}

.home__img{
  width: 300px;
  justify-self: center;
}

/*========== BUTTONS ==========*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: var(--filter-tab-radius);
  transition: .3s;
}

.button:hover{
  background-color: var(--first-color-alt);
}

.button__alt{
  display: inline-block;
  background-color: var(--second-color);
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: .3s;
}

.button__alt:hover{
  background-color: var(--second-color-alt);
}

/*========== INPUT FIELDS ====*/

.form__input{
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: var(--container-color);
  border-radius: var(--filter-tab-radius);
  border-width: thin;
  border-style: solid;
/*   border-color: var(--border-divider); */
  border-color: var(--container-color);
/*   box-shadow: 0 2px 4px rgba(3,74,40,.35); */
  box-shadow: var(--box-shadow);
  padding: .45rem;
  margin-bottom: .35rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--title-color);
  width: 100%;
  font-family: var(--body-font);
  resize: none;
}


/*========== ABOUT ==========*/
.about__data{
  text-align: center;
}

.about__description{
  margin-bottom: var(--mb-3);
}

.about__img{
  width: 280px;
  border-radius: .5rem;
  justify-self: center;
}

/*========== TOP ==========*/
.top__container{
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.top__content{
  text-align: center;
}

.top__img{
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}

.top__title{
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.top__description{
  padding: 0 1.5rem;
}

.top__section {
	max-width: 1024px;
	margin-left: auto;
	  margin-right: auto;
}

/*========== BUTTONS CHECKOUT ========*/

.buttons__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal width columns */
    column-gap: 10px;
    row-gap: 10px;
}

.button__checkout {
    display: grid;
    background-color: var(--first-color);
    color: #FFF;
    border-radius: var(--filter-tab-radius);
    padding: .75rem 0 .75rem 0;
    transition: .3s;
    margin-bottom: 4px;
    width: 100%;
    text-align: center;
}

/* If you want specific styling for each button, you can use nth-child selector */
.button__checkout:nth-child(odd) {
    background-color: /* odd button background color */;
}

.button__checkout:nth-child(even) {
    background-color: /* even button background color */;
}

.button__checkout:hover{
  background-color: var(--first-color-alt);
}

/*========== MENU ==========*/
.menu__container{
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
}

.menu__content{
  position: relative;
  display: flex;
/*   flex-direction: column; */
  flex-direction: row;
  background-color: var(--container-color);
  border-radius: var(--content-border-radius);
/*   padding: .75rem; */
	padding: 6px;
}

/* .menu__content::selection{ */
.menu__content_selection{	
  position: relative;
  display: flex;
/*   flex-direction: column; */
  flex-direction: row;
  border-radius: var(--content-border-radius);
  border-left: 5px solid var(--first-color);
/*   padding: .75rem; */
  padding: 6px;
  background-color: var(--selection_background);
}

.menu__content, 
.menu__content_selection { 
  box-shadow: var(--box-shadow);
}



.menu__img{
  width: 100px;
  height: 100px;
  align-self: center;
/*   margin-bottom: var(--mb-2); */
  margin-right: 10px;
/*   border-radius: 6px; */
  border-radius: var(--filter-tab-radius);
}

.menu__text{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.menu__name{
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--normal-font-size);
}

.menu__detail{
/*   margin-bottom: var(--mb-1); */
  font-size: var(--small-font-size);
}

.menu__price{
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--normal-font-size);
}

.menu__button{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: var(--button-border-radius);
  cursor: pointer;
}

.menu__button__2{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: var(--button2-border-radius);
  cursor: pointer;
}

.menu__button__minus{
  position: absolute;
  bottom: 0;
  right: 41px;
  display: flex;
  padding: .625rem .813rem;
  border-radius: var(--buttonMinus-border-radius);
  cursor: pointer;
}

/*========= MENU CONTAINER ==========*/
.menu__item-container {
  display: flex;
  flex-direction: row;
/*   flex-grow: 1; */
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Ensures the container takes full width */
}

/*
.menu__item-container .menu__name, .menu__item-container .menu__price {
  display: inline-flex;
  align-items: center;
}

.menu__item-container .menu__price {
  white-space: nowrap;
  margin-left: 4px;
}
*/
.menu__item-container .menu__name {
  flex: 1; /* Allows the name to take up available space, pushing the price to the right */
  text-align: left; /* Ensures text within the name is aligned to the left */
}

.menu__item-container .menu__price {
  white-space: nowrap; /* Prevents wrapping, ensuring price and quantity stay on the same line */
  text-align: right; /* Ensures text within the price is aligned to the right */
  margin-left: 4px;
}




/*========== APP ==========*/
.app__data{
  text-align: center;
}

.app__description{
  margin-bottom: var(--mb-5);
}

.app__stores{
  margin-bottom: var(--mb-4);
}

.app__store{
  width: 120px;
  margin: 0 var(--mb-1);
}

.app__img{
  width: 230px;
  justify-self: center;
}

/*========== CONTACT ==========*/
.contact__container{
  text-align: center;
}

.contact__description{
  margin-bottom: var(--mb-3);
}

/*========== FOOTER ==========*/
.footer__container{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo{
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description{
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social{
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}

.footer__title{
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link{
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover{
  color: var(--first-color);
}

.footer__copy{
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

/*========== HR =====================*/

.divider {	
	border: 0.7px solid var(--border-divider);
	width: 100%;
}

hr {	
	border: 0.7px solid var(--border-divider);
}

/*========== Language Selector ===========*/

.language-selector {
  position: relative;
   display: flex;
  cursor: pointer;
/*   background-color: #fff; */
  border-radius: .2rem;
  
/*
  position: fixed;
  top: 80px;
  left: 0;
  background-color: #ffffff;
  color: #333;
  width: 50px;
  height: 40px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 0 .5rem .5rem 0;
  z-index: 10;
*/

}

.selected-language {
  display: flex;
  align-items: center;
}

.language-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
/*   background-color: var(--container-color); */
  background-color: var(--body-color);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
  border-radius: var(--content-border-radius);
}

.language-options li {
	
  padding: 10px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 44px; /* adjust this value to your desired height */
  width: 50px; /* make the li elements as wide as their parent container */
}

.language-options img {
/* 	background-color: #fff; */
	border-radius: .2rem;
}

.language-selector img {
/* 	background-color: #fff; */
	border-radius: .2rem;
	width: 28px;
	height: 20px;
}

/*
.language-selector:hover .language-options {
  display: block;
}
*/

.show {
  display: block;
}


/* ============ FILTER ================ */

.scrollfilter {
  background-color: var(--body-color);
  overflow: auto;
  white-space: nowrap;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 10;
  
  scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.scrollfilter::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

/* index.js */
/*
.fixedfilter {
  position: fixed;
  overflow: auto;
  white-space: nowrap;
  top: 44px;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  padding-left: 16px;
}
*/

.fixedfilter {
	padding-bottom: 5px !important;
}

.scrollfilter a {
  display: inline-block;
  text-align: center;
  padding: 4px 14px 4px 14px;
  text-decoration: none;#00fbfe
  background-color: rgba(0, 251, 255, 0.83);
  border-radius: var(--filter-tab-radius);
}

.scrollfilter .active{
  background-color: var(--selection_background);
}

/*
.scrollfilter a:hover {
  	background-color: var(--first-color);
  	color: #fff !important;
}
*/

.scrollfilter_tab {
	font-weight: var(--font-semi-bold);
 	color: var(--title-color);

	font-size: var(--normal-font-size);
}

.menu_disclaimer_text {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 10px;
}


.order_page_button {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

/* scroll behaviour */
:target::before {
  content: "";
  display: block;
  height: 170px; /* same height as fixed header */
  margin: -170px 0 0; /* negative value of the same height */
}



/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px){
  .home__container,
  .about__container,
  .app__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .about__data, .about__initial,
  .app__data, .app__initial,
  .contact__container, .contact__initial{
    text-align: initial;
  }

  .about__img, .app__img{
    width: 380px;
    order: -1;
  }

  .contact__container{
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }
  .contact__button{
    justify-self: center;
  }
}

/* @media screen and (min-width: 768px){ */
@media screen and (min-width: 658px){
  body{
    margin: 0;
  }

  .section{
    padding-top: 4rem;
  }

  .nav{
/*     height: calc(var(--header-height) + 1.5rem); */
  }
  .nav__list{
    display: flex;
  }
  .nav__item{
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }

  .change-theme{
    position: initial;
/*     margin-left: var(--mb-2); */
  }

  .home__container{
    height: 100vh;
    justify-items: center;
  }

  .top__container,
  .menu__container{
    margin-top: var(--mb-3);
  }

/*
  .menu__container{
    grid-template-columns: repeat(1, 500px);
    column-gap: 4rem;
  }
*/

  .menu__container{
/*     grid-template-columns: repeat(2, auto); */
    grid-template-columns: repeat(2, 50%);
/*     column-gap: 2rem; */
  }
  
  .menu__content{
/*     padding: 1.5rem; */
  }
  .menu__img{
    width: 130px;
    height: 130px;
  }

  .app__store{
    margin: 0 var(--mb-1) 0 0;
  }
}

@media screen and (min-width: 960px){
  .bd-container{
    margin-left: auto;
    margin-right: auto;
  }

  .home__img{
    width: 500px;
  }

  .about__container,
  .app__container{
    column-gap: 7rem;
  }
  
  .plans-img {
	max-width: 600px;
	height: auto;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
    .home__container {
        height: 640px;
    }
}








/* =========== DEMO BUTTON =========== */
.demo-button {
  position: fixed;
  top: 170px;
  left: 0;
  border-radius: 0 .5rem .5rem 0;
/*
  top: 100px;
  right: 0;
  border-radius: .5rem 0 0 .5rem;
*/
  justify-content: center;
  align-items: center;
/*   background: var(--container-color) ; */
/*   background: rgb(28, 97, 231); */
  background: rgb(94, 94, 94);
/*   color: var(--text-color); */
  color: #ffffff;
  z-index: 10;
  visibility: visible;
  box-shadow: var(--box-shadow);
  font-size: small;
  font-weight: 700;
  cursor: pointer;
}
/* =========== DEMO BUTTON =========== */

/* =========== INFO BUTTON =========== */
.info-button {
  position: fixed;
  top: 300px;
  left: 0;
  border-radius: 0 .5rem .5rem 0;
/*
  top: 225px;
  right: 0;
  border-radius: .5rem 0 0 .5rem;
*/
  justify-content: center;
  align-items: center;
/*   background: var(--container-color) ; */
/*   background: rgb(28, 97, 231); */
  background: rgb(94, 94, 94);
/*   color: var(--text-color); */
  color: #ffffff;
  z-index: 10;
  visibility: visible;
  box-shadow: var(--box-shadow);
  font-size: small;
  font-weight: 700;
  cursor: pointer;
}
/* =========== INFO BUTTON =========== */

.close-button {
  position: absolute;
  right: 2px;
  top: 2px;
  color: var(--button-normal);
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}

.close-button.has-image {
  color: #d8d8d8;
}

.close-button:hover,
.close-button:focus {
  color: var(--button-focus);
  text-decoration: none;
  cursor: pointer;
}


/* ============= DEMO OPTIONS ============== */
.options-container{
  position: fixed;
  top: 100px;
  left: 50px;
/*   transform: translateX(-50%); */
  display: none;
  z-index: 100;
  background-color: var(--container-color);
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
  padding: 10px;
}

.options-row .fonts-container {
  display: flex;
  flex-direction: column;
}

.options-row .fonts-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.options-row .fonts-row:first-child {
  margin-bottom: 10px;
}

.options-row .selections-row img {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
  margin: 0 5px;
  height: 50px;
  width: auto;
  border-radius: .5rem;
}

.fonts-row img {
	cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
  margin: 0 5px;
  height: 50px;
  width: auto;
  filter: var(--image-filter);
}



.options-row .fonts-row img.selected {
  opacity: 1;
}

.options-row .fonts-row img:not(.selected):hover {
  opacity: 0.8;
  height: 50px;
}

.options-row .fonts-row img.selected:hover {
  opacity: 1;
}

.options-row img {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
  border: 2px solid var(--light-heavy-grey);
  width: 60px;
  border-radius: .5rem;
}

.options-row img.selected {
  opacity: 1;
  border-color: var(--light-heavy-black);
  border-width: 4px;
}

.options-row img:not(.selected):hover {
  opacity: 0.8;
  border-color: var(--light-heavy-black);
}

.plans-container img{
  border-radius: .5rem;
  opacity: 0.4;
  height: 48px;
/*   border: 4px solid transparent; */
}

.plans-container img.selected {
  opacity: 1;
  border-color: var(--light-heavy-black);
  border-width: 4px;
  height: 40px;
  margin: 4px;
}


.info-container{
  position: fixed;
  top: 100px;
  left: 50px;
/*   transform: translateX(-50%); */
  display: none;
  z-index: 100;
  background-color: var(--container-color);
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
  padding: 10px;
}


/* ============= DEMO OPTIONS ============== */


/* ============= MODAL PAGE ============== */
.modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
/*   overflow: auto; */
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  opacity: 0; /* set initial opacity to 0 */
  visibility: hidden; /* hide the modal */
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out; /* add a transition effect */
}

.modal.show {
  opacity: 1; /* change opacity to 1 when the modal is shown */
  visibility: visible; /* make the modal visible */
}


/* Default styles for desktop */
.modal-content,
.modal-content-selected {
  position: relative;
  border-radius: var(--content-border-radius);
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.modal-buttons {
  position: absolute;
}


@media only screen and (max-width: 767px) {
  .modal-content,
  .modal-content-selected {
    position: absolute;
/*     bottom: 0; */
	bottom: env(safe-area-inset-bottom);
    left: 0;
    right: 0;
    top: auto;
    border-radius: var(--content-border-radius);
    margin: 0;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    z-index: 9999; 
  }
  
  .modal-buttons {
    position: fixed;
    bottom: env(safe-area-inset-bottom);
  }
  
}


body.modal-open {
    overflow: hidden;
  }

.modal-content {
  background-color: var(--container-color);
  
}

.modal-content-selected {
  background-color: var(--selection_background);
  
}

.modal-img {
  width: 100%;
  height: auto;
/*   border-radius: var(--content-border-radius); */
  border-radius: var(--content-border-radius) var(--content-border-radius) 0px 0px;
}

.modal-info {
  padding: 20px;
/*   margin-bottom: 30px; */
  position: relative;
}

.modal-name {
/*   margin-top: 15px; */
  font-size: 24px;
  font-weight: bold;
  color: var(--title-color);
}

.modal-desc {
  margin-bottom: 10px;
}

.modal-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--title-color);
}

.close {
  position: absolute;
  right: 10px;
  top: 5px;
/*   color: var(--button-normal); */
  color: var(--title-color);
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}

.close.has-image {
/*   color: #d8d8d8; */
}

.close:hover,
.close:focus {
  color: var(--button-focus);
  text-decoration: none;
  cursor: pointer;
}


/*---------------- MODAL MESSAGE ---------------*/

/* Default styles for desktop */
.modalMessage-content,
.modalMessage-content-selected {
  position: relative;
  border-radius: var(--content-border-radius);
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .modalMessage-content,
  .modalMessage-content-selected {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    border-radius: var(--content-border-radius);
    margin: 0;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    z-index: 9999; 
  }
  
  .modalMessage-buttons {
    position: fixed;
    bottom: env(safe-area-inset-bottom);
  }
  
}

.modalMessage {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
/*   overflow: auto; */
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  opacity: 0; /* set initial opacity to 0 */
  visibility: hidden; /* hide the modal */
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out; /* add a transition effect */
}

.modalMessage.show {
  opacity: 1; /* change opacity to 1 when the modal is shown */
  visibility: visible; /* make the modal visible */
}

.modalMessage-name {
	padding: 40px;
	padding-bottom: 0px;
}

.modalMessage-desc {
	padding-left: 40px;
	padding-bottom: 40px;
}




.modalMessage-buttons {
  position: absolute;
}

.modalMessage-content {
  background-color: var(--container-color);
  
}

/* ============= RTL OPTIONS ============== */
.rtl .menu__text {
  text-align: right;
  direction: rtl;
  margin-bottom: 30px;
}

.rtl .scrollfilter {
  text-align: right;
  direction: rtl;
}

.modal-info.rtl {
  text-align: right;
  direction: rtl;
}

#order-total.rtl {
  text-align: right;
  direction: rtl;
}

/*--------------------------------------------------------------
	Preloader
--------------------------------------------------------------*/

/*
.page-loader {
  position: fixed;
  background: #000;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9998;
}

.loader {
  position: absolute;
  border-left: 2px solid #ffffff;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  height: 46px;
  width: 46px;
  left: 50%;
  top: 50%;
  margin: -23px 0 0 -23px;
  text-indent: -9999em;
  font-size: 10px;
  z-index: 9999;
  -webkit-animation: load 0.8s infinite linear;
  -moz-animation: load 0.8s infinite linear;
  ms-animation: load 0.8s infinite linear;
  o-animation: load 0.8s infinite linear;
  animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
*/



.page-loader {
  position: fixed;
  background: #000;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9998;
}

.loader {
  position: absolute;
  height: 100px;
  width: 100px;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  z-index: 9999;
}

.loader:before {
  content: '';
  position: absolute;
  border: 2px solid #B5A56D;
  border-radius: 18px;
  width: 86px;
  height: 86px;
  box-sizing: border-box;
  top: 7px;
  left: 7px;
  -webkit-animation: drawRect 2s infinite linear;
  -moz-animation: drawRect 2s infinite linear;
  ms-animation: drawRect 2s infinite linear;
  o-animation: drawRect 2s infinite linear;
  animation: drawRect 2s infinite linear;
}

.loader img {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes drawRect {
  0% {
    clip-path: inset(0 96px 96px 0);
  }
  25% {
    clip-path: inset(0 0 96px 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(96px 0 0 0);
  }
  100% {
    clip-path: inset(96px 96px 0 0);
  }
}

@keyframes drawRect {
  0% {
    clip-path: inset(0 96px 96px 0);
  }
  25% {
    clip-path: inset(0 0 96px 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(96px 0 0 0);
  }
  100% {
    clip-path: inset(96px 96px 0 0);
  }
}


/*--------------------------------------------------------------
	footerLinks
--------------------------------------------------------------*/

	/* Style the icon links container to center it on the page */
	.footerLinks {
		margin-bottom: 20px;
	}
	
    .footerLinksGroup {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px; /* Space between each icon link */
        flex-wrap: wrap; /* Wrap the icons if needed */
    }

    .footerLinksIcon {
        text-decoration: none;
        color: grey;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px; /* Text size */
    }

    .footerLinksIcon i {
        font-size: 24px; /* Icon size */
        margin-bottom: 4px; /* Space between icon and text */
    }

    .footerLinksLogo {
        display: block;
        margin: 50px auto 50px auto; /* Center the logo with space below */
        width: 200px; /* Adjust width as needed */
    }
    
    
/*--------------------------------------------------------------
	header logo
--------------------------------------------------------------*/

	.nav_logo_img {
		height: 40px;
	}
	
/*--------------------------------------------------------------
	modal cart
--------------------------------------------------------------*/

:root {
  --cart-bar-height: 60px;
}


.cart-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
/*   max-width: 1024px; */
  background-color: var(--container-color);
  color: var(--text-color);
  box-shadow: var(--cart-shadow);
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  max-height: var(--cart-bar-height); /* Default collapsed state */
  display: flex;
  align-items: center;
  z-index: var(--z-fixed);
}

@media screen and (min-width: 960px){
  .cart-modal-header{
	  left: 0;
	  right: 0;
	  margin-left: auto;
	  margin-right: auto;
  }
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  height: var(--cart-bar-height);
  padding: 10px;
  background-color: var(--container-color);
  font: var(--body-font);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--small-font-size);
  position: relative; /* Ensures absolute positioning for centered content */
}

.toggle-cart-btn {
  background-color: var(--selection_background);
  border: none;
  border-radius: var(--filter-tab-radius);
  color: var(--title-color);
  height: 30px;
  width: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1; /* Keeps button on top */
  font-size: 1.4rem;

  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}


.cart-summary {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap; /* Prevents text wrapping */
}

.order-btn {
/*   background-color: #555; */
  background-color: var(--first-color-alt);
  font-size: var(--smaller-font-size);
  font-family: var(--body-font);
  border-radius: var(--filter-tab-radius);
  border: none;
  color: white;
  padding: 5px 10px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-left: auto;
}


.order-btn:disabled {
  background-color: var(--cart-bt-bg-disabled);
  cursor: not-allowed;
  color: var(--cart-bt-font-disabled);
}


/* Add padding to the bottom when the cart bar is enabled */
.has-cart-bar {
  margin-bottom: calc(var(--cart-bar-height) + 20px); /* Same height as the cart bar */
}
