/* Reusable Product Card (tab carousel style) */
.pct-card {
  min-width: 0;
}
.pct-card-inner {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pct-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pct-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.pct-card-image img,
.pct-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pct-card-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.pct-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pct-card-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
.pct-card-subtitle {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #888;
  line-height: 1.4;
}
.pct-card-selling-points {
  margin-bottom: 12px;
}
.pct-selling-point {
  font-size: 13px;
  line-height: 1.5;
}
.pct-card-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.pct-card-price .pct-compare-price {
  font-size: 13px;
  text-decoration: line-through;
  color: #999;
  white-space: nowrap;
}
.pct-card-price .pct-current-price {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.pct-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.pct-card-button {
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.pct-card-button:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .pct-card-info {
    padding: 12px;
  }
  .pct-card-title {
    font-size: 16px;
  }
  .pct-card-subtitle {
    font-size: 13px;
  }
  .pct-selling-point {
    font-size: 12px;
  }
  .pct-card-button {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 640px) {
  .pct-card-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .pct-card-button {
    width: 100%;
    padding: 10px 12px;
  }
}

@media screen and (max-width: 360px) {
  .pct-card-info {
    padding: 10px;
  }
  .pct-card-title {
    font-size: 15px;
  }
  .pct-card-button {
    font-size: 11px;
  }
}
