/* Home product grid (mobile-first) */
.homeGridWrap{
  margin-top: 14px;
}

.gridHdrRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 12px;
}

.gridTitle{
  font-weight: 1000;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.gridMeta{
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.productGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pCard{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
  min-height: 132px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.pCard:active{ transform: scale(.99); }

.pImg{
  width: 100%;
  height: 84px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  display:grid;
  place-items:center;
  margin-bottom: 10px;
}

.pImg img{ width:100%; height:100%; object-fit: cover; display:block; }

.pName{
  font-weight: 1000;
  font-size: 13px;
  color: rgba(255,255,255,.95);
  line-height: 1.1;
  margin-bottom: 6px;
}

.pDesc{
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
  min-height: 28px;
}

.pBottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-top: 10px;
}

.pPrice{
  font-weight: 1000;
  color: #3bf2b6;
  font-size: 13px;
}

.pAdd{
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 1000;
  font-size: 12px;
  border: 1px solid rgba(59,242,182,.35);
  background: rgba(59,242,182,.10);
  color: rgba(255,255,255,.92);
}

.pPager{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.pPager button{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  padding: 10px 14px;
  font-weight: 1000;
}

.pPager button.primary{
  border-color: rgba(59,242,182,.35);
  background: rgba(59,242,182,.10);
}

.pEmpty{
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  padding: 16px;
  color: rgba(255,255,255,.75);
  text-align:center;
}
