/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
}

h1, h2, h3 {
  font-family: 'Tahoma', sans-serif;
}

.hero {
  background-color: #444;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-card {
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
}

.card-text {
  font-size: 16px;
}

footer {
  background-color: #f8f9fa;
  padding: 20px;
}
.navbar-nav .nav-link {
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 4px;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}
.footer {
  border-top: 2px solid #444;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.footer .social-icon {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer .social-icon:hover {
  color: #0d6efd;
  text-decoration: none;
}

.footer h5 {
  color: #f8f9fa;
  margin-bottom: 0.5rem;
}
.small-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
}
.description-line-limit {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limits the text to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
