* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  color: #333;
}

.btn-pink {
  background-color: #D63384;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.btn-pink:hover {
  background-color: #C2185B;
  color: #fff;
}

.navbar-brand {
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.nav-link {
  font-size: 1rem;
}

.btn-outline-dark {
  border: 1px solid #222;
}
.btn-outline-dark:hover {
  background-color: #222;
  color: #fff;
}

.custom-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out;
  background: #fff;
}
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.product-img {
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
}

.custom-btn {
  background-color: #e91e63;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}
.custom-btn:hover {
  background-color: #c2185b;
  color: #fff;
}
footer {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-top: 1px solid #444;
}
