 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    body {
      background-color: #fff;
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
    }

   .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;

}

.logo img {
  height: 52px;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #f2f5f8;
  padding: 10px 15px;
  border-radius: 15px;
}

.search-box i {
  color: #29abe2; /* light blue */
  font-size: 20px;
  margin-right: 8px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #909aa5;
}




/*categories*/
.categories-section {
  padding: 20px 0px 0px 0px;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.categories-header h3 {
  font-size: 22px;
  color: #1e1e1e;
  margin: 0;
}

.see-all-btn {
  border: 1px solid #ccc;
  background-color: transparent;
  color: #888;
  border-radius: 10px;
  padding: 5px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  background-color: #f0f0f0;
}

.categories-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
 /* flex-wrap: nowrap;
  overflow-x: auto;*/
}

.category {
    background-color: #f4f4f6;
    border-radius: 20px;
    padding: 20px 25px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}

.category img {
    display: block;
    margin: 0 auto;
}

.category i {
    font-size: 28px;
    color: #1c1c28;
    margin-bottom: 8px;
}

.category span {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    color: #1c1c28;
    font-size: 14px;
}

/* Active Category */
.category.active {
    background-color: #000000;
}

.category.active i,
.category.active span {
    color: #fff;
}

/* Hover Effect */
.category:hover {
    background-color: #000000;
}
.category:hover img {
    transition: filter 0.3s;
    filter: brightness(0) invert(1);
}

.category:hover i,
.category:hover span {
    color: #fff;
}






/*nearby*/
.nearby-section{margin-top: 20px;}
.nearby-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.nearby-section .card-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.nearby-section .place-card, .nearby-section  .explore-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 240px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nearby-section .place-card:hover, .nearby-section  .explore-card:hover {
  transform: translateY(-5px);
}

.nearby-section .place-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.nearby-section .card-body {
  padding: 15px;
}

.nearby-section .card-body h3 {
  font-size: 18px;
  margin: 0 0 5px;
}

.nearby-section .stars {
  color: #f6b100;
  font-size: 14px;
  margin: 5px 0;
}

.nearby-section .rating {
  color: #333;
  font-weight: 400;
}

.nearby-section .status {
  font-weight: bold;
  margin: 5px 0;
}

.nearby-section .status.open {
  color: green;
}

.nearby-section .status.closed {
  color: red;
}

.nearby-section .distance {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nearby-section .explore-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.nearby-section .explore-card p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nearby-section .circle-arrow {
  background: #000;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.bottom{background: #000; padding:50px 0; margin-top:80px; }
.footer{text-align: center;}
.footer ul{display: block;margin: 20px 0 0 0; padding: 0;}
.footer ul li{display: inline-block;}
.footer ul li a{color: #fff; display: inline-block; margin: 0 14px; font-size: 22px;}

.footer-content {
  margin-top: 30px;
  border-top: #ccc solid 1px;
  padding: 12px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  margin-bottom: 10px;
}

.footer-right a {
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
}

.footer-right a:hover {
  text-decoration: underline;
}


.restaurant-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.restaurant-card {
  border: 1.5px solid #E6E6E6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.restaurant-name {
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}

.restaurant-info {
  margin-top: 8px;
}

.restaurant-info p {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}

.restaurant-info i {
  margin-right: 6px;
  color: #666;
}

.badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid;
}

.status-clear {
  color: #2e7d32;
  border-color: #2e7d32;
}

.status-busy {
  color: #f9a825;
  border-color: #f9a825;
}

.status-event {
  color: #7b1fa2;
  border-color: #7b1fa2;
}

.status-booked {
  color: #d32f2f;
  border-color: #d32f2f;
}

.status-active {
  color: #1976d2;
  border-color: #1976d2;
}





.filter-sidebar {

  background: #fff;
  border: 1px solid #ccc;
  border-radius: 24px;
  overflow: hidden;
}

.filter-sidebar__header {
  background: #000;
  color: #fff;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-sidebar__section {
  padding: 20px;
  border-top: 1px solid #ccc;
}

.filter-sidebar__section h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.filter-sidebar__input-box {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.filter-sidebar__input-box i {
  margin-right: 10px;
  color: #aaa;
}

.filter-sidebar__input-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #777;
  width: 100%;
}

.filter-sidebar__checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.filter-sidebar__checkbox-row label {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #111;
}

.filter-sidebar__checkbox-row input[type="checkbox"] {
  margin-right: 10px;
}

.filter-sidebar__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.filter-sidebar__dot.green { background: green; }
.filter-sidebar__dot.orange { background: orange; }
.filter-sidebar__dot.purple { background: purple; }
.filter-sidebar__dot.red { background: red; }
.filter-sidebar__dot.blue { background: blue; }

.filter-sidebar label {
  font-size: 15px;
  display: block;
  margin: 8px 0;
  color: #111;
}



/*carousal*/
.carousel-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 40px;
}

.carousel-box__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 40px;
}

