:root {

  /**
   * COLORS
   */

  --gold-crayola: #2e8a76;

  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0.15em;
  --letterSpacing-2: 0.4em;
  --letterSpacing-3: 0.2em;
  --letterSpacing-4: 0.3em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;

  /**
   * SHADOW
   */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
   * BORDER RADIUS
   */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}

/* 
body {
  overflow-y: auto;
}

html {
  overflow-y: auto;
} */

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  height: 100%;
  scroll-padding-top: 20rem !important;
}

body {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
}


body.loaded {
  overflow: overlay;
}

body.nav-active {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-crayola);
}



/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 {
  font-size: var(--fontSize-headline-1);
}

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 {
  font-size: var(--fontSize-title-1);
}

.title-2 {
  font-size: var(--fontSize-title-2);
}

.title-3 {
  font-size: var(--fontSize-title-3);
}

.title-4 {
  font-size: var(--fontSize-title-4);
}

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 {
  font-size: var(--fontSize-body-3);
}

.body-4 {
  font-size: var(--fontSize-body-4);
}

.label-1 {
  font-size: var(--fontSize-label-1);
}

.label-2 {
  font-size: var(--fontSize-label-2);
}



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid gold;
  transform: rotate(45deg);
}

.contact-label {
  font-weight: var(--weight-bold);
}

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after {
  bottom: -5px;
}

.text-center {
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url('./img/separator.png');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before {
  background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
  color: var(--white);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 {
  background-color: var(--smoky-black-2);
}

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine {
  position: relative;
}

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) {
  color: var(--white);
}

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 {
  width: 100%;
}

.move-anim {
  animation: move 5s linear infinite;
}

@keyframes move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder {
  color: inherit;
}

.input-field:focus {
  border-color: var(--gold-crayola);
}

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child {
  left: 15px;
}

.icon-wrapper ion-icon:last-child {
  right: 10px;
}


.back-home {
  position: absolute;
  top: 20px;
  left: 20px;
}

.back-home .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  /* Make it a perfect circle */
  height: 50px;
  background-color: #bc9c22;
  color: white;
  text-decoration: none;
  font-size: 20px;
  border-radius: 50%;
  /* Makes it round */
  transition: background 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-home .btn:hover {
  background-color: #e68900;
}

@media (max-width: 768px) {
  .back-home {
    display: none;
  }
}


/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gold-crayola);
  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload>* {
  transition: var(--transition-1);
}

.preload.loaded>* {
  opacity: 0;
}

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}

.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}





/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/

.topbar {
  display: none;
}



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #161719;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 4;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
}

.header.active {
  padding-block: 20px;
  background-color: var(--eerie-black-4);
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

/* !-- */
.header .container {
  padding-inline: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header .logo-img {
  width: 120px;
}

@media screen and (max-width: 576px) {
  .header {
    padding-top: 20px;
  }

  .header .container {
    padding-inline: 20px;
  }

  .header .logo-img {
    width: 100px;
  }
}

/* !-- */

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
}


.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 150ms;
}

.nav-open-btn .line-3 {
  animation-delay: 300ms;
}

.navbar {
  position: fixed;
  background-color: var(--smoky-black-1);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 2;
  transition: var(--transition-2);
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .close-btn {
  color: var(--white);
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 30px 20px;
}

.navbar .close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}

.navbar-list {
  border-block-end: 1px solid var(--white-alpha-20);
  margin-block-end: 100px;
}

.navbar-item {
  border-block-start: 1px solid var(--white-alpha-20);
}

.navbar-link {
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
}

.navbar-link::after {
  display: none;
}

.navbar-link .span {
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: var(--gold-crayola);
  transform: translateX(20px);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator {
  opacity: 1;
}

.navbar-title {
  margin-block-end: 15px;
}

.navbar-text {
  margin-block: 10px;
}

.navbar .body-4 {
  color: var(--quick-silver);
}

.sidebar-link {
  transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label {
  margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
  background-color: var(--white-alpha-10);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black-alpha-80);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}



/*-----------------------------------*\
  #MENU
\*-----------------------------------*/

#soups {
  position: relative;
  top: 200px !important;
}

#veg-appetizer {
  position: relative;
  margin-top: 80px;
}

