/* src/public/modules/store/categories-bar/categories-bar.css */

#categories-bar-container {
    /* Full Bleed: Ocupa todo el ancho de la ventana */
    width: 100vw; 
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    
    margin-top: -20px;        
    margin-bottom: 10px;
    background-color: #ffffff;
    
    padding: 2px 0 10px 0;   
    
    /* Sticky */
    position: -webkit-sticky;
    position: sticky;
    top: 60px; 
    z-index: 990; 
    
    border-bottom: 1px solid #f0f0f0;
    box-shadow: none; 
    transition: box-shadow 0.3s ease;
}

#categories-bar-container.is-pinned {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); 
}

.categories-bar-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px; 
    padding: 5px 20px; 
    
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    align-items: flex-start;
    justify-content: flex-start; /* Móvil: alineado izquierda */
}

/* En PC centramos los iconos */
@media (min-width: 1024px) {
    .categories-bar-wrapper {
        justify-content: center;
    }
}

.categories-bar-wrapper::-webkit-scrollbar { 
    display: none; 
}

.categories-scroll-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), #ffffff 100%);
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.categories-scroll-fade.is-hidden {
    opacity: 0;
}

.cat-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    width: 75px; 
    transition: transform 0.2s ease, opacity 0.2s;
    opacity: 0.9;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.cat-nav-item.active, .cat-nav-item:hover {
    opacity: 1;
    transform: scale(1.05); 
}

.cat-nav-icon {
    width: 60px;  
    height: 60px; 
    background-color: #f8f9fa;
    border-radius: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
    border: 2px solid transparent;
    transition: all 0.2s;
    overflow: hidden;
    position: relative;
}

.cat-nav-item.active .cat-nav-icon {
    background-color: #fff8e1; 
    border-color: #FFC107;     
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3); 
}

.cat-nav-icon img {
    width: 75%; 
    height: 75%;
    object-fit: contain;
}

.cat-nav-label {
    font-size: 0.75rem; 
    font-weight: 700;
    text-align: center;
    color: #343a40;
    line-height: 1.2;
    text-transform: capitalize;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-nav-item.active .cat-nav-label {
    color: #d79b00; 
}