/* Common Section */
.common-section {
    font-size: 16px;
    color: #333;
}

/* NAV TABS – Swiggy style */
.nav-tabs {
  border-bottom: none;
  padding-left: 5px;
  padding-right: 5px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-tabs::-webkit-scrollbar {
  display: none;
}
.nav-tabs .nav-link {
  font-size: 14px;
  padding: 6px 14px;
  margin-right: 6px;
  border: none;
  border-radius: 20px;
  background-color: #f1f1f1;
  color: #000;
  white-space: nowrap;
}
.nav-tabs .nav-link.active {
  background-color: #001f3f;
  color: #fff;
}

/* Responsive product layout */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}
.card:hover {
  transform: translateY(-3px);
}
.card-body {
  padding: 10px;
}
.card-img-top {
  height: 140px;
  background-size: cover;
  background-position: center center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.card h6 {
  font-size: 14px;
  font-weight: bold;
}
.price-section {
  font-size: 14px;
  font-weight: 600;
  color: #28a745;
}

/* Add Button */
.btn-outline-success {
  font-weight: 500;
  font-size: 13px;
  padding: 6px 0;
  border-radius: 1.5rem;
  border-width: 1px;
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  background-color: #28a745;
  color: #fff;
}

/* Desktop-specific styles */
@media (min-width: 769px) {
  .desktop-section {
      background-color: #f0f0f0;
      padding: 20px;
  }
}

/* Mobile-specific styles */
@media (max-width: 576px) {
  .card-img-top {
    height: 130px !important;
  }

  .btn-sm {
    font-size: 13px;
  }

  .card h6 {
    font-size: 13px;
  }

  .price-section {
    font-size: 13px;
  }

  .mobile-section {
      background-color: #ddd;
      padding: 10px;
  }
}

/* Fixed Footer (from original style) */
.fixed-footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: white;
  text-align: center;
  padding: 15px;
  box-shadow: 0px -2px 0px #0000002b;
  z-index: 1000;
}

.fixed-footer-nav {
  margin: 0!important;
  padding: 0!important;
  display: flex;
  justify-content: space-between;
}

.fixed-footer-nav li {
  flex: 1;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}

.fixed-footer-nav .active {
  font-weight: bold;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .navbar .btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .navbar-brand span {
    font-size: 1rem;
  }
}

