﻿/* ===  3-4 produkty vedle sebe === */




.product-grid {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
}


.product-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.product-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* CARD */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  height: 100%;
}


/* IMAGE */
.product-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}


.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* OPTIONAL BADGE */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #7d7d7d;
}


.product-card__badge--yellow {
  background: #f5c400;
  color: #111;
}


.product-card__badge--orange {
  background: #f47b00;
  color: #fff;
}


/* OPTIONAL ICON */
.product-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  color: #111;
}


/* CONTENT */
.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 18px;
  text-align: center;
}


.product-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #1b1b1b;
}


.product-card__title a {
  color: inherit;
  text-decoration: none;
}


.product-card__title a:hover {
  text-decoration: underline;
}


.product-card__desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}


.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
}


.product-card__stock {
  color: #14a800;
  font-weight: 500;
}


.product-card__price {
  color: #1b1b1b;
  font-weight: 700;
  white-space: nowrap;
}


/* BUTTON TO BOTTOM */
.product-card__button {
  margin-top: auto;
}


/* pokud chcete, aby tlačítko zabralo šířku podobně jako na obrázku */
.product-card__button .cta-button-red,
.product-card__button .cta-button-green,
.product-card__button .cta-button-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  text-align: center;
}


/* RESPONSIVE */
@media (max-width: 1199px) {
  .product-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 991px) {
  .product-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .product-card__content {
    padding: 20px 20px 16px;
  }
}


@media (max-width: 640px) {
  .product-grid--3,
  .product-grid--4 {
    grid-template-columns: 1fr;
  }


  .product-card__title {
    font-size: 17px;
  }


  .product-card__desc,
  .product-card__meta {
    font-size: 14px;
  }
}