.menu .section-title {
  margin-block-end: 40px;
}

.menu .grid-list {
  margin-block-end: 50px;
}

.menu-card {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 30px;
}

.hover\:card .card-banner {
  background-color: var(--gold-crayola);
}

.hover\:card .card-banner .img-cover {
  transition: var(--transition-2);
}

.hover\:card:is(:hover, :focus-within) .card-banner .img-cover {
  opacity: 0.7;
  transform: scale(1.05);
}

/* !-----------! */
.card-banner {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Ensures the image does not overflow */
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image fills the container while maintaining aspect ratio */
}

.red-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #E03F3F;
  border-radius: 50%;
}

.green-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #4ED364;
  border-radius: 50%;
}

/* !-----------! */

.menu-card .card-banner {
  flex-shrink: 0;
  border-radius: var(--radius-24);
}

.menu-card .card-title {
  transition: var(--transition-1);
}

.menu-card .card-title:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.menu-card .badge {
  background-color: var(--gold-crayola);
  color: var(--eerie-black-1);
  font-family: var(--fontFamily-forum);
  max-width: max-content;
  line-height: var(--lineHeight-6);
  text-transform: uppercase;
  padding-inline: 10px;
  margin-block-start: 10px;
}

.menu-card .span {
  color: var(--gold-crayola);
  margin-block: 10px;
}

/* !------ */
.menu-card .card-title {
  font-size: 21px;
  color: #fff;
}

.menu-card .card-title:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2e8a76;
  margin: 5px 0;
}

.menu-card .card-text {
  color: var(--gold-crayola);
  font-size: 20px;
}

.heading-tag {
  font-size: 18px;
}

@media screen and (max-width: 576px) {
  .menu-card .card-title {
    font-size: 18px;
  }

  .menu-card .card-text {
    font-size: 17px;
  }

  .heading-tag {
    font-size: 16px;
  }
}

/* !------ */

.menu-text .span {
  display: inline-block;
  color: var(--gold-crayola);
}

.menu .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.menu .shape {
  display: block;
  width: 70%;
}

.menu .shape-2 {
  top: 0;
  left: 0;
}

.menu .shape-3 {
  bottom: 0;
  right: 0;
}

/* !------ */
.section.sec-con {
  padding-top: 0px;
  padding-bottom: 80px;
}

.section.sec-first .container {
  padding-bottom: 80px;
}

@media screen and (max-width : 576px) {
  .section.sec-con {
    padding-bottom: 60px;
  }

  .section.sec-first .container {
    padding-bottom: 60px;
  }
}

/* !------ */


