.kpop-merch-title{
  margin-top: 50px;
  padding: 4% 5%;
  color: #ff4d88;
}

.kpop-merch-title h1{
  font-size: 70px;
  font-family: "Gratelos", sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}

/* FILTER */
.filter {
  position: relative;
  margin: 20px 5%;
}

.filter-btn {
  font-size: 18px;
  color: #ff4d88;
  cursor: pointer;
}

.filter-dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  display: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 200px;
  z-index: 9999;
}

.filter-dropdown p {
  padding: 10px;
  cursor: pointer;
}

.filter-dropdown p:hover {
  background: #ff4d88;
  color: #fff;
}

/* PRODUCT GRID */
.kpop-merch-product-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 50px 5%;
}

.kpop-merch-product-card {
  text-align: center;
  transition: 0.3s;
}

.kpop-merch-product-card h4{
  margin: 5px 0 5px;
  font-family: "Oswald", sans-serif;
   color: #ff4d88;
   font-size: 20px;
   
}

.kpop-merch-product-card p{
  color: #555;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  margin-top: 3px;
}

.kpop-merch-product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

.kpop-merch-product-card:hover {
  transform: translateY(-5px);
}

/* PAGINATION */
.pagination{
  text-align:center;
  margin: 40px 0;
}

.pagination a{
  display:inline-block;
  padding:10px 14px;
  margin:4px;
  border:1px solid #ff4d88;
  color:#ff4d88;
  text-decoration:none;
  border-radius:8px;
}

.pagination a.active{
  background:#ff4d88;
  color:white;
}
@media (max-width: 1300px) {
  .kpop-merch-product-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .kpop-merch-product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .kpop-merch-title h1{
    font-size: 45px;
    text-align: center;
  }

  .kpop-merch-product{
    padding: 20px 15px;
  }

  .kpop-merch-product-container {

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }

  .kpop-merch-product-card{
    border-radius: 12px;
  }

  .kpop-merch-product-card img{

    height: 220px;

    border-radius: 12px;
  }

  .kpop-merch-product-card h4{

    font-size: 14px;

    margin-top: 8px;
    margin-bottom: 8px;
  }

}