:root {
  --primary: #0d6efd;
}

* {
  scroll-behavior: smooth;
}

.navbar {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
              url("back.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 50px;
}

.product-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  overflow: hidden;
  height: 100%;
  border-radius: 15px;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.product-card .product-img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.12);
}

.like-btn {
  transition: all 0.3s ease;
}

.like-btn.liked {
  color: #e74c3c;
  animation: heartPop 0.4s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.category-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.12);
}

.badge-new {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #28a745;
  color: white;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.rating-stars {
  color: #ffc107;
}

.empty-state {
  min-height: 400px;
}
.custom-bg{
  background-color:#0f172a ;
  color: white;
}  