/* ============================================
   Quick Navigation Bar - Brand/Category Pages
   ============================================ */

.quick-nav-bar {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 20px;
    box-sizing: border-box;
}
.quick-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 30px;
    flex-wrap: wrap;
    background-color: inherit;
    border-radius: 50px;
}
/* Move background to inner so it gets the rounded corners */
.quick-nav-bar {
    background: transparent !important;
}
.quick-nav-inner {
    background-color: #16212F;
}
/* Override with inline style from parent - use a custom property */
.quick-nav-bar[style] .quick-nav-inner {
    background-color: inherit;
}

.quick-nav-heading {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}
.quick-nav-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.quick-nav-btn {
    display: inline-block;
    padding: 7px 18px;
    border: 1.5px solid #fff;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.quick-nav-btn:hover {
    background: #fff;
    color: #16212F;
    text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .quick-nav-bar {
        padding: 0 15px;
        margin-bottom: 15px;
    }
    .quick-nav-inner {
        flex-direction: column;
        gap: 10px;
        padding: 14px 20px;
        border-radius: 12px;
    }
    .quick-nav-heading {
        font-size: 11px;
        text-align: center;
        white-space: normal;
    }
    .quick-nav-buttons {
        gap: 6px;
    }
    .quick-nav-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
}
