* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}

.navbar {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;

}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:visited {
  color: inherit;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  margin-right: 30px;
}

.navitems {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}
.navitems .all p {
  text-decoration: underline;
}

.shoppingbag {
  display: flex;
  gap: 1rem;
  height: 24px;
}

.navlink p {
  margin: 0;
}

.navlink:hover p {
  text-decoration: underline;
  cursor: pointer;
}

.hamburger {
  display: none;
}

.pagehead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 5%;
}

.pagehead img {
  width: 30px;
  height: 35px;
  cursor: pointer;
}

.pagehead h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .navitems {
    display: none;
  }
  .hamburger{
    display: flex;
    align-items: center;
  }
}
@media (min-width: 481px) {
  .navitems {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}

.navitems a,
.navitems div {
  text-decoration: none;
  color: inherit;
}

.navlink p {
  margin: 0;
}

.navlink:hover p {
  text-decoration: underline;
  cursor: pointer;
}

  .hamburger {
    display: none;
  }
}
@media (max-width: 600px) {
  .logo h1 {
    font-size: 1.5rem;
  }
}
.cart-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2rem 5%;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #fafafa;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.price {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.add-btn {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid black;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s;
}

.add-btn:hover {
  background-color: #4b1d0d;
  color: #fff;
}

.allitems-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .navitems {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
  }

  .logo h1 {
    font-size: 1.5rem;
  }
}
.related-sets {
  margin-top: 3rem;
  padding: 2rem 5%;
}

.related-sets h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000;
}

.related-card {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-card {
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 270px;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.related-card img {
  width: 100%;
  height: auto;
  max-height: 150px;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.related-card p {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  color: #333;
}
