body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

/* Navbar Hover Effect */
.navbar .nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s;
  margin-left: 50px;
}
.navbar .nav-link:hover {
  color: #f97316;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s;
}
.navbar .nav-link:hover::after {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .image-label {
    font-size: 0.8rem;
    padding: 8px 12px;
    gap: 6px;
  }
}

.product-page {
  padding: 40px 15px;
}
/* Main product image */
.product-image img {
  width: 100%;
  max-width: 500px; /* bigger on laptop screens */
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-image img {
    max-width: 300px; /* smaller for mobiles */
  }
}
.price {
  font-size: 1.8rem;
  color: #28a745;
  font-weight: bold;
}
.btn-buy {
  background: linear-gradient(90deg, #28a745, #218838);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}
.btn-buy:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #218838, #28a745);
}
.btn-cart {
  background: #ffc107;
  color: black;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}
.btn-cart:hover {
  background: #e0a800;
  transform: scale(1.05);
}
.highlight-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.thumbnail {
  max-height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* Bigger vertical showcase images */
.extra-gallery img {
  border-radius: 10px;
  transition: 0.3s;
  height: 380px;
  object-fit: cover;
  width: 100%;
}
.extra-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
