.xnp { margin: 28px 0 8px; }
.xnp__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.xnp__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}
.xnp__more {
  font-size: 13px;
  font-weight: 700;
  color: #e84080;
  white-space: nowrap;
}
.xnp__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.xnp__card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 4px 14px rgba(20,16,26,.04);
}
.xnp__img {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f7f8;
  margin: 0 0 8px;
}
.xnp__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.xnp__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #1d1d1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  margin: 0 0 6px;
}
.xnp__price {
  font-weight: 800;
  font-size: 15px;
  color: #1d1d1f;
  margin: auto 0 8px;
}
.xnp__old {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #9aa0a6;
  text-decoration: line-through;
}
.xnp__new { color: #e84080; }
.xnp__btn {
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f05a96, #e84080);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .xnp__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .xnp__title { font-size: 22px; }
}
@media (min-width: 1200px) {
  .xnp__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