/* Top-right icons */
.carousel-box__icons {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.carousel-box__icon-btn {
  background: white;
  border: none;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}

.carousel-box__icon-btn:hover {
  background: #f1f1f1;
}

/* Dots pagination */
.carousel-box__dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-box__dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.carousel-box__dots .dot.active {
  background: #fff;
}

.restaurant-info {
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.restaurant-info__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.restaurant-info__description {
  color: #777;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

.restaurant-info__details p {
  font-size: 15px;
  color: #666;
  margin: 5px 0;
}

.restaurant-info__details i {
  margin-right: 8px;
  color: #999;
}

.restaurant-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.restaurant-info__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #444;
}

.restaurant-info__icon i {
  font-size: 22px;
  background: #f0f0f0;
  color: #222;
  padding: 10px 16px;
  border-radius: 50%;
  margin-bottom: 8px;
  transition: background 0.3s;
}

.restaurant-info__icon:hover i {
  background: #e0e0e0;
}

.restaurant-info__book-btn {
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 18px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.restaurant-info__book-btn:hover {
  background: #111;
}
.restaurant-info__cta{margin-left: auto;}

  .nav-tabs {
      border-bottom: 1px solid #ddd;
    }
    .nav-tabs .nav-link {
      border: none;
      font-weight: 500;
      color: #999;
    }
    .nav-tabs .nav-link.active {
      color: #000;
      border-bottom: 2px solid #000;
    }
        .gallery_img {
  display: flex;
  margin-top: 30px ;
  flex-wrap: wrap;
  gap: 10px; /* space between images */
}

.gallery_img img {
  width: calc(33% - 5px); /* two per row with gap */
  box-sizing: border-box;
}

.card-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

/* Grid View (default horizontal) */
.card-container.grid-view {
  flex-direction: row;
}

.card-container.grid-view .place-card {
  
  flex: 0 0 auto;
}

/* List View (vertical full-width) */
.card-container.list-view {
  flex-direction: column;
  overflow-x: hidden;
}

.card-container.list-view .place-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

.card-container.list-view .place-card img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

    /* Sidebar styles */
    #sidebar {
      position: fixed;
      top: 0;
      left: -250px; /* hidden by default */
      width: 250px;
      height: 100%;
      background: #fff;
      color: #000;
      transition: left 0.3s ease;
      z-index: 1050;
      padding: 20px;
    }
    #sidebar.active {
      left: 0;
    }
    #sidebar .close-btn {
      font-size: 24px;
      cursor: pointer;
      color: #fff;
      position: absolute;
      top: 15px;
      right: 15px;
    }
    /* Overlay */
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: none;
      z-index: 1040;
    }
    #overlay.active {
      display: block;
    }
.categories-list_mobile .category span{margin: 0}
    .categories-list_mobile .category{    display: flex;
    gap: 10px;
    padding: 6px 18px;
    margin-bottom: 10px;border-radius: 12px;
    align-items: center;
}
.categories-list_mobile .category  i{margin:0 ;font-size: 24px;}

