.donate-wrap { padding-top: 120px; }

.cat-head { text-align: center; margin-bottom: 10px; }
.cat-head h1 {
    font-family: var(--head); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, #fff, var(--accent-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cat-head p { color: var(--muted); margin-top: 6px; }

/* subcategory tabs */
.tabs {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin: 28px auto 10px; padding: 6px; max-width: max-content;
    background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
}
.tabs button {
    border: none; cursor: pointer; padding: 10px 20px; border-radius: 999px;
    background: transparent; color: var(--muted); font-family: var(--font); font-weight: 600; font-size: .98rem;
    transition: .18s;
}
.tabs button:hover { color: var(--text); }
.tabs button.active { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.tab-desc { text-align: center; color: var(--muted); max-width: 640px; margin: 16px auto 34px; }

.panel { display: none; }
.panel.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.items { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .items { grid-template-columns: 1fr; } }

.item {
    position: relative; display: flex; flex-direction: column;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; overflow: hidden;
    transition: .2s;
}
.item::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--accent-2); opacity: .9; }
.item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #33405a; }
.item .name { font-family: var(--head); font-weight: 800; font-size: 1.35rem; margin-bottom: 4px; }
.item .tag { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.item .feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 20px; }
.item .feats li { display: flex; gap: 10px; color: var(--text); font-size: .96rem; }
.item .feats li svg { flex-shrink: 0; margin-top: 3px; color: var(--good); }
.item .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.item .price .now { font-family: var(--head); font-weight: 800; font-size: 1.7rem; }
.item .price .per { color: var(--muted); font-size: .9rem; }
.item .price .from { color: var(--muted); font-size: .85rem; }
.item .buy { width: 100%; }

.empty-note {
    text-align: center; color: var(--muted); border: 1px dashed var(--border);
    border-radius: var(--radius); padding: 40px; background: var(--surface);
}
