/* Pouzima.sk – Phase 3 performance and catalogue layer */

.pz3-category-intro {
  margin: 14px 0 28px;
  padding: 20px 22px;
  background: #f7f8f9;
  border: 1px solid var(--pz-border, #e1e5e8);
  border-left: 4px solid var(--pz-primary, #f28c00);
  border-radius: 10px;
  color: var(--pz-ink, #20252b);
}
.pz3-category-intro p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
}
.pz3-category-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pz3-category-intro li {
  color: var(--pz-muted, #66717d);
  font-size: 14px;
}
.pz3-category-intro li::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--pz-success, #238636);
  margin-right: 7px;
}

.pz3-product-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  min-height: 100%;
  padding: 18px !important;
  margin-bottom: 22px !important;
  background: #fff;
  border: 1px solid var(--pz-border, #e1e5e8) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(24, 32, 40, .08);
  overflow: hidden;
}
.pz3-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(24, 32, 40, .14);
}
.pz3-product-card h4 {
  min-height: 44px;
  margin: 8px 0 4px;
  color: var(--pz-ink, #20252b);
  font-size: 18px;
  line-height: 1.25;
}
.pz3-product-card img {
  display: block;
  width: 100% !important;
  height: 210px !important;
  padding: 8px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.pz3-product-card .pz3-model {
  min-height: 22px;
  color: var(--pz-muted, #66717d);
  font-size: 14px;
  font-weight: 600;
}
.pz3-product-card .pz3-price {
  display: inline-flex;
  align-self: flex-start;
  margin: 13px 0 10px;
  padding: 6px 10px;
  color: #176b2b;
  background: #edf8f0;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
}
.pz3-availability {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 13px;
  color: #4d5965;
  font-size: 13px;
}
.pz3-availability__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--pz-success, #238636);
  box-shadow: 0 0 0 3px rgba(35, 134, 54, .12);
}
.pz3-product-card .pz3-detail {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  background: var(--pz-primary, #f28c00) !important;
  border: 1px solid var(--pz-primary, #f28c00) !important;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}
.pz3-product-card .pz3-detail:hover,
.pz3-product-card .pz3-detail:focus {
  background: var(--pz-primary-dark, #d87400) !important;
  border-color: var(--pz-primary-dark, #d87400) !important;
  transform: translateY(-1px);
}

.pz3-detail-availability {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 14px 16px;
  background: #f7f8f9;
  border: 1px solid var(--pz-border, #e1e5e8);
  border-radius: 9px;
}
.pz3-detail-availability strong {
  display: block;
  margin-bottom: 2px;
  color: var(--pz-ink, #20252b);
}
.pz3-detail-availability span:last-child {
  color: var(--pz-muted, #66717d);
  font-size: 13px;
}
.pz3-detail-availability .pz3-availability__dot {
  margin-top: 5px;
}

.pz3-performance-note {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 767px) {
  .pz3-category-intro {
    margin: 10px 0 22px;
    padding: 17px;
  }
  .pz3-category-intro ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .pz3-product-card {
    padding: 15px !important;
    margin-bottom: 16px !important;
  }
  .pz3-product-card img {
    height: 180px !important;
  }
  .pz3-product-card h4 {
    min-height: 0;
  }
}

@media (min-width: 768px) {
  .product-list .row,
  .product-list {
    align-items: stretch;
  }
}
