/* Product Navigation Bar Styles */
.product-nav-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.product-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-select, .sort-select {
    min-width: 150px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
}

.product-search {
    position: relative;
    display: flex;
}

.product-search input {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding: 8px 12px;
}

.search-btn {
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
    border-radius: 0 5px 5px 0;
    padding: 8px 12px;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.view-btn {
    background: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background: #007bff;
    color: white;
}

@media (max-width: 768px) {
    .product-nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-nav-left, .product-nav-right {
        width: 100%;
        justify-content: center;
    }
    
    .product-search input {
        width: 200px;
    }
}