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

body {
  line-height: 1.6;
}

 header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background: #111;
        color: rgb(255, 102, 0);
      }

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

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

      nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
      }

      .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
      }

.shop {
  padding: 40px 20px;
}

.shop h1 {
  text-align: center;
  margin-bottom: 30px;
}
.controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.controls input,
.controls select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 180px;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
        nav ul {
          position: absolute;
          top: 60px;
          left: 0;
          width: 100%;
          flex-direction: column;
          background: #111;
          display: none;
        }

        nav ul.active {
          display: flex;
        }

        .menu-toggle {
          display: block;
        }
      }

.shop {
  padding: 40px 20px;
  background: #f9f9f9;
}

.shop h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

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

.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.card h3 {
  font-size: 18px;
  margin: 10px;
}

.card p {
  margin: 5px 10px;
  color: #555;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600;
}

.card button {
  margin: 15px 10px;
  width: calc(100% - 20px);
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: white;
  font-size: 15px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card:hover img {
  transform: scale(1.05);
}

.card button:hover {
  background: #ff6600;
}

@media (max-width: 768px) {
  .shop h1 {
    font-size: 24px;
  }

  .card img {
    height: 180px;
  }
}
.footer {
  background: #111;
  color: #ccc;
  padding-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 30px 30px;
}

.footer-section h2,
.footer-section h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social-icons img:hover {
  filter: none;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #0a0a0a;
  font-size: 13px;
  border-top: 1px solid #222;
}
@media (max-width: 768px) {
        .footer-container {
          text-align: center;
        }

        .social-icons {
          justify-content: center;
        }
      }