/*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/

.footer-top {
  margin-block-end: 70px;
}

.footer-brand {
  position: relative;
  padding: 50px 40px;
  background: var(--smoky-black-1) url("./img/footer-form-bg.png");
  background-position: center top;
  background-repeat: repeat;
}

.footer-brand::before,
.footer-brand::after {
  top: 0;
  width: 15px;
  height: 100%;
  background-image: url("./img/footer-form-pattern.png");
}

.footer-brand::before {
  left: 0;
}

.footer-brand::after {
  right: 0;
}

.footer-brand .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
}

.footer-brand :is(.body-4, .label-1) {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
  margin-block: 6px;
  transition: var(--transition-1);
}

.footer-brand .contact-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.footer-brand .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 25px;
}

.footer-brand .separator {
  animation: rotate360 15s linear infinite;
}

.footer-brand .label-1 {
  margin-block-end: 30px;
}

.footer-brand .label-1 .span {
  display: inline;
  color: var(--white);
}

.footer-brand .icon-wrapper .input-field {
  cursor: text;
}

.footer-brand .btn {
  min-width: 100%;
}

.footer-list {
  display: grid;
  gap: 20px;
}

.footer-link {
  color: var(--quick-silver);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-4);
  margin-inline: auto;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.copyright {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.copyright .link {
  display: inline;
  color: var(--gold-crayola);
  text-decoration: underline;
}

.footer-text {
  color: white;
  margin-top: 1.25rem;
  text-transform: capitalize;
  font-weight: 400;
}

.maghil-logo {
  color: #9dd4d2;
}

.maghil-logo:hover {
  color: #e52333;
  transition: 0.3s ease-in-out;
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--gold-crayola);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number {
    --fontSize-body-1: 3rem;
  }



  /**
   * TOPBAR
   */

  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    border-block-end: 1px solid var(--white-alpha-20);
    z-index: 4;
    transition: var(--transition-1);
  }

  .topbar:has(~ .header.active) {
    transform: translateY(-100%);
  }

  .topbar-item:not(.link),
  .topbar .separator {
    display: none;
  }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item {
    gap: 6px;
  }

  .topbar-item ion-icon {
    --ionicon-stroke-width: 60px;
  }

  .topbar-item .span {
    font-size: var(--fontSize-label-1);
  }

  .topbar .link {
    transition: var(--transition-1);
  }

  .topbar .link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
  }



  /**
   * HEADER
   */

  /* .header {
    top: 51px;
  } */

  .header.active {
    top: 0;
  }

  .header .btn {
    display: block;
    margin-inline-start: auto;
  }



  /**
   * HERO
   */

  .hero-btn {
    transform: scale(0.7);
  }



  /**
   * SERVICE
   */

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container {
    gap: 80px;
  }

  .about-banner>.w-100 {
    padding-inline-start: 90px;
  }

  .about .abs-img-1 {
    width: 285px;
  }

  .about .contact-number {
    --fontSize-body-1: 2.4rem;
  }



  /**
   * MENU
   */

  .menu-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .menu-card .badge {
    margin-block-start: 0;
  }

  .menu-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }



  /**
   * EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer-brand>* {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper {
    position: relative;
  }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.service, .event) .container {
    max-width: 820px;
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .navbar-list {
    margin-inline: 30px;
  }



  /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon {
    transform: rotate(-45deg);
  }

  .hero .slider-btn.prev {
    left: 30px;
  }

  .hero .slider-btn.next {
    right: 30px;
  }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }



  /**
   * RESERVATION
   */

  .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  .footer-brand {
    grid-column: 1 / 3;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-space: 100px;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container {
    max-width: unset;
  }

  :is(.service, .event) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }



  /**
   * TOPBAR
   */

  .topbar-item:not(.link) {
    display: flex;
  }

  .topbar .item-2 {
    margin-inline-end: auto;
  }



  /**
   * SERVICE
   */

  .service .shape {
    display: block;
  }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .special-dish-content {
    padding-inline: 50px 25px;
  }

  .special-dish-content .container {
    position: relative;
  }

  .special-dish .section-subtitle::after,
  .special-dish .btn {
    margin-inline: 0;
  }

  .special-dish-content .wrapper {
    justify-content: flex-start;
  }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }



  /**
   * TESTIMONIALS
   */

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



  /**
   * RESERVATION
   */

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }



  /**
   * FOOTER
   */

  .footer .grid-list {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    align-items: center;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
    padding-block: 100px;
  }

  .footer-list:last-child {
    order: 2;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * TOPBAR
   */

  .topbar .container {
    max-width: unset;
  }

  .topbar .separator {
    display: block;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .header .overlay {
    display: none;
  }

  .header .container {
    max-width: unset;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
  }

  .navbar,
  .navbar.active {
    margin-inline: auto 20px;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar .separator {
    display: none;
  }

  .navbar-link:is(:hover, :focus-visible, .active) .span {
    transform: unset;
  }

  .navbar-link {
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-1);
  }

  .navbar-link::after {
    display: block;
  }

  .navbar-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .header .btn {
    margin-inline-start: 0;
  }



  /**
   * HERO
   */

  .hero {
    height: 880px;
  }

  .hero-btn {
    bottom: 50px;
    right: 50px;
    transform: scale(1);
  }



  /**
   * SERVICE
   */

  .service .grid-list {
    gap: 150px;
  }

  .service .grid-list li:nth-child(2n+1) {
    transform: translateY(-160px);
  }

  .service .section-text {
    margin-block-end: 75px;
  }



  /**
   * ABOUT
   */

  .about {
    padding-block: 170px 100px;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish-content {
    padding: 225px 120px;
    padding-inline-end: 0;
  }

  .special-dish-content .container {
    max-width: 460px;
    margin-inline: 0;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }



  /**
   * TESTIMONIALS
   */

  .form-left,
  .form-right {
    padding: 75px 60px;
  }




  /**
   * FEATURES
   */

  .features .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

}





/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HEADER
   */

  .navbar {
    /* margin-inline: auto; */
  }



  /**
   * ABOUT
   */

  .about-content {
    padding-inline-end: 90px;
  }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    overflow: visible;
    position: relative;
  }

  .special-dish .shape {
    display: block;
    right: 0;
    z-index: 1;
  }

  .special-dish .shape-1 {
    top: 45%;
  }

  .special-dish .shape-2 {
    bottom: 0;
    transform: translateY(50%);
    width: max-content;
  }



  /**
   * FEATURES
   */

  .features {
    overflow: visible;
  }

  .features .shape {
    display: block;
  }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }

}

