/*for profile image */
    .profile-wrapper {
  position: relative;
  width: 85px;
  height: 85px;
}

.profile-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.camera-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

.camera-icon i {
  font-size: 18px;
}

/* end */
  .sidebar-menu-wrapper {
    width: 300px;
    max-width: 100%;
    background: #fff;
    border-right: 1px solid #ddd;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 1rem;
    z-index: 999;
    transition: all 0.3s ease;
    transform: translateX(-100%);
  }

  .sidebar-menu-wrapper.open {
    transform: translateX(0);
  }

  .sidebar-header h5 { font-size: 1rem; }

  .sidebar-footer li {
    padding: 10px 0;
    font-size: 0.95rem;
    cursor: pointer;
  }
  .sidebar-footer li i {
    margin-right: 6px;
  }

  .sidebar-user .user-image img {
    object-fit: cover;
}
.sidebar-user .user-info {
    flex-grow: 1;
}

/* Square checkbox styling */
.square-check .form-check-input {
  border-radius: 0; /* Makes it square */
  margin-right: 0.5rem;
}


.category-list li {
  position: relative;
  padding-left: 1.5rem; /* space for icon */
  margin-bottom: 0.5rem;
}

.category-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid black; /* red outline */
  border-radius: 2px; /* square corners */
  background-color: transparent; /* unfilled */
}

/* Button styling inside li */
.category-btn {
  background: none;
  border: none;
  padding: 0;
  color: black;
  font-weight: 500;
  text-align: left;
  display: inline-block;
  transition: color 0.3s ease;
}

.category-btn:hover {
  color: #b71c1c; /* darker red */
  text-decoration: none;
  cursor: pointer;
}


/* for sidemenu */

 .sidemenu-cart-close {
                                border: none;
                                background: transparent;
                                padding: 0;
                                margin: 0;
                                box-shadow: none;
                                display: inline-block;
                                }
                                    .sidemenu-cart-close img {
                                    width: 24px;
                                    height: 24px;
                                    cursor: pointer;
                                    }
                                    .sidemenu-cart-close {
                                        border: none !important;
                                        background: transparent !important;
                                        box-shadow: none !important;
                                        padding: 0 !important;
                                        margin: 0 !important;
                                        }
