@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
.pill-filter-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 auto; }

.pill-filter-item { display: inline-block; position: relative; z-index: 0; padding: 8px 24px; color: #555; background: none; text-decoration: none; font-family: "Lora", serif; font-size: 0.88rem; font-weight: 500; border: none; cursor: pointer; transition: color 0.25s ease, transform 0.2s ease; }

.pill-filter-item::before { position: absolute; z-index: -1; inset: 0; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(0, 0, 0, 0.08); content: ""; transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; transform: skewX(-12deg); }

.pill-filter-item:hover { color: #1a1a2e; transform: translateY(-1px); }

.pill-filter-item:hover::before { background: rgba(255, 255, 255, 0.9); border-color: rgba(59, 191, 101, 0.6); box-shadow: 0 2px 12px rgba(59, 191, 101, 0.12); }

.pill-filter-item.active { color: white; }

.pill-filter-item.active::before { background: linear-gradient(135deg, #3bbf65, #5bddaa); border-color: transparent; box-shadow: 0 4px 16px rgba(59, 191, 101, 0.3); }

@media (max-width: 768px) { .pill-filter-nav-scroll { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; } .pill-filter-nav-scroll::-webkit-scrollbar { height: 0; } .pill-filter-nav-scroll .pill-filter-item { flex-shrink: 0; } }

@media (max-width: 768px) { .pill-filter-nav { gap: 6px; } .pill-filter-item { padding: 7px 18px; font-size: 0.84rem; } }
