/**
 * DFS Quick Categories Navigation Styles (Estilo Mercado Libre)
 */

.dfs-quick-nav-wrapper {
    width: 100%;
    max-width: 1360px;
    margin: 8px auto 16px auto;
    padding: 4px 10px;
}

.dfs-quick-nav-track {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 4px 10px 4px;
}

.dfs-quick-nav-track::-webkit-scrollbar {
    display: none;
}

.dfs-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
    width: 68px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s ease;
}

.dfs-quick-item:active {
    transform: scale(0.93);
}

.dfs-quick-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1.5px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 6px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dfs-quick-item:hover .dfs-quick-circle {
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.dfs-quick-icon {
    font-size: 24px;
    line-height: 1;
}

.dfs-quick-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #e50914;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 8px;
    line-height: 1;
    border: 1.5px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.dfs-quick-title {
    font-size: 11px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.15;
    margin-bottom: 2px;
}

.dfs-quick-subtitle {
    font-size: 9.5px;
    font-weight: 500;
    color: #888888;
    line-height: 1.1;
}
