/* ========================================
   Lucas ECサイト - 商品一覧ページ専用
   ======================================== */

.category-tab {
  position: relative;
  padding-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8C8C8C;
  transition: color 0.3s ease;
}
.category-tab:hover {
  color: #F5F5F5;
}
.category-tab.active {
  color: #F5F5F5;
}
.category-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #F5F5F5;
}

.product-card .aspect-ratio-container {
  position: relative;
  overflow: hidden;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover img {
  transform: scale(1.05);
}

.badge-new {
  background-color: #F5F5F5;
  color: #111111;
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.badge-soldout {
  background-color: #1A1A1A;
  color: #8C8C8C;
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: 1px solid #333;
}
