
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a.active {
  text-decoration: underline;
}

.search-bar {
  margin-top: 10px;
}

.search-bar input {
  padding: 5px;
  width: 200px;
}

.search-bar button {
  padding: 6px 10px;
  background-color: #555;
  color: white;
  border: none;
}

.hero {
  background-color: #007BFF;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.featured, .page-header, .contact-form, .faq-list, .category-list, .product-grid, .cart-container {
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.category-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.category-card, .product-card {
  background: #eee;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}

.product-card button {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

form label {
  display: block;
  margin-top: 10px;
}

form input, form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

form button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 3px;
}

.faq-item {
  margin-bottom: 15px;
}

.cart-items {
  margin-top: 20px;
}

.cart-items div {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer .social-icons a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}
.why-choose-us {
  text-align: center;
  padding: 10px;
  border: #222
;
}
.about-us {
  text-align: center;
}


