/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  max-width: 1250px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
}

/* Header styles */
header {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

.logo img {
  width: 80px;
  margin-top: 7px;
  margin-left: 7px;
  background-color: white;
  border-radius: 3px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}

.menu {
  width: 850px;
  text-align: center;
  list-style: none;
  display: flex;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color: #555;
}

/* Main styles */
main {
  max-width: 1250px;
  margin: 20px auto;
  padding: 20px;
}

h1, h2, h3 {
  margin-bottom: 10px;
}

/* Welcome section styles */
#home {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
}

#home h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

#home p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

#home .hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust width based on available space */
  grid-gap: 20px;
  justify-content: center;
}

.product {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background-color: #FFA500;
  max-width: 280px; /* Limit product width */
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
}

.add-to-cart, .buy-now {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.add-to-cart:hover, .buy-now:hover {
  background-color: #0056b3;
}

/* About Us section styles */
#about {
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #ddd;
  color: #333;
  padding: 20px;
  text-align: center;
}

#about h2 {
  color: #333;
  font-size: 28px;
}

#about p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Us section styles */
#contact {
  background-color: #444;
  color: #fff;
  padding: 20px;
  text-align: center;
}

#contact h2 {
  font-size: 28px;
}

#contact p {
  font-size: 16px;
  line-height: 1.6;
}
.frulcn{list-style: none;}
/* Footer styles */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
}
