body {
  background-color: blanchedalmond;
}

.product-card {
  width: 300px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  padding: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-img-container {
  width: 100%;
  height: 350px; 
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-img-container img {
  transform: scale(1.1); 
}

.product-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0px;
  color: #333;
}

.product-price {
  font-size: 1rem;
  color: #777;
  margin-top: 0px;
}

.sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -250px;
  background: #343a40;
  padding-top: 60px;
  transition: 0.3s;
}
.sidebar a {
  padding: 10px 20px;
  display: block;
  color: white;
  text-decoration: none;
}
.sidebar a:hover {
  background: #495057;
}
.sidebar.active {
  left: 0;
}
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.menu-overlay.active {
  display: block;
}

.social-icons a i:hover {
  color: #ff5722 !important; 
  transform: scale(1.2);
  transition: transform 0.3s ease, color 0.3s ease;
}

.hover-link {
  color: #f8f9fa; 
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.hover-link:hover {
  color: #ff5722 !important; 
  text-decoration: underline; 
}
