/* Highlight active nav link */
nav a.active {
  color: var(--accent) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}
body {
  font-family: "Poppins", sans-serif;
}
.glass {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.7);
}

:root {
  --accent: #c8a27b;
}
.accent {
  color: var(--accent);
}
.bg-accent {
  background: var(--accent);
}
.overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.65));
}
.filter-btn {
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-weight: 500;
}
.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.filter-wrapper {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-wrapper::-webkit-scrollbar {
  display: none;
}

/* Desktop alignment */
@media (min-width: 768px) {
  .filter-wrapper {
    justify-content: center;
    overflow-x: visible;
  }
}
