body {
  font-family: sans-serif;
  background: #f1f1f1;
}

.topbar {
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card.shadow.p-4, .card.shadow.p-3 {
  padding: 1rem !important;
  margin: auto;
  border-radius: 10px;
}
.logo {
  max-height: 40px;
}

.search-bar {
  background-color: #000;
  padding: 10px;
}

.search-bar input {
  border-radius: 30px;
  padding-left: 15px;
}

.category-bar {
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 5px;
  margin-bottom: 5px;
  height: 100%;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.price {
  font-size: 16px;
  color: #28a745;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}

.btn-order,
.btnn.btn-orderdetails {
  background: #000;
  color: white;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.menu-icon,
.cart-icon {
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
}

/* Footer Styling */
.footer {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-about {
  flex: 1 1 100%;
  min-width: 100%;
}

.footer-links,
.footer-category {
  flex: 1 1 45%;
  min-width: 250px;
}

footer h3,
footer h4 {
  font-weight: bold;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #00bcd4;
  text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 767px) {
  .footer-about {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }

  .footer-links,
  .footer-category {
    flex: 1 1 50% !important;
    min-width: 50% !important;
  }
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background-color: #111;
  color: white;
  z-index: 9999;
  transition: left 0.3s ease;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.6);
}

.side-menu.active {
  left: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

.menu-overlay.active {
  display: block;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-logo {
  height: 40px;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
}

.menu-list {
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.menu-list li {
  margin: 20px 0;
}

.menu-list a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s;
}

.menu-list a:hover {
  color: #f1c40f;
  text-decoration: underline;
}

/* Swiper Image */
.swiper {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}.order-form input.form-control,
.order-form select.form-select,
.order-form textarea.form-control {
  font-size: 18px !important;      /* লেখা বড় */
  padding: 14px 16px !important;   /* হাইট বাড়ানো */
  min-height: 52px !important;     /* মিনিমাম উচ্চতা */
}
