/* ── KARTA PRODUKTU — wspólny CSS dla archive i single ── */
.product-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.product-card__image-wrap {
    position: relative;
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f5f5f5;
}
.product-card__zoom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    opacity: 0.55;
    transition: opacity 0.2s;
    display: block;
    line-height: 0;
}
.product-card__zoom:hover { opacity: 1; }
.product-card__zoom img { width: 30px; height: 30px; object-fit: contain; }
.product-card__image-wrap > a:not(.product-card__zoom) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product-card__image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-card__image-placeholder {
    width: 130px;
    height: 130px;
    background: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    text-align: center;
    padding: 10px;
}

.product-card__info {
    width: 100%;
    padding: 16px 12px 14px;
    text-align: center;
}
.product-card__name  { display: block; font-weight: 700; font-size: 13px; color: #111; line-height: 1.35; margin-bottom: 10px; text-decoration: none; cursor: pointer; }
a.product-card__name:hover { color: #ff5a1f; text-decoration: underline; }
.product-card__shaft { font-weight: 700; font-size: 13px; color: #111; line-height: 1.35; }
.product-card__cat   { font-size: 12px; color: #444; margin-top: 4px; }
.product-card__nr    { font-size: 12px; color: #111 !important; margin-top: 0; margin-bottom: 0; }
.product-card__info,
.product-card__info:hover,
.product-card__info:visited,
.product-card__info p {
    text-decoration: none !important;
    color: #111 !important;
}

.product-card__actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.product-card__action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 15px 4px 12px;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.product-card__action:hover { color: #ff5a1f; }
.product-card__action img   { width: 42px; height: 42px; object-fit: contain; }
.product-card__action span  { font-size: 10.5px; text-align: center; line-height: 1.2; }
