@font-face {
    font-family: "vazir";
    src: url("fonts/Vazir.woff") format("woff"),
         url("fonts/Vazir.ttf") format("truetype");
    font-weight: normal; /* Define weight if needed (e.g., normal, bold) */
    font-style: normal; /* Define style if needed (e.g., normal, italic) */
}

*{
    font-family: Vazir FD, sans-serif;
}

body{
    font-family: Vazir FD, sans-serif;
    direction: rtl;
}

.item{
    border: solid gray 1px;
    border-radius: 8px;
    padding: 5px;
    text-align: center;
    margin: 3px;
}
.menu-item{
    border: solid gray 1px;
    border-radius: 8px;
    text-align: center;
    margin: 3px;
    display: inline-block;
}

.menu-item a{
    color: black;
}

ul, ol {
    list-style: none; 
    margin: 0;
    padding: 0;
}

li{
    margin-bottom: 10px;
}

nav{
    background-color: #F2F3F5;
}

.categories{
    white-space: nowrap;
    overflow: auto;
    position: sticky;
    top:0;
    z-index: 100;
    background-color: white;
}
.category-section{
    border-radius: 8px;
    color: white;
}
.color-first{
    background-color: #FB6718;
}

.unit{
    font-size: 12px;
}

.des{
    font-size: 12px;
}

.item span{
    font-weight: 600;
    font-size: 15px;
}

.menu-item{
    cursor: pointer;
}

.active{
    background-color: #FB6718;
    color: white;
    border: white;
}

.active a{
    color: white;
}

.head-box{
    background-image: url(../images/background.jpg);
    background-position: center;
    background-size: cover;
    height: 128px;
}

.head-side .head-logo{
    bottom: -12px;
    right: 8px;
    border: 3px solid #7BB933;

}
.head-info{
    width: 100%;
    padding-right: 92px;
}

.icon-text a {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep default text color */
}

.fa-brands, .fa-solid {
    color: #333;
    transition: 0.3s;
}

.fa-telegram {
    color: #0088cc; /* Telegram Blue */
}

.fa-instagram {
    color: #E1306C; /* Instagram Pink */
}

.fa-phone-square {
    color: #25D366; /* WhatsApp-like Green */
}

.call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 12px; /* Smaller padding */
    font-size: 16px; /* Smaller text */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; /* Circle button */
    height: 45px;
    border-radius: 50%; /* Makes it round */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
    background-color: #25D366;
}

.call-btn i {
    font-size: 18px; /* Smaller icon */
}

.call-btn:hover {
    transform: scale(1.1);
    transition: 0.3s;
    background-color: #25D366;
}

.fa-1-5x {
    font-size: 1.5em;
}

/* Scrollbar Track */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Scrollbar Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  /* Scrollbar Handle on Hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* Scrollbar Track Background */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

.install-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-family: sans-serif;
    direction: rtl;
    color: #222;
  }
  
  #ios-install-banner > div.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #ios-install-banner strong {
    font-size: 16px;
  }
  
  #ios-install-banner button.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }
  
  #ios-install-banner hr {
    margin: 10px 0;
  }
  
  #ios-install-banner ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #ios-install-banner ol li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  #ios-install-banner ol li i {
    margin-left: 10px;
    font-size: 18px;
  }
    
  #android-install-banner {
    text-align: center;
    direction: rtl;
  }
  
  #android-install-banner > div.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #android-install-banner strong {
    font-size: 16px;
  }
  
  #android-install-banner button.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }
  
  #android-install-banner hr {
    margin: 10px 0;
  }
  
  #android-install-btn {
    font-family: Vazir FD;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  #android-install-btn:hover {
    background-color: #45a049;
  }
  