.maghil-footer-logo {
  margin: 0 auto;
  width: 100px;
}


.card-description {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .card-description {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .card-description {
    font-size: 15px;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* Limits text to 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-card .card-title:after {
    margin: 3px 0;
  }
}




/*-----------------------------------*\
  #FOOTER OPENING HOURS
\*-----------------------------------*/

.opening-hours-title {
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  margin-bottom: 20px;
  text-align: center;
  font-size: var(--fontSize-label-1);
}

.hours-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.day {
  font-size: var(--fontSize-label-1);
  font-weight: var(--weight-bold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  margin-bottom: 2px;
}

.times {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.time {
  font-size: var(--fontSize-label-2);
  color: var(--quick-silver);
  line-height: 1.4;
}

.time.holiday {
  color: #ff6b6b;
  font-weight: var(--weight-bold);
  font-style: italic;
}

/* Responsive Design for Opening Hours */
@media (max-width: 992px) {
  .hours-content {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .opening-hours-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .day {
    font-size: 1.1rem;
  }

  .time {
    font-size: 1rem;
  }

  .hours-content {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .opening-hours-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .day {
    font-size: 1rem;
  }

  .time {
    font-size: 0.9rem;
  }

  .hours-content {
    gap: 8px;
  }
}


/*-----------------------------------*\
  #PAYMENT METHODS
\*-----------------------------------*/

.payment-methods {
  text-align: center;
  margin: 20px auto;
  padding: 15px 0;
}

.payment-title {
  color: var(--white);
  font-size: var(--fontSize-label-1);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  margin-bottom: 20px;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-logo {
  width: 70px;
  height: 45px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.payment-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}



/* Responsive Design for Payment Methods */
@media (max-width: 768px) {
  .payment-methods {
    margin: 15px auto;
    padding: 10px 0;
  }

  .payment-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .payment-logos {
    gap: 12px;
  }

  .payment-logo {
    width: 60px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .payment-logos {
    gap: 10px;
  }

  .payment-logo {
    width: 55px;
    height: 35px;
  }
}

/* ----------------------------------------------------------- */
/* Header Filter Navigation Styles */
.header-filter-section {
  background: linear-gradient(135deg, var(--smoky-black-1) 0%, var(--smoky-black-2) 100%);
  margin-top: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--white-alpha-10);
  position: relative;
  z-index: 0;
}

.header-filter-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 5px 0;
  position: relative;
}

.filter-buttons-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  flex: 1;
  padding: 0 10px;
}

.filter-buttons-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

/* Filter Navigation Arrows */
.filter-nav-arrow {
  background: var(--gold-crayola);
  border: none;
  color: var(--smoky-black-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(46, 138, 118, 0.3);
}

.filter-nav-arrow:hover {
  background: var(--white);
  color: var(--gold-crayola);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(46, 138, 118, 0.4);
}

.filter-nav-arrow:active {
  transform: scale(0.95);
}

.filter-nav-arrow:disabled {
  background: var(--smoky-black-3);
  color: var(--quick-silver);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.filter-nav-arrow:disabled:hover {
  background: var(--smoky-black-3);
  color: var(--quick-silver);
  transform: none;
  box-shadow: none;
}

.menu-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-btn {
  flex-shrink: 0;
  padding: 5px 12px;
  font-size: 13px;
  white-space: nowrap;
  background: transparent;
  border: 2px solid var(--gold-crayola);
  color: var(--gold-crayola);
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); */
  transition: left 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background: var(--gold-crayola);
  color: var(--smoky-black-1);
  /* transform: translateY(-2px); */
  /* box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3); */
}

.filter-btn.active {
  background: var(--gold-crayola);
  color: var(--smoky-black-1);
  /* box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4); */
}

.filter-btn.active:hover {
  /* transform: translateY(-1px); */
  /* box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5); */
}

/* Responsive Design for Menu Filter */
@media (max-width: 1200px) {
  .menu-filter-nav {
    gap: 10px;
  }

  .filter-btn {
    padding: 5px 12px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .menu-filter-nav {
    gap: 8px;
  }

  .filter-btn {
    padding: 5px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .menu-filter-section {
    padding-top: 15px 0;
  }

  .menu-filter-spacer {
    height: 60px;
  }

  .menu-filter-nav {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-crayola) transparent;
  }

  .menu-filter-nav::-webkit-scrollbar {
    height: 4px;
  }

  .menu-filter-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .menu-filter-nav::-webkit-scrollbar-thumb {
    background: var(--gold-crayola);
    border-radius: 2px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 13px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .menu-filter-section {
    padding-top: 6px 0;
  }

  .menu-filter-spacer {
    height: 50px;
  }

  .filter-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* Mobile Filter Dropdown Styles */
.mobile-filter-dropdown {
  display: none;
  position: relative;
  width: 100%;
}

.mobile-filter-toggle {
  width: 100%;
  background: transparent;
  border: 2px solid var(--gold-crayola);
  color: var(--gold-crayola);
  padding: 15px 20px;
  border-radius: 50px;
  font-size: var(--fontSize-label-1);
  font-weight: var(--weight-bold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-filter-toggle:hover {
  background: var(--gold-crayola);
  color: var(--smoky-black-1);
}

.mobile-filter-toggle i {
  transition: transform 0.3s ease;
}

.mobile-filter-toggle.active i {
  transform: rotate(180deg);
}

.mobile-filter-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--smoky-black-1);
  border: 2px solid var(--gold-crayola);
  border-radius: 15px;
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 5px 0;
  /* Add padding for better spacing */
}

.mobile-filter-menu.active {
  max-height: 500px;
  /* Increased height for better scrolling */
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  /* Allow vertical scrolling when active */
}

/* Custom scrollbar for mobile filter menu */
.mobile-filter-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-filter-menu::-webkit-scrollbar-track {
  background: var(--smoky-black-2);
  border-radius: 3px;
}

.mobile-filter-menu::-webkit-scrollbar-thumb {
  background: var(--gold-crayola);
  border-radius: 3px;
}

.mobile-filter-menu::-webkit-scrollbar-thumb:hover {
  background: #e68900;
}

.mobile-filter-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 12px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--white-alpha-10);
  font-size: 15px;
}

.mobile-filter-btn:last-child {
  border-bottom: none;
}

.mobile-filter-btn:hover {
  background: var(--gold-crayola);
  color: var(--smoky-black-1);
}

.mobile-filter-btn.active {
  background: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-weight: var(--weight-bold);
}

/* Show mobile dropdown on mobile devices */
@media (max-width: 768px) {
  .header-filter-nav.desktop-filter {
    display: none;
  }

  .header-filter-section .mobile-filter-dropdown {
    display: block;
  }
}

/* Responsive styles for filter arrows */
@media (max-width: 1024px) {
  .filter-nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .filter-nav-arrow {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .filter-buttons-container {
    padding: 0 5px;
  }
}



/* --------------------------------------------------- */
/* Dropdown Styles */
/* --------------------------------------------------- */

.dropdown-container {
  position: relative;
  display: inline-block;
}

@media screen and (max-width : 1200px) {
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Group dropdown and hamburger together on the right */
  .dropdown-container {
    margin-left: auto;
    margin-right: 15px;
  }

  .nav-open-btn {
    /* Hamburger stays at the far right */
  }

  .dropdown-menu {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    left: 0;
    right: auto;
  }
}

.dropdown-toggle {
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  background: #000 !important;
  border-radius: 2px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  width: 235px;
  min-width: 235px;
  max-width: 235px;
  overflow: hidden;
  border: 1px solid rgba(46, 138, 118, 0.1);
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid #161719;
  font-weight: 500;
  font-size: 14px;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #2e8a76, #3dbfa3);
  color: #ffffff;
  /* transform: translateX(5px); */
}

.dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dropdown-item span {
  font-family: var(--fontFamily-dm_sans);
}

/* Responsive dropdown */
@media (max-width: 768px) {
  .dropdown-container {
    /* width: 100%; */
  }

  .dropdown-menu {
    width: 235px;
    min-width: 235px;
    max-width: 235px;
    left: 0;
    right: auto;
  }

  .dropdown-item {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {

  .dropdown-menu {
    display: none;
  }
}



/*-----------------------------------*\
#order online button
\*-----------------------------------*/
.cart-container {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-main-btn {
  border-radius: 60px;
  background: linear-gradient(135deg, #2e8a76, #3dbfa3);
  color: #fff;
  width: auto;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: var(--fontFamily-forum);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-main-btn:hover {
  animation: none;
  transform: scale(1.02);
  box-shadow: 0 5px 10px rgba(46, 138, 118, 0.2), 0 0 15px rgba(46, 138, 118, 0.2);
  background: linear-gradient(135deg, #3dbfa3, #2e8a76);
  border-color: #fff;
}

.cart-online-text-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-online-text {
  letter-spacing: 1px;
}

/* Pulsing animation for more prominence */
@keyframes pulse {
  0% {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 15px 35px, 0 0 20px rgba(46, 138, 118, 0.1);
    transform: scale(1);
  }

  50% {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 15px 35px, 0 0 40px rgba(46, 138, 118, 0.3);
    transform: scale(1.02);
  }

  100% {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 15px 35px, 0 0 20px rgba(46, 138, 118, 0.1);
    transform: scale(1);
  }
}

.cart-options {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cart-container.active .cart-options {
  display: flex;
}

.cart-option {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--gold-crayola);
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 14px;
}

.cart-option i {
  font-size: 14px !important;
}

.cart-option span {
  font-size: 14px !important;
}

.cart-option:hover {
  background: var(--gold-crayola);
  color: #000;
}

@media (max-width: 768px) {
  .cart-container {
    bottom: 80px;
    right: 20px;
  }

  .cart-main-btn {
    width: auto;
  }

  .cart-option {
    padding: 7px 14px;
    font-size: 13.5px;
  }
}

@media (max-width: 576px) {
  .cart-container {
    bottom: 80px;
  }

  .cart-main-btn {
    width: auto;
  }

  .cart-main-btn i {
    font-size: 14px;
  }

  .cart-online-text {
    font-size: 14px;
  }

  .cart-option i {
    font-size: 13px !important;
  }

  .cart-option span {
    font-size: 13px !important;
  }
}

.time-label{
  margin-bottom: 4px;
  font-size: 0.95em;
  color: #333;
  font-weight: 500;
}

/* Our Locations Dropdown Styles - Synced with index.css */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--smoky-black-1);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border: 1px solid var(--white-alpha-20);
  border-radius: 4px;
  top: 100%;
  left: 0;
}
.dropdown-content a {
  color: var(--white);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  transition: var(--transition-1);
  border-bottom: 1px solid var(--white-alpha-20);
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background-color: var(--gold-crayola);
  color: var(--white);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .navbar-link .span {
  color: var(--gold-crayola);
}
/* Down arrow for dropdown */
.dropdown .navbar-link .span::after {
  content: " ▼";
  font-size: 0.8em;
  margin-left: 5px;
  transition: var(--transition-1);
}
.dropdown:hover .navbar-link .span::after {
  transform: rotate(180deg);
}
/* Prevent navbar from closing when interacting with dropdown */
.dropdown, .dropdown * {
  pointer-events: auto;
}
.dropdown-toggle {
  cursor: pointer;
}
/* Mobile dropdown styles */
@media (max-width: 1200px) {
  .dropdown{
    display: block;
  }
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
  }
  .dropdown-content a {
    padding: 10px;
    border-bottom: 1px solid var(--white-alpha-20);
    font-size: var(--fontSize-label-2);
  }
  .dropdown.active .dropdown-content {
    display: block;
  }
}