body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f8;
  color: #333;
}

header {
  background-color: #0057b7;
  color: white;
  padding: 20px;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

main {
  padding: 40px;
  text-align: center;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  position: fixed;
  width: 100%;
  bottom: 0;
}












.categories h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.category-card {
  background-color: #ffffff;
  border: 2px solid #0057b7;
  color: #0057b7;
  padding: 30px 50px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.category-card:hover {
  background-color: #0057b7;
  color: white;
  transform: scale(1.05);
}




.products h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  text-align: center;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 10px 0;
}

.product-card button {
  background-color: #0057b7;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
}

.product-card button:hover {
  background-color: #003f8a;
}


.cart-section {
  text-align: center;
  padding: 40px;
}

#cart-items {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

#cart-items li {
  background: #fff;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#checkout-btn {
  margin-top: 20px;
  background-color: #28a745;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#checkout-btn:hover {
  background-color: #218838;
}




.payment-section {
  text-align: center;
  padding: 60px;
}

.payment-options button {
  background-color: #0057b7;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  margin: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.payment-options button:hover {
  background-color: #004099;
}


























































































.welcome-banner {
  background-image: url('sale-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* This is what controls the image size on screen */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}


.shop-button {
  margin-top: 20px;
  background-color: #c68958;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.shop-button:hover {
  background-color: #a9703b;
}





.sale-image {
  width: 80%;
  max-width: 600px;
  height: 250px;
  display: block;
  margin: 10px auto;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
