
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Patrick Hand', cursive;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fdfdfd;
  border-bottom: 2px solid #000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
}

.nav-links a:hover {
  color: grey;
}


.shop {
  padding: 40px;
}


.category {
  margin-bottom: 50px;
  text-align: center;
}

.category h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding: 5px 15px;
}


.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}


.product-card {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 15px;
  width: 180px;
  background-color: #fff;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.product-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.product-price {
  font-size: 1rem;
  color: #444;
}


.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 3px 3px 0px #000;
}


@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }
}