

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}
.brand-title {
  font-size: 1.5rem;
  color: #0d6efd;
  font-weight: 600;
}

/* Navbar */
.navbar {
  background-color: #0d6efd;
}
.navbar-nav .nav-link {
  color: #fff !important;
  padding: 10px 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffd43b !important;
}


/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #e3f2fd 0%, #f8f9fa 100%);
  padding: 60px 0;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
}
.btn-hero {
  background: #0d6efd;
  color: white;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-hero:hover {
  background-color: #0b5ed7;
  color: #fff;
}

/* Product Cards */

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.product-card .btn-add {
  border-radius: 50px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}
.product-card .btn-add:hover {
  background-color: #0b5ed7;
  color: #fff;
}
.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  padding: 2px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  z-index: 2;
}
.product-card {
  position: relative;
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: scale(1.02);
}


/* Filter Buttons */
.filter-btns {
  margin-bottom: 30px;
}
.filter-btn {
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* Footer */
footer {
  background-color: #212529;
  color: #e9ecef;
  padding: 40px 0 20px;
  font-size: 0.9rem;
}
footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #ffd43b;
}
footer h5, footer h6 {
  font-weight: 700;
  color: #fff;
}
footer .social-icons a {
  font-size: 1.2rem;
  margin-right: 15px;
}
footer .copyright {
  border-top: 1px solid #343a40;
  margin-top: 25px;
  padding-top: 15px;
  color: #6c757d;
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .product-img {
    height: 180px;
  }
}
