/* Existing styles */
.filter-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap to the next line if needed */
    gap: 10px;
    justify-content: center; /* Center the buttons horizontally */
    margin-bottom: 20px;
    padding: 10px 0;
    z-index: 1; /* Ensure the buttons are on top */
}

.filter-button {
    padding: 10px 20px;
    background: var(--primary-color-light); /* Use primary color light */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-button:hover {
    background: #555;
}

.weapon-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-section h2 {
    color: var(--text-color); /* Use text color */
    font-size: 24px;
    margin-bottom: 10px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-text {
    position: relative;
    z-index: 0; /* Ensure the logo text is beneath the filter buttons */
}

/* Disable scrolling class */
.no-scroll {
    overflow: hidden;
}
