/* ===============================
   MEN & KIDS PRODUCT GRID
   =============================== */

/* page wrapper */
.ethnic-page{
  max-width:1200px;
  margin:0 auto;
  padding:30px 16px 50px;
}

.ethnic-page h1{
  text-align:center;
  font-size:28px;
  font-weight:600;
  margin-bottom:6px;
}

.ethnic-page .page-sub{
  text-align:center;
  color:#666;
  font-size:14px;
  margin-bottom:28px;
}

/* ===============================
   GRID
   =============================== */
.ethnic-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr); /* PC: 4 */
  gap:20px;
}

/* ===============================
   PRODUCT CARD
   =============================== */
.product-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.product-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

/* ===============================
   LOADER
   =============================== */
#loader{
  font-size:14px;
  color:#555;
}

/* ===============================
   TABLET
   =============================== */
@media (max-width:1024px){
  .ethnic-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .product-card img{
    height:280px;
  }
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width:768px){
  .ethnic-grid{
    grid-template-columns:repeat(2, 1fr); /* Mobile: 2 */
    gap:14px;
  }

  .product-card img{
    height:220px;
  }

  .ethnic-page h1{
    font-size:22px;
  }
}

/* ===============================
   SMALL MOBILE
   =============================== */
@media (max-width:420px){
  .product-card img{
    height:200px;
  }
}
