/* Product Sidebar - ea9d19fa */
.ps-ea9d19fa-sidebar {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

/* Search Section */
.ps-ea9d19fa-search-section {
    margin-bottom: 24px;
}

.ps-ea9d19fa-search-wrap {
    position: relative;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    overflow: visible;
    display: flex;
    align-items: center;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.ps-ea9d19fa-search-wrap:focus-within {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.ps-ea9d19fa-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 14px;
    color: #999;
    flex-shrink: 0;
}

.ps-ea9d19fa-search-icon svg {
    width: 18px;
    height: 18px;
}

.ps-ea9d19fa-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 14px 10px 10px;
    font-size: 14px;
    color: #333;
    background: transparent;
    line-height: 1.4;
}

.ps-ea9d19fa-search-input::placeholder {
    color: #aaa;
}

/* Search Results Dropdown */
.ps-ea9d19fa-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 240px;
    overflow-y: auto;
}

.ps-ea9d19fa-search-results.ps-ea9d19fa-active {
    display: block;
}

.ps-ea9d19fa-result-item {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.15s ease;
}

.ps-ea9d19fa-result-item:last-child {
    border-bottom: none;
}

.ps-ea9d19fa-result-item:hover {
    background-color: #f5f5f5;
    color: #0073aa;
}

.ps-ea9d19fa-no-results {
    padding: 12px 14px;
    color: #999;
    font-size: 13px;
    text-align: center;
}

/* Categories Section */
.ps-ea9d19fa-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

.ps-ea9d19fa-cat-title {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ps-ea9d19fa-toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #666;
    line-height: 0;
    transition: color 0.2s ease;
}

.ps-ea9d19fa-toggle-btn:hover {
    color: #0073aa;
}

.ps-ea9d19fa-chevron {
    transition: transform 0.25s ease;
}

.ps-ea9d19fa-chevron.ps-ea9d19fa-rotated {
    transform: rotate(180deg);
}

.ps-ea9d19fa-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ps-ea9d19fa-cat-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s ease;
}

.ps-ea9d19fa-cat-item:last-child {
    border-bottom: none;
}

.ps-ea9d19fa-cat-item:hover {
    background-color: #f5f5f5;
}

.ps-ea9d19fa-cat-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.ps-ea9d19fa-cat-item:hover a {
    color: #0073aa;
}

.ps-ea9d19fa-cat-name {
    flex: 1;
}

.ps-ea9d19fa-cat-count {
    color: #999;
    font-size: 12px;
    margin-left: 8px;
    flex-shrink: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .ps-ea9d19fa-sidebar {
        position: static !important;
        margin-top: 30px;
    }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
    .ps-ea9d19fa-sidebar {
        position: static !important;
        margin-top: 20px;
    }

    .ps-ea9d19fa-collapsible .ps-ea9d19fa-toggle-btn {
        display: inline-flex;
    }

    .ps-ea9d19fa-cat-item a {
        padding: 12px 8px;
        font-size: 15px;
    }
}
