/* === Product card komponens (KÖZÖS) === */
.product-card {
  all: unset;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  box-shadow: none;
  height: 100%;
  padding: min(5%, 25px);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.product-card:hover {
  border-color: #555;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Kattintható link, ha van */
.product-card .product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Kép konténer és kép */
.product-card .product-card-image { position: relative; }

.product-card .product-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Termékinformációs rész */
.product-card .product-card-info { padding-top: 15px; }

.product-card .product-card-title {
  font-size: 19px;
  font-weight: 600;
  margin: 10px 0 5px;
  font-family: 'Poppins', sans-serif;
}

.product-card .product-card-subtitle {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Akciós címke */
.product-card.on-sale {
  border: 2px solid #fcc820;
  background-color: #f5f9ff;
  box-shadow: 0 0 10px rgba(209, 52, 52, 0.2);
}

.product-card.on-sale .product-card-image::after {
  content: "Kedvezményes";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d13434;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 5;
}

/* Termék ára */
.product-card-price {
  font-size: 16px;
  color: #a0a0a0;
  margin-top: 10px;
  font-weight: 500;
  display: block;
}

/* Kedvezmény lejárat */
.product-card .sale-end-label {
  display: block;
  font-size: 13px;
  color: #996633;
  margin-top: 6px;
  font-weight: 500;
}
