.product-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  width: auto;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
  transform: scale(1.03);
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}

.card-text {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-tag {
  font-weight: 700;
  color: #e74c3c;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.btn-order {
  background: linear-gradient(45deg, #3498db, #2ecc71);
  border: none;
  border-radius: 50px;
  padding: 7px 12px;
  font-weight: 520;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.badge {
  font-size: 0.7rem;
  padding: 5px 10px;
  font-weight: 5200;
  letter-spacing: 0.5px;
}

.badge-success {
  background-color: #2ecc71;
}

.badge-warning {
  background-color: #f39c12;
}

.badge-danger {
  background-color: #e74c3c;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
}

.rating {
  color: #f1c40f;
}

.btn-wishlist {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  border: none;
  border-radius: 50px;
  padding: 7px 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
  color: white;
}

.btn-wishlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-wishlist.added {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Sidebar Styles */
.sidebar {
  background: #f8f9fa;
  min-height: 100vh;
  transition: all 0.3s ease;
  border-right: 1px solid #dee2e6;
  position: relative;
  z-index: 1000;
}

.sidebar-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

/* Main content area */
.main-content {
  padding: 20px;
  transition: all 0.3s;
  min-height: 100vh;
  background: #fff;
}

/* Product card styles */
.product-card {
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-wishlist.added {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.price-tag {
  color: #0d6efd;
}

/* Mobile styles */
@media (max-width: 767.98px) {
  .sidebar {
    position: fixed;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    top: 0;
    z-index: 1040;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .sidebar.active {
    left: 0;
  }

  .sidebar-toggle {
    position: sticky;
    left: 15px;
    top: 20px;
    z-index: 1050;
  }

  .main-content {
    padding-top: 70px;
  }

  .product-card {
    margin-bottom: 20px;
  }
  .main-content {
    padding: 15px 10px;
  }

  .col-sm-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}
