.bew-footer {
  background: #111;
  color: #fff;
  font-size: 14px;
}

.footer-title {
  color: #fdd835;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fdd835;
}

.footer-icons div {
  margin-top: 6px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
}

.payment-icons img {
  height: 28px;
  margin-right: 8px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}

.newsletter {
  display: flex;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.newsletter button {
  background: #fdd835;
  border: none;
  padding: 10px 16px;
  font-weight: bold;
}

.footer-extra a {
  color: #4dd0e1;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
}

.wishlist-card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.list-group-item {
  border: none;
}

.list-group-item.active {
  background: #000;
  color: #fff;
  font-weight: 600;
}

.list-group-item:hover {
  background: #f8f9fa;
}

.card {
  border-radius: 12px;
}


