/* ── 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 {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f5f5f5;
}
.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  { font-weight: 700; font-size: 13px; color: #111; line-height: 1.35; margin-bottom: 2px; }
.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__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: #d71920; }
.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; }
