/* ============================================================
   NRM Product Cards — Front-end Styles
   ============================================================ */

/* ── Grid layout ───────────────────────────────────────────── */
.nrm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 1024px) {
  .nrm-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nrm-grid { grid-template-columns: 1fr; }
}

/* ── Card ───────────────────────────────────────────────────── */
.nrm-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nrm-card.nrm-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/* ── Image ──────────────────────────────────────────────────── */
.nrm-card__image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.nrm-card__image a {
  display: block;
  line-height: 0;
}

.nrm-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.nrm-card__image.nrm-zoom:hover img {
  transform: scale(1.06);
}

/* ── Sale Badge ─────────────────────────────────────────────── */
.nrm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f97b16;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  line-height: 1.3;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.nrm-badge strong {
  display: block;
  font-size: 12px;
}

/* ── Card body ──────────────────────────────────────────────── */
.nrm-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Title ──────────────────────────────────────────────────── */
.nrm-card__title {
  flex: 1;
  margin-bottom: 8px;
}

.nrm-card__title a {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.2s ease;
}

.nrm-card__title a:hover {
  color: #f97b16;
}

/* ── Price ──────────────────────────────────────────────────── */
.nrm-card__price {
  margin-bottom: 12px;
}

.nrm-card__price .price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nrm-card__price ins {
  text-decoration: none;
}

.nrm-card__price ins .woocommerce-Price-amount,
.nrm-card__price > .price > .woocommerce-Price-amount {
  font-size: 16px;
  font-weight: 700;
  color: #f97b16;
}

.nrm-card__price del {
  opacity: 1;
}

.nrm-card__price del .woocommerce-Price-amount {
  font-size: 13px;
  color: #aaaaaa;
  text-decoration: line-through;
}

/* ── Footer / Button ────────────────────────────────────────── */
.nrm-card__footer {
  margin-top: auto;
}

.nrm-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  line-height: 1;
}

.nrm-card__btn.nrm-btn-full {
  width: 100%;
}

.nrm-card__btn:hover {
  background-color: #1ebe5d;
  color: #ffffff;
  text-decoration: none;
  transform: scale(1.02);
}

.nrm-card__btn:active {
  transform: scale(0.97);
}

.nrm-card__btn svg,
.nrm-card__btn i {
  font-size: 16px;
  line-height: 1;
}

/* ── Empty state ────────────────────────────────────────────── */
.nrm-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #888;
  font-size: 15px;
  padding: 40px 0;
}
