/* Additional Category Page Enhancements */

/* Shop Category Area */
.shop-category-area {
    padding: 40px 0;
    background: #fafafa;
}

/* Sidebar Enhancements */
.shop-sidebar-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1d29;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff7004;
}

.sidebar-widget {
    margin-bottom: 28px;
}

.pro-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

/* Price Slider Enhancements */
.price-filter {
    padding: 12px 0;
}

#slider-range {
    margin: 20px 0;
}

.price-slider-amount input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Filter Checkboxes */
.sidebar-widget-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget-list li {
    margin-bottom: 12px;
}

.sidebar-widget-list-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget-list-left a {
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sidebar-widget-list-left a:hover {
    color: #ff7004;
}

.sidebar-widget-list-left input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff7004;
}

/* Product Grid Enhancements */
.product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #ff7004;
}

/* View Toggle Buttons */
.view-toggle {
    display: flex;
    gap: 8px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.view-btn:hover {
    background: #fff;
    color: #ff7004;
}

.view-btn.active {
    background: #fff;
    color: #ff7004;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Sort Dropdown */
.shop-select select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-select select:hover,
.shop-select select:focus {
    border-color: #ff7004;
    outline: none;
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .category-nav-row {
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .shop-sidebar-wrap {
        position: static;
        margin-bottom: 30px;
    }

    .category-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .category-nav-item {
        min-width: 90px;
        padding: 12px 8px;
    }

    .category-nav-image,
    .category-nav-icon {
        width: 60px;
        height: 60px;
    }

    .category-title {
        font-size: 24px;
    }
}