/* Alize — Product card (pcard) */

body.alize-theme .pcard {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
}

body.alize-theme .pcard-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

body.alize-theme .pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
  transition: transform 0.5s ease;
}

body.alize-theme .pcard:hover .pcard-img-wrap img {
  transform: scale(1.05);
}

body.alize-theme .pcard-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

body.alize-theme .pcard .badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

body.alize-theme .pcard .badge-sale {
  background: #c0392b;
  color: #fff;
}

body.alize-theme .pcard .badge-new {
  background: var(--navy);
  color: var(--gold-light);
}

body.alize-theme .pcard .badge-promo {
  background: #7c3aed;
  color: #fff;
}

body.alize-theme .pcard-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(198, 166, 100, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: rgba(34, 31, 26, 0.5);
  transition: all 0.2s;
}

body.alize-theme .pcard-wish:hover,
body.alize-theme .pcard-wish.active {
  color: #c0392b;
  border-color: #f5b7b1;
  background: #fff5f5;
}

body.alize-theme .pcard-body {
  padding: 14px 16px 8px;
  flex: 1;
}

body.alize-theme .pcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.alize-theme .pcard-variants {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 8px;
}

body.alize-theme .pcard-variants-label {
  font-size: 11px;
  color: #9a9488;
}

body.alize-theme .pcard-size {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 4px;
  color: var(--ink);
}

body.alize-theme .pcard-size.out {
  text-decoration: line-through;
  opacity: 0.45;
}

body.alize-theme .pcard-footer {
  padding: 10px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(20, 33, 61, 0.08);
  margin-top: auto;
}

body.alize-theme .pcard-price .price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

body.alize-theme .pcard-price .price-original {
  font-size: 12px;
  color: #9a9488;
  text-decoration: line-through;
}

body.alize-theme .pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--navy);
  color: var(--gold-light);
  border: none;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

body.alize-theme .pcard-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

body.alize-theme .pcard-btn-oos {
  background: #ece8e0 !important;
  color: #9a9488 !important;
  cursor: not-allowed !important;
}

body.alize-theme .pcard-ship {
  padding: 8px 16px 12px;
  font-size: 11px;
  color: #9a9488;
  border-top: 1px solid rgba(20, 33, 61, 0.06);
}

body.alize-theme .pcard-ship i {
  margin-right: 4px;
}
