/* [project]/src/components/product/ProductCard.css [app-client] (css) */
.pc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex-direction: column;
  height: 100%;
  padding: 10px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px #0f172a0a;
}

.pc-card:hover {
  border-color: #0284c74d;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px #0284c71f, 0 4px 10px -2px #0f172a0a;
}

.pc-media {
  aspect-ratio: 1;
  background: #f8fafc;
  border-radius: 8px;
  display: block;
  position: relative;
  overflow: hidden;
}

.pc-media img {
  object-fit: contain;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  padding: 4px;
  transition: transform .3s;
  position: absolute;
  inset: 0;
}

.pc-card:hover .pc-media img {
  transform: scale(1.05);
}

.pc-img-primary {
  transition: opacity .3s;
}

.pc-card.has-hover:hover .pc-img-primary {
  opacity: 0;
}

.pc-img-secondary {
  opacity: 0;
  transition: opacity .3s;
}

.pc-card.has-hover:hover .pc-img-secondary {
  opacity: 1;
}

.pc-discount {
  z-index: 2;
  background: var(--product-card-badge-bg, #0284c7);
  color: #fff;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 8px;
  left: 8px;
  box-shadow: 0 2px 6px #0284c74d;
}

.pc-free-ship {
  z-index: 2;
  color: #fff;
  background: #16a34a;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 34px;
  left: 8px;
}

.pc-wish {
  z-index: 3;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #64748b;
  cursor: pointer;
  background: #ffffffe6;
  border: 1px solid #fffc;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .2s;
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  box-shadow: 0 2px 8px #0f172a1a;
}

.pc-card:hover .pc-wish {
  display: flex;
}

.pc-wish:hover {
  color: #ef4444;
  background: #fff;
  transform: scale(1.08);
}

.pc-wish.is-active {
  color: #fff;
  background: #ef4444;
  display: flex;
}

.pc-wish.is-active i {
  transform: scale(1.05);
}

@media (hover: none) {
  .pc-wish {
    display: flex;
  }
}

.pc-body {
  text-align: left;
  flex-direction: column;
  flex: auto;
  margin-top: 10px;
  display: flex;
}

.pc-title {
  -webkit-line-clamp: 2;
  color: #1e293b;
  -webkit-box-orient: vertical;
  height: 38px;
  margin-bottom: 6px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color .15s;
  display: -webkit-box;
  overflow: hidden;
}

.pc-title:hover {
  color: var(--theme-accent, #0284c7);
}

.pc-price {
  color: #0f172a;
  align-items: center;
  gap: 8px;
  margin: 4px 0 12px;
  font-weight: 700;
  display: flex;
}

.pc-price .pc-now {
  color: var(--product-card-price-color, #0f172a);
  font-size: 15px;
  font-weight: 700;
}

.pc-price del {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 400;
}

.pc-order {
  background: var(--product-card-btn-bg, #0284c7);
  width: 100%;
  color: var(--product-card-btn-color, #fff);
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  box-shadow: 0 2px 8px #0284c740;
}

.pc-order:hover {
  background: var(--product-card-btn-hover, #0369a1);
  color: #fff;
  box-shadow: 0 4px 12px #0284c759;
}

/*# sourceMappingURL=src_components_product_ProductCard_1niyah5.css.map*/