/* Product Item */
.nicobay-product__item {
  position: relative;
  flex: 0 0 calc(33.333% - 16px); /* Default width */
}

/* Product Card */
.nicobay-product__card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; /* Added to contain absolute badge */
}

.nicobay-product__image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  /* background: #fafafa; */
}

.nicobay-product__image-wrapper img {
  min-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 3px;
}

.nicobay-product__info {
  padding: 0px 10px 10px 10px; /* Further reduced padding */
  display: flex;
  flex-direction: column;
  gap: 2px; /* Minimal gap */
  align-items: flex-start; /* 左寄せ */
  container-type: inline-size;
}

.nicobay-product__product-title {
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 2.4em;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .nicobay-product__product-title {
    font-weight: 400;
    font-size: 1.2rem;
  }
}

/* Price styling */
.nicobay-product__price {
  margin: 0;
  height: 3rem;
}

.nicobay-product__price .price-item {
  font-size: 1.4rem;
}

.nicobay-product__price .price-item--sale {
  font-size: 1.4rem;
  color: #ff4757;
}

/* 通常価格のスタイル（打ち消し線なし） */
.nicobay-product__price .price__regular .price-item--regular {
  text-decoration: none;
}

/* セール時の元価格（打ち消し線あり） */
.nicobay-product__price .price__sale s.price-item--regular {
  text-decoration: line-through;
  font-size: 1.2rem;
}

.nicobay-product__brand {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.1rem;
  font-weight: 400;
}

.nicobay-product__card-link {
  display: block;
  text-decoration: none;
  color: #333;
}

.product-info-wrapper {
  display: flex;
  align-items: center;
  row-gap: 3px;
  column-gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

@container (max-width: 200px) {
  .product-info-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nicobay-product__product-title {
    white-space: normal;
    line-height: 1.2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
