/* General styles */
body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Your existing CSS styles */

/* Navbar styles */
header {
  background-color: #292929;
  padding: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 300px; /* Adjust the size of the mini logo */
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-right: 80px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd700; /* Golden color on hover */
}


main {
  padding: 20px;
}

footer {
  background-color: #292929;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* Product card styles */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.product-card {
  width: calc(50% - 40px);
  max-width: 300px;
  flex: 1 1 300px;
  background-color: #363636;
  margin: 20px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.product-card h2 {
  font-size: 1.5em;
  margin-bottom: 8px;
  color: #ffd700; /* Golden text color */
}

.price {
  font-weight: bold;
  color: #ffd700; /* Golden text color */
}

.description {
  margin-bottom: 15px;
}

button {
  padding: 8px 16px;
  background-color: #ffd700; /* Golden button background */
  color: #1e1e1e; /* Dark text color for the button */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e6bb00; /* Slightly darker golden color on hover */
}
