@charset "UTF-8";

/* ✅ Modern Product Card */
.product-card {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow:0 6px 14px rgba(0,0,0,0.08);
}
.product-thumb {
  width: 100%;
  height: 250px;          /* fixed height */
  object-fit: contain;    /* ✅ show full image */
  background-color: #fff; /* ✅ white background instead of grey bars */
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  display: block;
}

.product-card:hover .product-thumb {
  transform: scale(1.03);
}
.product-card h4 a {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.product-card h4 a:hover {
  color: #007bff;
}
.category-links {
  margin-top:40px;
  text-align:center;
}
.category-links a {
  display:inline-block;
  margin:4px;
  padding:6px 14px;
  background:#f7f7f7;
  border-radius:20px;
  font-size:14px;
  color:#333;
  text-decoration:none;
  border:1px solid #ddd;
  transition:all .2s;
}
.category-links a:hover {
  background:#007bff;
  color:#fff;
  border-color:#007bff;
}

.btn-primary:hover{
    background-color:#000 !important;
    border-color:#000 !important;
    color:#fff !important;
}