.restaurant-card2 {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            margin-bottom: 16px;
            overflow: hidden;
        }
        
        .restaurant-card2:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
    
        .status-badge {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .status-clear {
            background-color: #d1e7dd;
            color: #0f5132;
            border: 1px solid #a3cfbb;
        }
        
        .status-busy {
            background-color: #fff3cd;
            color: #664d03;
            border: 1px solid #ffda6a;
        }
        
        .status-event {
            background-color: #e2e3ff;
            color: #3d348b;
            border: 1px solid #b8b9ff;
        }
        
        .status-booked {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f1aeb5;
        }
        
        .status-active {
            background-color: #cff4fc;
            color: #055160;
            border: 1px solid #9eeaf9;
        }
        
        .restaurant-name {
            font-size: 20px;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
        }
        
        .restaurant-info2 {
            color: #6c757d;
            font-size: 14px;
            display: flex;
            align-items: center;
            margin-bottom: 4px;
        }
        
        .restaurant-info2 i {
            margin-right: 6px;
            width: 16px;
        }
        
        .icon-fork-flame {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
        }
        
        .icon-fries {
            background: linear-gradient(135deg, #feca57, #ff9ff3);
        }
        
        .icon-bao {
            background: linear-gradient(135deg, #48dbfb, #0abde3);
        }
        
        .icon-chopstick {
            background: linear-gradient(135deg, #ff9ff3, #54a0ff);
        }
        
        .icon-wok {
            background: linear-gradient(135deg, #5f27cd, #341f97);
        }
        



/* CSS: styling for restaurant cards and images */
.restaurant-list {  margin: 0 auto; }

.restaurant-card2 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease;
}
.restaurant-card2:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(15,23,42,.08); }

.restaurant-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restaurant-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text */
.restaurant-name { font-weight: 600; font-size: 1rem; margin: 0; }
.restaurant-info2 { color: #6b7280; font-size: 0.92rem; display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.restaurant-info2 i { color: #9ca3af; }

/* status badges */
.status-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  min-width: 72px;
  text-align: center;
}
.status-clear { background: #10b981; }   /* green */
.status-busy  { background: #f97316; }   /* orange */
.status-event { background: #8b5cf6; }   /* purple */
.status-booked{ background: #ef4444; }   /* red */
.status-active{ background: #06b6d4; }   /* teal */

/* responsive tweaks */
@media (max-width: 576px) {
  .restaurant-icon { width: 56px; height: 56px; flex: 0 0 56px; }
  .status-badge { min-width: 60px; padding: 5px 8px; font-size: 0.75rem; }
}

 .restaurant-cards {
      font-family: 'Arial', sans-serif;
      background: #f4f4f6;
      margin: 0;
      padding: 20px;
      border-radius: 10px;
    }

    .restaurant-cards .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 20px;
    }

    .restaurant-cards .card2 {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      justify-content: space-between;
    }

   .restaurant-cards .card2 img {
    height: 95px;
    width: 95px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

    .restaurant-cards .card-content {
      flex: 1;
    }

    .restaurant-cards .card-content h3 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

    .restaurant-cards .card-content .info {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #666;
      margin-top: 4px;
    }

    .restaurant-cards .card-content .info i {
      margin-right: 6px;
      font-size: 15px;
      color: #666;
    }

    .restaurant-cards .card-content a {
      font-size: 14px;
      text-decoration: none;
      color: #5a2df9;
      font-weight: 500;
    }

    .restaurant-cards .status {
      padding: 4px 0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid;
    width: 109px;
    text-align: center;
    display: flex;
    justify-content: center;
    }

    .restaurant-cards .clear {
      color: #4b8a29;
      border-color: #4b8a29;
    }

    .restaurant-cards .busy {
      color: #c79a00;
      border-color: #c79a00;
    }

    .restaurant-cards .booked {
      color: #c0392b;
      border-color: #c0392b;
    }

    .restaurant-cards .event {
      color: #6c3483;
      border-color: #6c3483;
    }

    .restaurant-cards .active {
      color: #2874f0;
      border-color: #2874f0;
    }

    /* STATUS BASE STYLE */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 2px solid;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin: 8px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

/* CIRCLE INSIDE BUTTON */
.status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: currentColor;
  animation: pulseDot 1.5s infinite;
  flex-shrink: 0;
}

/* Smooth pulse animation for the dot */
@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* HOVER EFFECT */
/*.status:hover {
  background-color: currentColor;
  color: #fff;
  transform: scale(1.05);
  transition: all 0.3s ease;
}*/

/* STATUS COLORS */
.busy {
  color: #b8860b;
  border-color: #b8860b;
}

.event {
  color: #6a1b9a;
  border-color: #6a1b9a;
}

.active {
  color: #1e88e5;
  border-color: #1e88e5;
}

.booked {
  color: #c62828;
  border-color: #c62828;
}

.clear {
  color: #2e7d32;
  border-color: #2e7d32;
}

.pending {
  color: #f57c00;
  border-color: #f57c00;
}

.search-box input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}