/* components/sidebar/sidebar.css */
.categories-sidebar {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 140px;
}

.sidebar-header {
    background-color: #000000;
    padding: 15px;
}

.sidebar-header h3 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

.categories-list li {
    position: relative;
}

/* Línea divisoria */
.categories-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #e8e8e8;
}

.categories-list li:last-child::after {
    display: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 14px 45px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    background-color: transparent;
}

/* Círculo indicador */
.category-link::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.2s ease;
}

.category-arrow {
    opacity: 0.3;
    transition: all 0.2s ease;
    color: #999999;
}

/* Hover effect */
.category-link:hover {
    color: #000000;
    background-color: #f9f9f9;
}

.category-link:hover::before {
    border-color: #000000;
    background-color: #000000;
}

.category-link:hover .category-arrow {
    opacity: 1;
    color: #000000;
    transform: translateX(3px);
}

/* Categorías destacadas (ofertas y new arrivals) */
.category-link.highlight {
    color: #000000;
    font-weight: 600;
}

.category-link.highlight::before {
    border-color: #000000;
}

/* Categoría activa */
.category-link.active {
    color: #000000;
    font-weight: 600;
    background-color: #f5f5f5;
}

.category-link.active::before {
    border-color: #000000;
    background-color: #000000;
}

.category-link.active .category-arrow {
    opacity: 1;
    color: #000000;
}

/* Subcategorías expandibles (opcional para futuro) */
.category-submenu {
    display: none;
    background-color: #fafafa;
    padding-left: 20px;
}

.category-link.has-submenu.expanded + .category-submenu {
    display: block;
}

.subcategory-link {
    display: block;
    padding: 10px 20px 10px 55px;
    color: #666666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    position: relative;
}

.subcategory-link::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border: 1px solid #999999;
    border-radius: 50%;
    background-color: transparent;
}

.subcategory-link:hover {
    color: #000000;
    background-color: #f0f0f0;
}

.subcategory-link:hover::before {
    border-color: #000000;
    background-color: #000000;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-sidebar {
        position: static;
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .sidebar-header h3 {
        font-size: 0.95rem;
    }
    
    .category-link {
        padding: 12px 16px 12px 40px;
        font-size: 0.8rem;
    }
    
    .category-link::before {
        left: 16px;
        width: 7px;
        height: 7px;
    }
    
    .categories-list li::after {
        left: 16px;
        right: 16px;
    }
}