/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero {
  height: 85vh;
  background: url('/jutibazar/assets/images/jutibazar.png');
  position: relative;
}

@media (max-width: 991.98px) { /* Bootstrap's lg breakpoint */
  .navbar .nav-item + .nav-item {
    margin-top: 8px; /* vertical spacing */
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero .container {
  position: relative;
  z-index: 2;
}

/* Product Cards */
.card img {
  height: 220px;
  object-fit: cover;
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
}

/* About Section */
.bi {
  color: #ffb703;
}

/* Base sidebar */
#sidebar {
    width: 250px;
    transition: all 0.3s ease;
    overflow-y: auto;
    background: #222; /* adjust to your theme */
    color: #fff;
}

/* Desktop collapsed (only icons visible) */
#sidebar.collapsed {
    width: 70px;
}
#sidebar.collapsed .menu-item span {
    display: none; /* hide text, keep icons */
}
#sidebar.collapsed .menu-item i {
    margin-right: 0;
    text-align: center;
    width: 100%;
}

/* Mobile overlay */
@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        top: 0;
        left: -250px; /* hidden */
        height: 100%;
        z-index: 1050;
    }

    #sidebar.show {
        left: 0; /* slide in */
    }
}
