/* scroll */

.tab-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

#menuTabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.5rem;
  margin: 0;
  scrollbar-width: none; /* Firefox */
}

/* scroll style */
.tab-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.tab-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.tab-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0); /* Fully hidden by default */
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

/* Reveal scroll thumb on mouse hover */
.tab-scroll-wrapper:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6); /* Visible thumb */
}

/* until here */
}

.nav-item {
  flex: 0 0 auto; /* Don't shrink */
}

.nav-link {
  white-space: nowrap;
  color: white !important;
}


/* everything else */


  .brown-text {
    color: #a87164;
  }
  
  .nav {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}


.fancy-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif; /* Or pick your favorite */
  position: relative;
}

.fancy-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #a87164; /* Coffee accent color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
  opacity: 0.85;
}

/* everything fonts */

@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

.arabic-text {
  font-family: 'Amiri', serif;
  direction: rtl;
}


body {
  font-family: 'Playfair Display', serif;
}

.arabic-text {
  font-family: 'Amiri', serif;
  direction: rtl;
 
}

.bilingual-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  display: inline-flex;
  flex-direction: row-reverse; /* Shows Arabic first visually */
  gap: 0.3rem;
  align-items: center;
}

