  .restaurant-modal {
  backdrop-filter: blur(4px);
}


  .restaurant-modal .modal-container {
    max-width: 61%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 auto;
    scrollbar-width: none;
    /* Firefox */
  }

  /* Chrome / Safari / Edge */
  .restaurant-modal .modal-container::-webkit-scrollbar {
  
    display: none;
  }

  .restaurant-modal .modal-image {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    border-top-right-radius: 1rem;
  }


  @keyframes openModalSlideUpnimation {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .restaurant-modal .animate-modal {
    animation: openModalSlideUpnimation 0.3s ease-out;
  }

  /* Custom Scrollbar */
  /* .restaurant-modal .modal-container::-webkit-scrollbar {
    width: 8px;
  } */

  .restaurant-modal .modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .restaurant-modal .modal-container::-webkit-scrollbar-thumb {
    background: #fb923c;
    border-radius: 10px;
  }

  .restaurant-modal .modal-container::-webkit-scrollbar-thumb:hover {
    background: #f97316;
  }



   .restaurant-modal .modalBades {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 6px;
    padding-right: 8px;

  }

  .restaurant-modal .textMenu {
    font-size: 10px;
    line-height: 1rem;
  }

  

  /* For tablets and smaller screens */
  @media (max-width: 768px) {
    .restaurant-modal .modal-image {
      height: 40vh;
      /* Adjust height for smaller screens */
    }

    .restaurant-modal .modal-container {
      max-width: 80%;
      /* Increase modal width for better fit on smaller screens */
    }
  }

  /* For mobile screens */
  @media (max-width: 480px) {
    .restaurant-modal .modal-image {
      height: 35vh;
      /* Adjust height even further for very small screens */
    }

    .restaurant-modal .modal-container {
      max-width: 90%;
      /* Further increase width on mobile */
    }
  }


/*===================================================================================================== */

    /* Dropdown Styles */
  .city-dropdown-item #city-dropdown {
    position: absolute;
    z-index: 50;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar {
    width: 6px;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 10px;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar-thumb {
    background: #fb923c;
    border-radius: 10px;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar-thumb:hover {
    background: #f97316;
  }

  /* Active Item Highlight */
  .city-dropdown-item.city-item.active-item>div {
    background-color: #fff7ed !important;
    border-left: 3px solid #fb923c;
  }

  .city-dropdown-item .city-item.active-item p {
    color: #fb923c !important;
  }

  .city-dropdown-item .city-item.active-item svg:last-child {
    opacity: 1 !important;
    color: #fb923c !important;
  }

  /* Loading Animation */
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .city-dropdown-item.animate-spin {
    animation: spin 1s linear infinite;
  }

  /* Smooth Transitions */
  .city-dropdown-item #city-dropdown li {
    transition: all 0.2s ease;
  }

  /* Focus Styles */
  .city-dropdown-item #searchInput:focus {
    outline: none;
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
  }

/*===================================================================================================== */


    .restaurant-cards-badges {
    padding-top: 5px;
    padding-bottom: 4px;
    padding-left: 6px;
    padding-right: 12px;
    font-size: 9px;
    font-weight: 700;
  }


/*===================================================================================================== */




.hero-section {
  background: #FF6D1F; /* orange */
 
  position: relative;
  overflow: hidden;
}


/* =====================================================HEader */


    body { font-family: 'Inter', sans-serif; }
    .header-blur { backdrop-filter: blur(12px); }
    .nav-link { position: relative; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: #f97316;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }
    .nav-link:hover::after { width: 80%; }
    .nav-link.active { color: #f97316; font-weight: 600; }
    .nav-link.active::after { width: 80%; }
    .mobile-menu-enter {
      animation: slideIn 0.3s ease-out forwards;
    }
    .mobile-menu-exit {
      animation: slideOut 0.3s ease-out forwards;
    }
    @keyframes slideIn {
      from { transform: translateX(-100%); }
      to { transform: translateX(0); }
    }
    @keyframes slideOut {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }
    .modal-show {
      display: flex !important;
      animation: fadeIn 0.2s ease-out;
    }
    .modal-show #modalContent {
      animation: scaleIn 0.3s ease-out forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes scaleIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .btn-primary {
      background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
    }


/* this for dropdown height  */



  @media (max-width: 600px) {
    .g-recaptcha {
      transform: scale(0.8);
      transform-origin: 0 0;
    }
  }

/*  */