/* ===========================
   商品カード コンポーネント
   =========================== */
.product-card.product-card {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card__link.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  color: inherit;
}

.product-card.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__media.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  border-radius: 24px;
  overflow: hidden;
}

/* カート追加ボタン（商品画像 右下） */
.product-card__cart-btn.product-card__cart-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--white);
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.product-card__cart-btn.product-card__cart-btn:hover {
  background: var(--cyan);
  color: var(--white);
}

.product-card__cart-icon.product-card__cart-icon {
  width: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
  background-color: currentColor;
  -webkit-mask: url('../../assets/images/cart-add.svg') center / contain no-repeat;
  mask: url('../../assets/images/cart-add.svg') center / contain no-repeat;
}

.product-card__image.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card__body.product-card__body {
  padding: 20px 8px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 16px;
  row-gap: 10px;
  flex: 1;
}

.product-card__name.product-card__name {
  grid-column: 1;
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.product-card__price.product-card__price {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  justify-self: end;
  gap: 2px;
  margin: 0;
}

.product-card__price-num.product-card__price-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}

.product-card__price-unit.product-card__price-unit {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--navy);
}

.product-card__desc.product-card__desc {
  grid-column: 1 / -1;
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #9b9b9b;
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   レスポンシブ
   =========================== */
@media (max-width: 767px) {
  .product-card__name.product-card__name {
    font-size: 18px;
  }

  .product-card__cart-btn.product-card__cart-btn {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }

  .product-card__cart-icon.product-card__cart-icon {
    width: 20px;
    height: 20px;
  }
}
