/* RMS商品カテゴリ一覧 — 多件数向けコンパクトレイアウト */

.maroan-rms-archive__header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e8ebf0;
}

.maroan-rms-archive__title {
  margin: 0 0 0.2rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.maroan-rms-archive__count {
  margin: 0;
  color: #6b7280;
  font-size: 0.85rem;
}

.maroan-rms-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.maroan-rms-product-card {
  margin: 0;
}

.maroan-rms-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.maroan-rms-product-card__link:hover {
  border-color: #c9d2e0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.maroan-rms-product-card__thumb {
  aspect-ratio: 1 / 1;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.35rem;
}

.maroan-rms-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.maroan-rms-product-card__noimg {
  color: #9ca3af;
  font-size: 0.7rem;
}

.maroan-rms-product-card__body {
  padding: 0.5rem 0.55rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-height: 0;
}

.maroan-rms-product-card__title {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.maroan-rms-product-card__subtitle {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.3;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.maroan-rms-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.15rem;
}

.maroan-rms-product-card__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #b45309;
  line-height: 1.2;
}

.maroan-rms-product-card__stock {
  font-size: 0.62rem;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  font-weight: 600;
}

.maroan-rms-product-card__stock.is-in-stock {
  color: #166534;
  background: #ecfdf3;
}

.maroan-rms-product-card__stock.is-out-of-stock {
  color: #991b1b;
  background: #fef2f2;
}

.maroan-rms-archive__pagination {
  margin-top: 1.5rem;
}

.maroan-rms-archive__empty {
  padding: 1.5rem;
  text-align: center;
  color: #6b7280;
  background: #f8f9fb;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* 広い画面では列を増やしてコンパクトに */
@media (min-width: 1200px) {
  .maroan-rms-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 0.55rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .maroan-rms-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .maroan-rms-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .maroan-rms-product-card__body {
    padding: 0.4rem 0.45rem 0.5rem;
  }

  .maroan-rms-product-card__title {
    font-size: 0.72rem;
    -webkit-line-clamp: 2;
  }

  .maroan-rms-product-card__subtitle {
    display: none;
  }

  .maroan-rms-product-card__price {
    font-size: 0.8rem;
  }
}