
    .hero-header {
      background-color: #ff6b35;
      color: white;
      padding: 4rem 0;
    }
    .btn-primary-custom {
      background-color: #fff;
      color: #ff6b35;
      font-weight: bold;
    }
    .btn-primary-custom:hover {
      background-color: #f0f0f0;
    }
    .restaurant-card {
      border: 1px solid #eee;
      border-radius: 12px;
      overflow: hidden;
      transition: box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
    }
    .restaurant-card .p-3 {
      flex: 1;
      display: flex;
      flex-direction: column;
      height: 220px;
    }
    .restaurant-card .btn-menu {
      margin-top: auto;
    }
    .img-container {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .restaurant-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .restaurant-card:hover {
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    .restaurant-card:hover .restaurant-img {
      transform: scale(1.05);
    }
    .badge-type {
        font-weight: 600;
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 0.8rem;
      padding: 0.4em 1em;
      z-index: 2;
      background-color: rgba(255, 255, 255, 0.8) !important;
      color: #000 !important;
      border-radius: 50px;
      backdrop-filter: blur(10px);
    }
    .btn-menu {
      background-color: #ff6b35;
      border: none;
      padding: 15px 10px;
      border-radius: 0.75rem;
      font-weight: 500;
    }
    .btn-menu:hover {
      background-color:  #ff6027;
    }
    
    .form-control, .form-select {
      border-radius: 10px;
      padding: 12px 20px;
      border: 2px solid #e9ecef;
      transition: all 0.3s ease;
    }
    .form-control:focus, .form-select:focus {
      border-color: #ff6b35;
      box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    }
    .input-group-text {
      border-radius: 10px 0 0 10px;
      border: 2px solid #e9ecef;
      border-right: none;
      background-color: white;
    }
    .input-group .form-control {
      border-radius: 0 10px 10px 0;
      border-left: none;
    }
    .form-select {
      cursor: pointer;
      position: relative;
    }
    .form-select option {
      animation: slideDown 0.3s ease;
      padding: 10px;
    }
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .form-select:focus {
      transform: scale(1.02);
    }