.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #d9d9d9;
}

.product-card:focus-visible {
  outline: 2px solid #3483fa;
  outline-offset: 3px;
}

.product-card--soldout {
  cursor: default;
  opacity: 0.94;
}

.product-card--soldout:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-color: #e6e6e6;
}

.product-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 188px;
  padding: 14px 14px 8px;
  background: #ffffff;
}

.product-card__image {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 10px 14px 16px;
  background: #ffffff;
}

.product-card__title {
  order: 2;
  color: rgba(0, 0, 0, 0.9);
  font-family: "Proxima Nova", -apple-system, "Helvetica Neue", helvetica, roboto, arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title strong {
  font-family: "Proxima Nova", -apple-system, "Helvetica Neue", helvetica, roboto, arial, sans-serif;
  font-weight: 400;
}

.product-card__old-price {
  order: 3;
  color: rgba(0, 0, 0, 0.55);
  display: flex;
  font-family: "Proxima Nova", -apple-system, "Helvetica Neue", helvetica, roboto, arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: line-through;
}

.product-card__price-row {
  order: 4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.product-card__new-price {
  color: rgb(0, 0, 0);
  font-family: "Proxima Nova", -apple-system, "Helvetica Neue", helvetica, roboto, arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
}



.product-card__coupon-row {
  order: 5;
}

.product-card__delivery {
  order: 6;
}

.product-card__content > .shipping-badge {
  order: 7;
}

.product-card__content > .stock-badge {
  order: 8;
}

.product-card--soldout .product-card__title {
  min-height: auto;
}

.product-card--soldout .product-card__content {
  gap: 9px;
}

.product-card--soldout .product-card__image-wrap {
  height: 188px;
}

.product-card--soldout .product-card__image {
  max-height: 150px;
}

.product-card__price {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
}

.product-card__currency,
.product-card__amount {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  transform: translateY(-2px);
}

.product-card__currency {
  margin-right: 2px;
}

.product-card__amount {
  letter-spacing: -0.6px;
}

.product-card__cents {
  font-size: 13px;
  line-height: 1;
  margin-left: 4px;
}

.badge--soldout {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  order: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a4f 0%, #f2362f 100%);
  color: #ffffff;
  font-family: "Proxima Nova", -apple-system, "Helvetica Neue", helvetica, roboto, arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(242, 54, 47, 0.18);
}

.badge--soldout .material-symbols-outlined {
  font-size: 14px;
  color: #ffffff;
}

.product-card--soldout {
  cursor: default;
  background: linear-gradient(180deg, #fcfcfc 0%, #f7f7f7 100%);
  border-color: #e9e9e9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.035);
  opacity: 1;
}

.product-card--soldout:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.035);
  border-color: #e9e9e9;
}

.product-card__image-wrap--soldout {
  background: #ffffff;
}

.product-card__image--soldout {
  filter: grayscale(0.25) saturate(0.8) opacity(0.9);
}

.product-card__content--soldout {
  gap: 7px;
}

.product-card__title--soldout {
  color: rgba(0, 0, 0, 0.72);
}

.product-card__delivery--soldout {
  background-color: rgba(242, 54, 47, 0.1);
  color: rgb(242, 54, 47);
}

.coupon-pill--muted {
  background-color: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.45);
}

.coupon-pill--muted .coupon-pill__svg {
  color: rgba(0, 0, 0, 0.45);
}

.shipping-badge--muted,
.shipping-badge--muted .shipping-badge__icon,
.shipping-badge--muted strong {
  color: rgba(0, 166, 80, 0.72);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #d9d9d9;
}

.product-card.is-pressing {
  transform: translateY(1px) scale(0.985);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.035);
  border-color: #d4d4d4;
}

.product-card:focus-visible {
  outline: 2px solid #3483fa;
  outline-offset: 3px;
}

.product-card--soldout {
  cursor: default;
  opacity: 0.94;
}

.product-card--soldout:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-color: #e6e6e6;
}

.product-card--soldout.is-pressing {
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.035);
}

.product-card.is-pressing {
  transform: translateY(2px) scale(0.978);
}