/* Unified product card: .pc + ★ rating.
   Используется на всех listing-страницах: /catalog, /catalog/{brand},
   /raspiv/*, /accords/*, /, /brand/*. SSR (cards_ssr.py) и JS-рендер
   страниц должны выдавать одинаковую HTML-структуру.
   Правило: единая карточка товара и отображение (см. memory). */
.pg{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:14px;margin-bottom:32px;align-items:stretch}
.pc{border-radius:8px;background:#fafafa;overflow:hidden;text-decoration:none;color:#1a1a1a;transition:transform 0.2s,box-shadow 0.2s;display:flex;flex-direction:column;height:100%}
.pc:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,0.08)}
.pc-img{width:100%;aspect-ratio:1;object-fit:contain;background:#fff;display:block}
.pc-body{padding:10px 12px;display:flex;flex-direction:column;flex:1}
.pc-name{font-size:13px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:3px}
.pc-brand{font-size:11px;color:#888;margin-bottom:5px}
.pc-gender{font-size:10px;color:#bbb}
.pc-notes{font-size:11px;color:#aaa;line-height:1.5;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.pc-accords{display:flex;gap:4px;flex-wrap:wrap;margin-bottom:6px}
.pc-accord{font-size:10px;padding:3px 8px;background:#f0f0f0;border-radius:8px;color:#666}
.pc-bottom{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:auto;padding-top:8px}
.pc-rating{font-size:12px;color:#888;font-weight:400;line-height:1}
.pc-add{width:30px;height:30px;border-radius:50%;border:1px solid #e0e0e0;background:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:17px;color:#888;transition:all 0.15s;padding:0;line-height:1;flex-shrink:0;font-family:inherit}
.pc-add:hover{border-color:#1a1a1a;color:#1a1a1a}
.pc-add.added{background:#1a1a1a;color:#fff;border-color:#1a1a1a}

@media(max-width:768px){
    .pg{grid-template-columns:repeat(2,1fr);gap:8px}
    .pc-body{padding:8px 10px}
    .pc-name{font-size:12px}
    .pc-brand{font-size:10px;margin-bottom:3px}
    .pc-notes{font-size:10px;margin-bottom:4px}
    .pc-accords{display:none}
    .pc-rating{font-size:11px}
    .pc-add{width:26px;height:26px;font-size:14px}
}
