.consumables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 24px auto 0;
}
.consumable-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    border: 1px solid #e2e8f0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}
.consumable-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.consumable-card-img {
    height: 160px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8fafc;
}
.consumable-card-body { padding: 14px 16px 20px; }
.consumable-card h3 { font-size: 1rem; margin: 0 0 6px; font-weight: 700; }
.consumable-card p { font-size: 0.85rem; color: #475569; margin-bottom: 8px; }
.consumable-price { font-weight: 800; font-size: 1.25rem; color: #0f172a; }

.cons-list { display: flex; flex-direction: column; gap: 0; }
.cons-row {
    display: flex;
    align-items: stretch;
    min-height: 260px;
    overflow: hidden;
}
.cons-row:first-child { border-radius: 28px 28px 0 0; }
.cons-row:last-child  { border-radius: 0 0 28px 28px; }
.cons-row:first-child:last-child { border-radius: 28px; }
.cons-img {
    flex: 1;
    min-height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cons-body {
    flex: 1;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}
.cons-row.alt .cons-body { background: #f8fafc; }
.cons-accent {
    display: inline-block;
    width: 36px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.cons-body h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: #0f172a; }
.cons-body p  { font-size: 0.95rem; color: #475569; line-height: 1.6; margin-bottom: 14px; }
.cons-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.cons-tag {
    font-size: 0.75rem;
    background: #eef2ff;
    color: #3b5bdb;
    padding: 3px 11px;
    border-radius: 20px;
    font-weight: 500;
}
.cons-price { font-size: 1.5rem; font-weight: 800; color: #0f172a; }
