body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #000;
}

.heading {
  text-align: center;
  font-size: 2.5rem;
  margin: 40px 0 20px;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 40px 60px;
}

.product-card {
  position: relative;
  background: #fff;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #c9693b;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.title {
  margin: 15px 0 5px;
  font-size: 0.95rem;
}

.price {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}

/* ======= Navbar General Styling ======= */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 8px 12px;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background: #f0f0f0;
  border-radius: 5px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  color: black;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  list-style: none;
  background-color: white;
  padding: 10px 0;
  border: 1px solid #ccc;
  z-index: 100;
  min-width: 160px;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  color: black;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f0cda4;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
