body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.logo {
  width: 90px;
  height: 80px;
  border-radius: 10%;
}

header {
  background: black;
  color: white;
  padding: 10px 30px;
  position: sticky;
  top: 0;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  background-color: white;
  height: 3px;
  width: 25px;
  margin: 3px 0;
}

header ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

header ul li {
  margin: 0 10px;
}

header ul li a {
  color: white;
  text-decoration: none;
}

.banner {
  background: url('Images/curtain-3.jpg') no-repeat center center/cover;
  color: black;
  text-align: left;
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 5% right 0;
  padding: 10px 0px;
}

.text {
  margin-left: 20px;
  font-size: 50px;
}

.name {
  color: rgb(11, 107, 86);
}

.banner .btn {
  background: #ff5733;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.products {
  padding: 20px;
  text-align: center;
}

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

.product-card {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  margin: 20px;
  max-width: 300px;
}

.footer-column h3 {
  border-bottom: 2px solid #3498db;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.footer-column p,
.footer-column a {
  color: #bdc3c7;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #ecf0f1;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
  width: 50px;
}

.footer .social-icons a {
  color: #ecf0f1;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #7f8c8d;
  padding-top: 10px;
}

.ali {
  text-decoration: none;
  color: blue;
}

/* cart */
/* Main Content Styles */
main {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#cart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Cart Item Styles */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}

.cart-item h3 {
  font-size: 1.2rem;
  margin: 0;
}

.cart-item p {
  margin: 0.5rem 0;
}

.cart-item .subtotal {
  font-weight: bold;
  color: #007bff;
}

/* Cart Summary Styles */
.cart-summary {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #ddd;
}

.cart-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cart-summary p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#checkout-btn {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#checkout-btn:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 600px) {
  main {
    padding: 1rem;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item h3 {
    font-size: 1rem;
  }

  .cart-item p {
    font-size: 0.9rem;
  }

  #checkout-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .cart-summary h2 {
    font-size: 1.2rem;
  }

  .cart-summary p {
    font-size: 1rem;
  }

  header ul {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: black;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }

  nav {
    height: 50px;
    display: flex;
    justify-content: space-between;
  }

  .text {
    margin-left: 20px;
    font-size: 30px;
  }

  .banner {
    background: url('Images/curtain-4.jpg') no-repeat center center/cover;
  }

  .logo {
    width: 50px;
    height: 40px;
    border-radius: 10%;
  }

  .name {
    color: white;
  }

  .footer {
    flex-direction: column;
  }

  ul.active {
    display: flex;
  }


  .menu-toggle {
    display: flex;
  }

}