@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
  margin: 0;
}
.navbar {
  background: rgba(34, 40, 49, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.navbar-brand {
  font-weight: 700;
  color: #ffd700 !important;
  letter-spacing: 2px;
}
.nav-link, .navbar-nav .nav-link {
  color: #fff !important;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #ffd700 !important;
}
.hero2 {
  background: linear-gradient(rgba(34,40,49,0.7),rgba(34,40,49,0.7)), url('../../store 1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 80px 0;
  text-align: center;
}
.hero {
  background: linear-gradient(rgba(34,40,49,0.7),rgba(34,40,49,0.7)), url('/assets/images/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.btn-cta {
  background: #ffd700;
  color: #222;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 32px;
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover {
  background: #222;
  color: #ffd700;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
  margin-bottom: 32px;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(-5px) scale(1.03);
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 20px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
  text-align: center;
}
.footer {
  background: #222831;
  color: #fff;
  padding: 40px 0 20px 0;
  text-align: center;
}
.footer a {
  color: #ffd700;
  margin: 0 10px;
  transition: color 0.2s;
}
.footer a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 60px 0 40px 0; }
  .product-card img { height: 140px; }
}
.cart-bounce {
  animation: bounce 0.6s;
}
@keyframes bounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); }
  50% { transform: scale(0.95); }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); }
}