/* General Layout */
body {
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Hero Banner */
.hero-section {
  position: relative;
  height: 70vh;
  background: url('../images/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

/* Product Cards */
.product-card {
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, #212529, #343a40);
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.3px;
}
